diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2010-03-30 07:55:56 -0700 | 
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-03-30 07:55:56 -0700 | 
| commit | 7c84ee1b33a768fc4a44f3b6db2530f01cfcd081 (patch) | |
| tree | d60cdc4ce485bda54a433b9f1b9bc18b7f92e40a /modules/organize/views | |
| parent | 91f27bf32fe3d9650e5095b6747804ec97b524e8 (diff) | |
Organize now has the add album functionality.
Diffstat (limited to 'modules/organize/views')
| -rw-r--r-- | modules/organize/views/organize_dialog.html.php | 10 | 
1 files changed, 7 insertions, 3 deletions
| diff --git a/modules/organize/views/organize_dialog.html.php b/modules/organize/views/organize_dialog.html.php index f31cf161..8163c595 100644 --- a/modules/organize/views/organize_dialog.html.php +++ b/modules/organize/views/organize_dialog.html.php @@ -56,8 +56,9 @@    function getTextStrings() {      var strings = {        "statusText": <?= t("Drag and drop photos to re-order or move between album")->for_js() ?>, -      "addToolTip": <?= t("Add")->for_js() ?>, -      "deleteToolTip": <?= t("Delete")->for_js() ?>, +      "addAlbum": <?= t("Add album")->for_js() ?>, +      "addImages": <?= t("Add photo")->for_js() ?>, +      "deleteSelected": <?= t("Delete")->for_js() ?>,        "uploadedText": <?= t("Uploaded {0}")->for_js() ?>,        "removeFileText": <?= t("Remove")->for_js() ?>,        "totalFiles": <?= t("Total Files: {0}")->for_js() ?>, @@ -66,6 +67,8 @@        "kilobytes": <?= t("{0} KB")->for_js() ?>,        "megabytes": <?= t("{0} MB")->for_js() ?>,        "gigabytes": <?= t("{0} GB")->for_js() ?>, +      "cancel": <?= t("Cancel")->for_js() ?>, +      "close": <?= t("Close")->for_js() ?>      };      return strings;    } @@ -84,7 +87,8 @@      sortOrder: '<?= $sort_order ?>',      sortFields: '<?= $sort_fields ?>',      baseUrl: '<?= $base_url ?>', -    apiKey: '<?= $api_key ?>' +    apiKey: '<?= $api_key ?>', +    controller: '<?= url::abs_site("organize") ?>/'    };    var size = $.gallery_get_viewport_size(); | 
