From e8638cc996243752e6cc68c4943a35ce28f35aaf Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 10 Mar 2011 11:57:47 +0300 Subject: update translations --- utils/localized_schema.txt | 2 +- utils/update-js-translations.sh | 52 ----------------------------------------- utils/update-translations.sh | 2 ++ 3 files changed, 3 insertions(+), 53 deletions(-) delete mode 100644 utils/update-js-translations.sh (limited to 'utils') diff --git a/utils/localized_schema.txt b/utils/localized_schema.txt index f140d0bc2..43280298a 100644 --- a/utils/localized_schema.txt +++ b/utils/localized_schema.txt @@ -4,7 +4,7 @@ __("Link"); __("Content"); __("Article Date"); -__("Filter article"); +__("Delete article"); __("Mark as read"); __("Set starred"); __("Publish article"); diff --git a/utils/update-js-translations.sh b/utils/update-js-translations.sh deleted file mode 100644 index bdac394cb..000000000 --- a/utils/update-js-translations.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh - -if [ ! -f localized_js.php ]; then - echo "please run this script from tt-rss directory" - exit 1 -fi - -echo "This script is not used anymore." - -exit 0 # disabled - -cat >localized_js.php <
- -var T_messages = new Object(); - -function __(msg) { - if (T_messages[msg]) { - return T_messages[msg]; - } else { - debug('[gettext] not found: ' + msg); - return msg; - } -} - -> localized_js.php - -cat >>localized_js.php <