diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-06 09:47:56 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-06 09:47:56 -0800 |
commit | 83f61ff5cf9c51c998dac9dad23d74ab7339ead5 (patch) | |
tree | dfdb56b430b05a26dfd58845c72c3b893543266a | |
parent | f631c2a0e5d1de4d17478993fc0cac2c9a989df2 (diff) |
Insure that the 'Ascending'/'Descending' string are translated on the organize dialog.
-rw-r--r-- | modules/organize/views/organize_dialog.html.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/organize/views/organize_dialog.html.php b/modules/organize/views/organize_dialog.html.php index e36264f9..7a16f56c 100644 --- a/modules/organize/views/organize_dialog.html.php +++ b/modules/organize/views/organize_dialog.html.php @@ -30,7 +30,9 @@ <li id="g-organize-sort-order-text" class="g-left"><?= t("Sort order") ?></li> <li class="g-left"> <?= form::dropdown(array("id" => "g-organize-sort-column"), album::get_sort_order_options(), $album->sort_column) ?></li><li class="g-left"> - <?= form::dropdown(array("id" => "g-organize-sort-order"), array("ASC" => "Ascending", "DESC" => "Descending"), $album->sort_order) ?></li></ul> + <?= form::dropdown(array("id" => "g-organize-sort-order"), + array("ASC" => t("Ascending"), "DESC" => t("Descending")), + $album->sort_order) ?></li></ul> </form> </div> </div> |