diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-01-08 17:13:06 +0000 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-01-08 17:13:06 +0000 |
commit | a631fe29f3950f8db1f7fb4ce1f47261a9b0feff (patch) | |
tree | b5af3ad39362dea97ce01be63d5ec09b7846bb9c /core/views/quick_pane.html.php | |
parent | fd081159f1783918d81e355e25e262ccc5249913 (diff) |
i18n refactoring: Rename all _() (reserved by gettext) calls to t().
- And refactor printf to our string interpolation / pluralization syntax
- Also, a slight change to the translations_incomings table, using binary(16) instead of char(32) as message key.
Diffstat (limited to 'core/views/quick_pane.html.php')
-rw-r--r-- | core/views/quick_pane.html.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/views/quick_pane.html.php b/core/views/quick_pane.html.php index 7ae0a856..9a0e56d5 100644 --- a/core/views/quick_pane.html.php +++ b/core/views/quick_pane.html.php @@ -4,7 +4,7 @@ <div class="rotate-counter-clockwise" href="<?= url::site("quick/rotate/$item->id/ccw?csrf=" . access::csrf_token()) ?>"> <span> - <?= _("Rotate CCW") ?> + <?= t("Rotate CCW") ?> </span> </div> <? endif ?> @@ -12,7 +12,7 @@ <div class="edit gDialogLink" href="<?= url::site("quick/form_edit/$item->id") ?>"> <span> - <?= _("Edit") ?> + <?= t("Edit") ?> </span> </div> @@ -20,7 +20,7 @@ <div class="rotate-clockwise" href="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>"> <span> - <?= _("Rotate CCW") ?> + <?= t("Rotate CCW") ?> </span> </div> <? endif ?> |