From 23c17b8e718961f06a8ea7e9219d5cc03e1b57ea Mon Sep 17 00:00:00 2001 From: Foad Tahmasebi <tahmasebi.f@gmail.com> Date: Sat, 11 Apr 2015 12:48:47 +0430 Subject: [PATCH] fix translation for "Add new list" add __() function for not translated words. --- include/staff/dynamic-list.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/staff/dynamic-list.inc.php b/include/staff/dynamic-list.inc.php index 8d21a4aa4..853c10783 100644 --- a/include/staff/dynamic-list.inc.php +++ b/include/staff/dynamic-list.inc.php @@ -23,7 +23,7 @@ $info=Format::htmlchars(($errors && $_POST) ? array_merge($info,$_POST) : $info) <input type="hidden" name="a" value="<?php echo Format::htmlchars($_REQUEST['a']); ?>"> <input type="hidden" name="id" value="<?php echo $info['id']; ?>"> <h2><?php echo __('Custom List'); ?> - <?php echo $list ? $list->getName() : 'Add new list'; ?></h2> + <?php echo $list ? $list->getName() : __('Add new list'); ?></h2> <ul class="tabs"> <li><a href="#definition" class="active"> -- GitLab