Add new language constant to all language files.
Signed-off-by: Thomas Hochstein <thh@inter.net>
This commit is contained in:
parent
9ae7ec779d
commit
b944d76ee7
lang
UTF-8
plugin_lang.phpserendipity_lang_bg.inc.phpserendipity_lang_cn.inc.phpserendipity_lang_cs.inc.phpserendipity_lang_cz.inc.phpserendipity_lang_da.inc.phpserendipity_lang_de.inc.phpserendipity_lang_en.inc.phpserendipity_lang_es.inc.phpserendipity_lang_fa.inc.phpserendipity_lang_fi.inc.phpserendipity_lang_fr.inc.phpserendipity_lang_hu.inc.phpserendipity_lang_is.inc.phpserendipity_lang_it.inc.phpserendipity_lang_ja.inc.phpserendipity_lang_ko.inc.phpserendipity_lang_nl.inc.phpserendipity_lang_no.inc.phpserendipity_lang_pl.inc.phpserendipity_lang_pt.inc.phpserendipity_lang_pt_PT.inc.phpserendipity_lang_ro.inc.phpserendipity_lang_ru.inc.phpserendipity_lang_sa.inc.phpserendipity_lang_se.inc.phpserendipity_lang_sk.inc.phpserendipity_lang_ta.inc.phpserendipity_lang_tn.inc.phpserendipity_lang_tr.inc.phpserendipity_lang_tw.inc.phpserendipity_lang_zh.inc.php
serendipity_lang_bg.inc.phpserendipity_lang_cn.inc.phpserendipity_lang_cs.inc.phpserendipity_lang_cz.inc.phpserendipity_lang_da.inc.phpserendipity_lang_es.inc.phpserendipity_lang_fa.inc.phpserendipity_lang_fi.inc.phpserendipity_lang_fr.inc.phpserendipity_lang_hu.inc.phpserendipity_lang_is.inc.phpserendipity_lang_it.inc.phpserendipity_lang_ja.inc.phpserendipity_lang_ko.inc.phpserendipity_lang_nl.inc.phpserendipity_lang_no.inc.phpserendipity_lang_pl.inc.phpserendipity_lang_pt.inc.phpserendipity_lang_pt_PT.inc.phpserendipity_lang_ro.inc.phpserendipity_lang_ru.inc.phpserendipity_lang_sa.inc.phpserendipity_lang_se.inc.phpserendipity_lang_sk.inc.phpserendipity_lang_ta.inc.phpserendipity_lang_tn.inc.phpserendipity_lang_tr.inc.phpserendipity_lang_tw.inc.phpserendipity_lang_zh.inc.php@ -1,112 +0,0 @@
|
||||
<?php
|
||||
exit;
|
||||
|
||||
function help() {
|
||||
echo "This helper application lists all missing constants from plugin translations.\n\n";
|
||||
echo "==================================================\n";
|
||||
echo "Call Syntax:\n";
|
||||
echo "\tphp plugin_lang.php [lang]\n";
|
||||
echo "==================================================\n";
|
||||
echo "\n";
|
||||
echo "[lang] needs to replaced with the language you want to compare against.\n";
|
||||
echo "Example:\n";
|
||||
echo "\tphp plugin_lang.php de\n";
|
||||
echo "\tThis command will show all untranslated german strings.\n\n";
|
||||
}
|
||||
|
||||
if (!is_array($argv) || empty($argv[1])) {
|
||||
echo "==================================================\n";
|
||||
echo "This tool is intended to be called via commandline!\n";
|
||||
echo "==================================================\n\n";
|
||||
help();
|
||||
die();
|
||||
}
|
||||
|
||||
$lang = preg_replace('@[^a-z0-9]@', '', strtolower($argv[1]));
|
||||
echo "Probing language $lang\n";
|
||||
$base = '../plugins/';
|
||||
$d = @opendir($base);
|
||||
|
||||
if (!$d) {
|
||||
die('Failure');
|
||||
}
|
||||
|
||||
$const = array();
|
||||
$const['checked'] = get_defined_constants();
|
||||
while(($file = readdir($d)) !== false) {
|
||||
if ($file[0] == '.') {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!is_dir($base . '/' . $file)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$tfile = $base . '/' . $file . '/lang_en.inc.php';
|
||||
$sfile = $base . '/' . $file . '/lang_' . $lang . '.inc.php';
|
||||
|
||||
if (file_exists($tfile)) {
|
||||
echo "Parsing english language from $file - ";
|
||||
include $tfile;
|
||||
$current = get_defined_constants();
|
||||
$const['native'][$file] = array_diff($current, $const['checked']);
|
||||
$const['checked'] = array_merge($const['checked'], $current);
|
||||
echo count($const['native'][$file]) . " constants.\n";
|
||||
} else {
|
||||
echo "NOTICE: English language of $file does not exist.\n";
|
||||
continue;
|
||||
}
|
||||
|
||||
if (file_exists($sfile)) {
|
||||
echo "Parsing differences for $file - ";
|
||||
include $sfile;
|
||||
$current = get_defined_constants();
|
||||
$const['missing'][$file] = array_diff($current, $const['checked']);
|
||||
$const['checked'] = array_merge($const['checked'], $current);
|
||||
|
||||
echo count($const['missing'][$file]) . " missing constants.\n";
|
||||
} else {
|
||||
$const['missing'][$file] = $const['native'][$file];
|
||||
}
|
||||
echo "\n";
|
||||
}
|
||||
|
||||
echo "Showing missing constants:\n\n";
|
||||
foreach($const['missing'] AS $file => $constants) {
|
||||
echo strtoupper($file) . ":\n";
|
||||
foreach($constants AS $const => $val) {
|
||||
echo "\t" . $const . "\n";
|
||||
echo "\t\t" . $val . "\n";
|
||||
}
|
||||
echo "---------------------------\n";
|
||||
}
|
||||
|
||||
@define('SYNDICATION_PLUGIN_XML_DESC', 'Set to "none" if you only want to show a text link.');
|
||||
@define('MULTICHECK_NO_ITEM', 'No item selected, please check at least one. <a href="%s">Return to previous page</a>.');
|
||||
@define('MULTICHECK_NO_DIR', 'No directory selected, please choose one. <a href="%s">Return to previous page</a>.');
|
||||
@define('BULKMOVE_INFO', 'Bulk-move info');
|
||||
@define('BULKMOVE_INFO_DESC', 'You can select multiple files to bulk-move them to a new location. <strong>Note:</strong> This action cannot be undone, just like bulk-deletion of multiple files. All checked files will be physically moved, and referring blog entries are rewritten to point to the new location.');
|
||||
@define('FIRST_PAGE', 'First Page');
|
||||
@define('LAST_PAGE', 'Last Page');
|
||||
@define('MEDIA_PROPERTIES_DONE', 'Properties of #%d changed.');
|
||||
@define('DIRECTORY_INFO', 'Directory info');
|
||||
@define('DIRECTORY_INFO_DESC', 'Directories reflect their physical folder directory name. If you want to change or move directories which contain items, you have two choices. Either create the directory or subdirectory you want, then move the items to the new directory via the media library and afterwards, delete the empty old directory there. Or completely change the whole old directory via the edit directory button below and rename it to whatever you like (existing subdir/ + newname). This will move all directories and items and change referring blog entries.');
|
||||
@define('MEDIA_RESIZE_EXISTS', 'File dimensions already exist!');
|
||||
@define('USE_CACHE', 'Enable caching');
|
||||
@define('USE_CACHE_DESC', 'Enables an internal cache to not repeat specific database queries. This reduces the load on servers with medium to high traffic and improves page load time.');
|
||||
@define('CONFIG_PERMALINK_PATH_DESC', 'Please note that you have to use a prefix so that Serendipity can properly map the URL to the proper action. You may change the prefix to any unique name, but not remove it. This applies to all path prefix definitions.');
|
||||
@define('CONFIG_ALLOW_LOCAL_URL', 'Allow to fetch data from local URLs');
|
||||
@define('CONFIG_ALLOW_LOCAL_URL_DESC', 'By default, it is forbidden due to security constrains to fetch data from local URLs to prevent Server Side Request Forgers (SSRF). If you use a local intranet, you can enable this option to allow fetching data.');
|
||||
@define('REMOTE_FILE_INVALID', 'The given URL appears to be local and is not allowed to be fetched. You can allow this by setting the option "Allow to fetch data from local URLs" in your blog configuration.');
|
||||
@define('URL_NOT_FOUND', 'The requested page could not be found (404). This is the default page.');
|
||||
@define('INSERT_ALL', 'Insert All');
|
||||
@define('COMMENT_NOT_DELETED', 'Could not delete comment #%s .');
|
||||
@define('MAINTENANCE_MODE', 'Maintenance Mode');
|
||||
@define('MAINTENANCE_MODE_DESC', 'Activate maintenance mode to prevent access from users that are not logged in.');
|
||||
@define('MAINTENANCE_MODE_WARNING', "Do not log out, as you won't be able to log in again until maintenance mode expires!");
|
||||
@define('MAINTENANCE_MODE_DURATION', 'Duration (in hours):');
|
||||
@define('MAINTENANCE_MODE_TIME', 'Will be active until');
|
||||
@define('MAINTENANCE_MODE_ACTIVATE', 'Activate');
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
@ -1122,3 +1122,4 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1132,3 +1132,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1161,3 +1161,4 @@ $i18n_filename_to = array (
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1162,3 +1162,4 @@ $i18n_filename_to = array (
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1129,3 +1129,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -4,12 +4,12 @@
|
||||
# Translation (c) Jannis Hermanns, Garvin Hicking and others
|
||||
/* vim: set sts=4 ts=4 expandtab : */
|
||||
|
||||
@define('LANG_CHARSET', 'ISO-8859-1');
|
||||
@define('SQL_CHARSET', 'latin1');
|
||||
@define('DATE_LOCALES', 'de_DE.ISO-8859-1, de_DE.ISO8859-1, german, de_DE, de_DE@euro, de');
|
||||
@define('LANG_CHARSET', 'UTF-8');
|
||||
@define('SQL_CHARSET', 'utf8');
|
||||
@define('DATE_LOCALES', 'de_DE.UTF-8, de_DE.UTF8, german, de_DE, de_DE@euro, de');
|
||||
@define('DATE_FORMAT_ENTRY', '%A, %e. %B %Y');
|
||||
@define('DATE_FORMAT_SHORT', '%d.%m.%Y %H:%M');
|
||||
@define('WYSIWYG_LANG', 'de');
|
||||
@define('WYSIWYG_LANG', 'de-utf');
|
||||
@define('NUMBER_FORMAT_DECIMALS', '2');
|
||||
@define('NUMBER_FORMAT_DECPOINT', ',');
|
||||
@define('NUMBER_FORMAT_THOUSANDS', '.');
|
||||
|
@ -26,8 +26,6 @@
|
||||
@define('LOGOUT', 'Logout');
|
||||
@define('LOGGEDOUT', 'Logged out.');
|
||||
@define('CREATE', 'Create');
|
||||
@define('SAVE', 'Save');
|
||||
@define('NAME', 'Name');
|
||||
@define('CREATE_NEW_CAT', 'Create New Category');
|
||||
@define('I_WANT_THUMB', 'I want to use the thumbnail in my entry.');
|
||||
@define('I_WANT_BIG_IMAGE', 'I want to use the larger image in my entry.');
|
||||
@ -514,7 +512,7 @@
|
||||
@define('DELETE_SELECTED_COMMENTS', 'Delete selected comments');
|
||||
@define('VIEW_COMMENT', 'View comment');
|
||||
@define('VIEW_ENTRY', 'View entry');
|
||||
@define('DELETE_FILE_FAIL' , 'Unable to delete file <b>%s</b>');
|
||||
@define('DELETE_FILE_FAIL', 'Unable to delete file <b>%s</b>');
|
||||
@define('DELETE_THUMBNAIL', 'Deleted the image thumbnail entitled <b>%s</b>');
|
||||
@define('DELETE_FILE', 'Deleted the file entitled <b>%s</b>');
|
||||
@define('ABOUT_TO_DELETE_FILE', 'You are about to delete <b>%s</b><br />If you are using this file in some of your entries, it will cause dead links or images<br />Are you sure you wish to proceed?<br /><br />');
|
||||
@ -526,6 +524,7 @@
|
||||
@define('TRACKBACK_CHECKING', 'Checking <u>%s</u> for possible trackbacks...');
|
||||
@define('TRACKBACK_NO_DATA', 'Target contained no data');
|
||||
@define('TRACKBACK_SIZE', 'Target URI exceeded maximum filesize of %s bytes.');
|
||||
@define('VIEWMODE_THREADED', 'Show as tree');
|
||||
@define('COMMENTS_VIEWMODE_THREADED', 'Threaded');
|
||||
@define('COMMENTS_VIEWMODE_LINEAR', 'Linear');
|
||||
@define('DISPLAY_COMMENTS_AS', 'Display comments as');
|
||||
@ -859,7 +858,7 @@
|
||||
@define('PLUGIN_AVAILABLE_COUNT', 'Total: %d plugins.');
|
||||
|
||||
@define('SYNDICATION_RFC2616', 'Activate strict RFC2616 RSS-Feed compliance');
|
||||
@define('SYNDICATION_RFC2616_DESC', 'NOT Enforcing RFC2616 means that all Conditional GETs to Serendipity will return entries last modified since the time of the last request. With that setting to "false", your visitors will get all articles since their last request, which is considered a good thing. However, some Agents like Planet act weird, if that happens, at it also violates RFC2616. So if you set this option to "TRUE" you will comply with that RFC, but readers of your RSS feed might miss items in their holidays. So either way, either it hearts Aggregators like Planet, or it hurts actual readers of your blog. If you are facing complaints from either side, you can toggle this option. Reference: <a href="https://sourceforge.net/tracker/index.php?func=detail&aid=1461728&group_id=75065&atid=542822" target="_blank" rel="nofollow">SourceForge</a>');
|
||||
@define('SYNDICATION_RFC2616_DESC', 'NOT Enforcing RFC2616 means that all Conditional GETs to Serendipity will return entries last modified since the time of the last request. With that setting to "false", your visitors will get all articles since their last request, which is considered a good thing. However, some Agents like Planet act weird, if that happens, at it also violates RFC2616. So if you set this option to "TRUE" you will comply with that RFC, but readers of your RSS feed might miss items in their holidays. So either way, either it hearts Aggregators like Planet, or it hurts actual readers of your blog. If you are facing complaints from either side, you can toggle this option.');
|
||||
@define('MEDIA_PROPERTY_DATE', 'Associated Date');
|
||||
@define('MEDIA_PROPERTY_RUN_LENGTH', 'Run-Length');
|
||||
@define('FILENAME_REASSIGNED', 'Automagically assigned new file name: %s');
|
||||
@ -935,7 +934,7 @@
|
||||
@define('PLUGIN_DOCUMENTATION_LOCAL', 'Local Documentation');
|
||||
@define('PLUGIN_DOCUMENTATION_CHANGELOG', 'Version history');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG', 'Big Image');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file.');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file. Set to "none" to show a textlink (the old default)');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME', 'Displayed name for "feed"');
|
||||
@define('SYNDICATION_PLUGIN_FEEDNAME_DESC', 'Enter an optional custom name for the feeds (defaults to "feed" when empty)');
|
||||
@define('SYNDICATION_PLUGIN_COMMENTNAME', 'Displayed name for "comment" feed');
|
||||
@ -1048,7 +1047,6 @@
|
||||
@define('SYNDICATION_PLUGIN_SUBTOME', 'subToMe');
|
||||
@define('SYNDICATION_PLUGIN_SUBTOME_DESC', 'Show the subToMe button, a layer to make feed subscription easier');
|
||||
@define('SYNDICATE_THIS_BLOG', 'Subscribe');
|
||||
@define('SYNDICATION_PLUGIN_BIGIMG_DESC', 'Display a (big) image at the top of the feeds in sidebar, enter full or absolute URL to image file. Set to "none" to show a textlink (the old default)');
|
||||
@define('INSTALL_BACKENDPOPUP', 'Enable use of popup windows for the backend');
|
||||
@define('INSTALL_BACKENDPOPUP_DESC', 'Do you want to use popup windows for some backend functionality? When disabled (default), inline modal dialogs will be used for e.g. the category selector and media library.');
|
||||
@define('UPDATE_STABLE', 'stable');
|
||||
@ -1085,7 +1083,7 @@
|
||||
@define('USERCONF_WYSIWYG_PRESET_NOCC_CKE', 'Force: CKEditor Full');
|
||||
|
||||
@define('CATEGORY_PLUGIN_SHOWALL', 'Show a link to "All categories"?');
|
||||
@define('CATEGORY_PLUGIN_SHOWALL', 'If enabled, a link for the visitor to display the blog with no category restriction will be added.');
|
||||
@define('CATEGORY_PLUGIN_SHOWALL_DESC', 'If enabled, a link for the visitor to display the blog with no category restriction will be added.');
|
||||
@define('SERENDIPITY_PHPVERSION_FAIL', 'Serendipity requires a PHP version >= %2$s - you are running a lower version (%1$s) and need to upgrade your PHP version. Most providers offer you to switch to newer PHP versions through their admin panels or .htaccess directives.');
|
||||
@define('TOGGLE_VIEW', 'Switch category view mode');
|
||||
@define('PUBLISH_NOW', 'Publish this entry now (sets current time and date)');
|
||||
@ -1129,3 +1127,7 @@
|
||||
@define('MAINTENANCE_MODE_TIME', 'Will be active until');
|
||||
@define('MAINTENANCE_MODE_ACTIVATE', 'Activate');
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1148,3 +1148,4 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1132,3 +1132,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1130,3 +1130,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1137,3 +1137,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1128,3 +1128,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1130,3 +1130,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1133,3 +1133,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1134,3 +1134,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1134,3 +1134,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1132,3 +1132,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1132,3 +1132,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1128,3 +1128,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1134,3 +1134,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1141,3 +1141,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1132,3 +1132,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1133,3 +1133,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1049,3 +1049,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1130,3 +1130,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1120,3 +1120,4 @@ $i18n_filename_to = array (
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1129,3 +1129,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1134,3 +1134,4 @@ $i18n_unknown = 'tw';
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1134,3 +1134,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1135,3 +1135,4 @@ $i18n_unknown = 'tw';
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1130,3 +1130,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1122,3 +1122,4 @@ $i18n_filename_to = array('-', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1132,3 +1132,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1161,3 +1161,4 @@ $i18n_filename_to = array (
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1162,3 +1162,4 @@ $i18n_filename_to = array (
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1129,3 +1129,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1148,3 +1148,4 @@ Melvin TODO [20060128]: What spanish word do we use for "referrers" ??
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1132,3 +1132,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1130,3 +1130,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1137,3 +1137,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1128,3 +1128,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1130,3 +1130,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1133,3 +1133,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1134,3 +1134,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1134,3 +1134,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1132,3 +1132,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1132,3 +1132,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1128,3 +1128,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'a', 'A', 'b', 'B', 'c', 'C', 'c', 'C
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1134,3 +1134,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1141,3 +1141,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1132,3 +1132,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1133,3 +1133,4 @@ $i18n_filename_to = array('_', 'a', 'A', 'b', 'B', 'v', 'V', 'g', 'G', 'd', 'D
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1049,3 +1049,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1130,3 +1130,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1120,3 +1120,4 @@ $i18n_filename_to = array (
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1129,3 +1129,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1134,3 +1134,4 @@ $i18n_unknown = 'tw';
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1134,3 +1134,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1135,3 +1135,4 @@ $i18n_unknown = 'tw';
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
@ -1130,3 +1130,4 @@
|
||||
@define('MAINTENANCE_MODE_DEACTIVATE', 'Deactivate');
|
||||
@define('PLUGIN_LINK_SPARTACUS', 'More information');
|
||||
@define('PLUGIN_ALL_UPDATED', 'All Plugins updated');
|
||||
@define('MEDIA_DIRECTORY_MOVE', 'Move files to another directory');
|
||||
|
Loading…
x
Reference in New Issue
Block a user