OSDN Git Service

CHANGE: 言語(language)となっていたディレクトリ・定数・変数・翻訳・ドキュメントをロケール(locale)に修正。
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>
Thu, 23 Feb 2012 10:08:50 +0000 (19:08 +0900)
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>
Thu, 23 Feb 2012 10:08:50 +0000 (19:08 +0900)
62 files changed:
config.php.sample
install/index.php
install/install.sql
install/locales/ja_Jpan_JP.UTF-8.php
nucleus/documentation/devdocs/plugins.html
nucleus/documentation/devdocs/sqltables.html
nucleus/documentation/help.html
nucleus/documentation/history.html
nucleus/documentation/index.html
nucleus/libs/ADMIN.php
nucleus/libs/MEMBER.php
nucleus/libs/globalfunctions.php
nucleus/libs/i18n.php
nucleus/locales/bg_Cyrl_BG.ISO-8859-5.php
nucleus/locales/bg_Cyrl_BG.UTF-8.php
nucleus/locales/ca_Latn_ES.ISO-8859-1.php
nucleus/locales/ca_Latn_ES.UTF-8.php
nucleus/locales/cs_Latn_CZ.UTF-8.php
nucleus/locales/cs_Latn_CZ.WINDOWS-1250.php
nucleus/locales/de_Latn_DE.ISO-8859-1.php
nucleus/locales/de_Latn_DE.UTF-8.php
nucleus/locales/en_Latn_US.ISO-8859-1.php
nucleus/locales/en_Latn_US.UTF-8.php
nucleus/locales/es_Latn_ES.ISO-8859-1.php
nucleus/locales/es_Latn_ES.UTF-8.php
nucleus/locales/fa_Arab_IR.UTF-8.php
nucleus/locales/fi_Latn_FI.ISO-8859-1.php
nucleus/locales/fi_Latn_FI.UTF-8.php
nucleus/locales/fr_Latn_FR.ISO-8859-15.php
nucleus/locales/fr_Latn_FR.UTF-8.php
nucleus/locales/gl_Latn_ES.ISO-8859-1.php
nucleus/locales/gl_Latn_ES.UTF-8.php
nucleus/locales/hu_Latn_HU.ISO-8859-2.php
nucleus/locales/hu_Latn_HU.UTF-8.php
nucleus/locales/it_Latn_IT.ISO-8859-1.php
nucleus/locales/it_Latn_IT.UTF-8.php
nucleus/locales/ja_Jpan_JP.EUC-JP.php
nucleus/locales/ja_Jpan_JP.UTF-8.php
nucleus/locales/ko_Kore_KR.EUC-KR.php
nucleus/locales/ko_Kore_KR.UTF-8.php
nucleus/locales/lv_Latn_LV.ISO-8859-13.php
nucleus/locales/lv_Latn_LV.UTF-8.php
nucleus/locales/nl_Latn_NL.ISO-8859-15.php
nucleus/locales/nl_Latn_NL.UTF-8.php
nucleus/locales/pt_Latn_BR.ISO-8859-1.php
nucleus/locales/pt_Latn_BR.UTF-8.php
nucleus/locales/ru_Cyrl_RU.UTF-8.php
nucleus/locales/ru_Cyrl_RU.WINDOWS-1251.php
nucleus/locales/sk_Latn_SK.ISO-8859-2.php
nucleus/locales/sk_Latn_SK.UTF-8.php
nucleus/locales/zh_Hans_CN.GB2312.php
nucleus/locales/zh_Hans_CN.UTF-8.php
nucleus/locales/zh_Hant_TW.BIG5.php
nucleus/locales/zh_Hant_TW.UTF-8.php
nucleus/plugins/NP_Ping.php
nucleus/plugins/NP_SecurityEnforcer.php
nucleus/plugins/NP_SkinFiles.php
nucleus/plugins/NP_Text.php
nucleus/plugins/securityenforcer/en_Latn_US.UTF-8.php
nucleus/plugins/securityenforcer/ja_Jpan_JP.EUC-JP.php
nucleus/plugins/securityenforcer/ja_Jpan_JP.UTF-8.php
nucleus/upgrades/index.php

index 36885fc..f196896 100644 (file)
@@ -28,7 +28,7 @@ $DIR_SKINS = '/your/path/to/skins/';
 // these dirs are normally subdirs of the nucleus dir, but\r
 // you can redefine them if you wish\r
 $DIR_PLUGINS = $DIR_NUCLEUS . 'plugins/';\r
-$DIR_LANG = $DIR_NUCLEUS . 'language/';\r
+$DIR_LOCALES = $DIR_NUCLEUS . 'locales/';\r
 $DIR_LIBS = $DIR_NUCLEUS . 'libs/';\r
 \r
 if (!@file_exists($DIR_LIBS . 'globalfunctions.php')) {\r
@@ -39,4 +39,4 @@ if (!@file_exists($DIR_LIBS . 'globalfunctions.php')) {
 // include libs\r
 include($DIR_LIBS.'globalfunctions.php');\r
 \r
-?>
\ No newline at end of file
+?>\r
index f731db1..61704de 100644 (file)
@@ -814,7 +814,7 @@ function doInstall()
                $DIR_MEDIA = $config_mediapath;
                $DIR_SKINS = $config_skinspath;
                $DIR_PLUGINS = $DIR_NUCLEUS . 'plugins/';
-               $DIR_LANG = $DIR_NUCLEUS . 'language/';
+               $DIR_LOCALES = $DIR_NUCLEUS . 'locales/';
                $DIR_LIBS = $DIR_NUCLEUS . 'libs/';
 
                // close database connection (needs to be closed if we want to include globalfunctions.php)
@@ -874,7 +874,7 @@ function doInstall()
                $config_data .= "       // these dirs are normally sub dirs of the nucleus dir, but \n";
                $config_data .= "       // you can redefine them if you wish\n";
                $config_data .= "       \$DIR_PLUGINS = \$DIR_NUCLEUS . 'plugins/';\n";
-               $config_data .= "       \$DIR_LANG = \$DIR_NUCLEUS . 'language/';\n";
+               $config_data .= "       \$DIR_LOCALES = \$DIR_NUCLEUS . 'locales/';\n";
                $config_data .= "       \$DIR_LIBS = \$DIR_NUCLEUS . 'libs/';\n";
                $config_data .= "\n";
                $config_data .= "       // include libs\n";
@@ -944,7 +944,7 @@ function doInstall()
        // these dirs are normally sub dirs of the nucleus dir, but
        // you can redefine them if you wish
        $DIR_PLUGINS = $DIR_NUCLEUS . 'plugins/';
-       $DIR_LANG = $DIR_NUCLEUS . 'language/';
+       $DIR_LOCALES = $DIR_NUCLEUS . 'locales/';
        $DIR_LIBS = $DIR_NUCLEUS . 'libs/';
 
        // include libs
@@ -1366,4 +1366,4 @@ exit;
 /* for the non-php systems that decide to show the contents:
 ?></div>
 <?php
-*/
\ No newline at end of file
+*/
index cd553f4..bf0705a 100644 (file)
@@ -83,7 +83,7 @@ CREATE TABLE `nucleus_config` (
 INSERT INTO `nucleus_config` VALUES ('DefaultBlog', '1');
 INSERT INTO `nucleus_config` VALUES ('AdminEmail', 'example@example.org');
 INSERT INTO `nucleus_config` VALUES ('IndexURL', 'http://localhost:8080/nucleus/');
-INSERT INTO `nucleus_config` VALUES ('Language', 'english');
+INSERT INTO `nucleus_config` VALUES ('Locale', 'en_Latn_US');
 INSERT INTO `nucleus_config` VALUES ('SessionCookie', '');
 INSERT INTO `nucleus_config` VALUES ('AllowMemberCreate', '');
 INSERT INTO `nucleus_config` VALUES ('AllowMemberMail', '1');
@@ -155,7 +155,7 @@ CREATE TABLE `nucleus_member` (
   `madmin` tinyint(2) NOT NULL default '0',
   `mcanlogin` tinyint(2) NOT NULL default '1',
   `mcookiekey` varchar(40) default NULL,
-  `deflang` varchar(20) NOT NULL default '',
+  `mlocale` varchar(20) NOT NULL default '',
   `mautosave` tinyint(2) NOT NULL default '1',
   PRIMARY KEY  (`mnumber`),
 --  UNIQUE KEY `mnumber` (`mnumber`),
index a4f46fc..1d1b759 100644 (file)
@@ -140,8 +140,7 @@ define('_HEADER10',                         'インストールファイルの削除');
 define('_TEXT15',                              '<p>ウェブサーバから /install/ ディレクトリを削除してください:</p>');
 define('_TEXT15_L1',                   '<b>install/install.sql</b>:テーブルの構造を内包するファイル');
 define('_TEXT15_L2',                   '<b>install/index.php</b>:このファイル');
-//define('_TEXT15_L3',                 '<b>install_lang_japanese.php</b>:インストーラの言語ファイル');
-define('_TEXT15_L3',                   '<b>install/install_lang_japanese.php</b>:インストーラの言語ファイル');
+define('_TEXT15_L3',                   '<b>install/locale/ja_Jpan_JP.UTF-8.php</b>:インストーラの言語ファイル');
 define('_TEXT16',                      '<p>もしこのディレクトリを削除していなければ、管理領域を開くことができません。</p>');
 
 define('_HEADER11',                            'ウェブサイトの確認');
index 0abaf3a..bcc0c16 100644 (file)
@@ -2197,16 +2197,16 @@ Thanks to Andy Matsubara for the instructions.</p>
 <ol>
        <li><strong>Develop your plugin</strong>
 
-At first, it is easier to develop it in your language. Use of language files is recommended after the plugin becomes stable.</li>
+At first, it is easier to develop it in your language. Use of translation files is recommended after the plugin becomes stable.</li>
        <li><strong>Create plugin directory</strong>
 
 If your plugin name is NP_AbcDef, the plugin directory name is abcdef (always lower case).</li>
-       <li><strong>Create language files</strong>
+       <li><strong>Create translation files</strong>
 
-Create the language files in the directory of your plugin. The name of the language file must be the same as that of the Nucleus language file name. For example, english.php is for English and default use. japanese-utf8.php for Japanese(UTF-Cool,japanese-euc.php for Japanese(EUC-JP).</li>
+Create the translation files in the directory of your plugin. The name of the language file must be the same as that of the Nucleus language file name. For example, english.php is for English and default use. japanese-utf8.php for Japanese(UTF-Cool,japanese-euc.php for Japanese(EUC-JP).</li>
        <li><strong>Define strings</strong>
 
-Define strings like below in the language file:
+Define strings like below in the translation file:
 
 <pre class="example"><code>&lt;?php
 define('_ABCDEF_MESSAGENAME',                  'actual strings in the language');
@@ -2216,13 +2216,13 @@ define('_ABCDEF_MESSAGENAME',                  'actual strings in the language')
 You have to define them for all static strings in your plugin. As defined name is used globally in the environment, it is recommended to have a prefix derived from the plugin name(in this case _ABCDEF).</li>
        <li><strong>Replace static strings</strong>
 
-Replace static strings in your plugin with the defined names so they will change according to the language file.</li>
+Replace static strings in your plugin with the defined names so they will change according to the translation file.</li>
        <li><strong>Create init method</strong>
 
 Make the init method in the plugin like below
 
 <pre class="example"><code>   function init() {
-      // include language file for this plugin
+      // include translation file for this plugin
       $language = preg_replace( '#[\\|/]#', '', getLanguageName());
       if (file_exists($this->getDirectory().$language.'.php'))
          include_once($this->getDirectory().$language.'.php');
@@ -2230,8 +2230,8 @@ Make the init method in the plugin like below
          include_once($this->getDirectory().'english.php');
    }</code></pre>
 </li>
-This logic is same as Nucleus' language file setting.
-       <li><strong>Add language files</strong>
+This logic is same as Nucleus' translation file setting.
+       <li><strong>Add translation files</strong>
 
 As English is the default language, it is recommended to have at least the English version.    </li>
 </ol>
index cf95f07..4ae3389 100644 (file)
@@ -551,10 +551,10 @@ This document contains information on the fields inside the Nucleus database tab
        <td>A copy of the key that is stored in the users cookie. This key is used to log on. When a member logs on, a random cookiekey is generated. One copy goes into the database, another one goes into a cookie on the users computer. (together with the username).</td>
 
 </tr><tr>
-       <td class="notnull">deflang</td>
+       <td class="notnull">mlocale</td>
        <td>varchar(20)</td>
        <td>''</td>
-       <td>Language file to use for this member. When empty, uses the default site language.</td>
+       <td>translation file to use for this member. When empty, uses the default site locale.</td>
 </tr></table>
 
 
@@ -994,9 +994,9 @@ This document contains information on the fields inside the Nucleus database tab
        <td></td>
        <td>URL of website. Should end with a slash.</td>
 </tr><tr>
-       <td>Language</td>
-       <td>english</td>
-       <td>Language file to use by default. A file <strong>languagename.php</strong> must exist in the languages directory.</td>
+       <td>Locale</td>
+       <td>en_Latn_US</td>
+       <td>Locale file to use by default. A file <strong>localename.php</strong> must exist in the locale directory.</td>
 </tr><tr>
        <td>SessionCookie</td>
        <td>0</td>
index 1a3ebcd..b4ee7bc 100644 (file)
@@ -322,7 +322,7 @@ Next to that, logged in members can override this setting if they want to.
 When both of these settings are invalid, 'english' is used as the default language.
 </p>
 
-<p class="note"><strong>Note:</strong> Extra language files can be downloaded from the <a href="http://www.nucleuscms.org/" onclick="window.open(this.href);return false;" class="out" title="Nucleus CMS Website">Nucleus Website</a>. (opens a new window)</p>
+<p class="note"><strong>Note:</strong> Extra translation files can be downloaded from the <a href="http://www.nucleuscms.org/" onclick="window.open(this.href);return false;" class="out" title="Nucleus CMS Website">Nucleus Website</a>. (opens a new window)</p>
 
 </div>
 
@@ -2302,7 +2302,7 @@ all
 <a name="skinvar-charset"></a>
 <h1>Skinvar: charset</h1>
 
-<p>Inserts the character set encoding used by the current language file.</p>
+<p>Inserts the character set encoding used by the current translation file.</p>
 
 <h2>Arguments</h2>
 
index 22443ee..5caa213 100644 (file)
                <strong>Nucleus v3.41 (March 15, 2009)</strong>
                <ul>
                        <li>FIXED: Reduce PHP Notices caused by undefined variables and wrong offsets (shizuki, kaigreve)</li>
-                       <li>FIXED: additional changes in the language files english.php and english-utf8.php to reflect modifications since version 3.30 (kaigreve)</li>
+                       <li>FIXED: additional changes in the translation files english.php and english-utf8.php to reflect modifications since version 3.30 (kaigreve)</li>
                        <li>FIXED: SQL error in MEMBER::write() where mautosave not forced to be integer. See <a href="http://forum.nucleuscms.org/viewtopic.php?t=18575">Problem with 3.40</a>. (ftruscot)</li>
-                       <li>CHANGED: Modify Fix SQL error when new blog add by shizuki, to give a default english value for category name, category desc, first item title, and first item body in case where user does not have updated language file. (ftruscot)</li>
+                       <li>CHANGED: Modify Fix SQL error when new blog add by shizuki, to give a default english value for category name, category desc, first item title, and first item body in case where user does not have updated translation file. (ftruscot)</li>
                        <li>FIXED: Fix SQL Error when new blog add. (shizuki)</li>
                        <li>CHANGED: Mod Change link URI of 'help icon' to full URI (documentation/help.html to $CONF['AdminURL'].'documentation/help.html') (shizuki)</li>
                        <li>ADDED: getTeamBlogs() method to MEMBER class to retrieve list of blogs to which a member has team rights (ftruscot)</li>
                        <li>FIXED: add default values for the parse_bloglist function to avoid warnings (kaigreve)</li>
                        <li>FIXED: fix case sensitive function name createDraftFromRequest in class ACTION (admun)</li>
                        <li>ADDED: add description of the doItemVar function to the plugin documentation (kaigreve)</li>
-                       <li>ADDED: add language file install_lang_english.php to install process (admun)</li>
+                       <li>ADDED: add translation file install_lang_english.php to install process (admun)</li>
                        <li>ADDED: add option to install NP_Ping during installation (admun)</li>
                        <li>FIXED: remove bug in the plugin api: function clearOptionValueCache hasn't worked correct with the getOption function (kaigreve)</li>
                        <li>ADDED: add global configuration DebugVars which decides if unresolved Vars (SkinVars, TemplateVars, ItemVars) are shown on the blog (kaigreve)</li>
                        <li>FIXED (<a href="http://dev.nucleuscms.org/tracker/index.php?do=details&amp;id=88">#88</a>): PHP5.1: "Fatal error: Only variables can be passed by reference" (karma)</li>
                        <li>FIXED (<a href="http://dev.nucleuscms.org/tracker/index.php?do=details&amp;id=87">#87</a>): Translate &amp; -&gt; &amp;amp; when links added via toolbar (karma)</li>
                        <li>FIXED (<a href="http://dev.nucleuscms.org/tracker/index.php?do=details&amp;id=42">#42</a>): <code>formatDate</code> didn't always use the correct timezone (karma)</li>
-                       <li>FIXED (<a href="http://dev.nucleuscms.org/tracker/index.php?do=details&amp;id=43">#43</a>): Only load user language file when logged in (karma).</li>
+                       <li>FIXED (<a href="http://dev.nucleuscms.org/tracker/index.php?do=details&amp;id=43">#43</a>): Only load user translation file when logged in (karma).</li>
                        <li>FIXED (<a href="http://dev.nucleuscms.org/tracker/index.php?do=details&amp;id=76">#76</a>): Disabling site blocked admin menu access (karma).</li>
                        <li>FIXED (<a href="http://dev.nucleuscms.org/tracker/index.php?do=details&amp;id=57">#57</a>): PostRegister event not fired from inside admin area.</li>
                        <li>FIXED (<a href="http://dev.nucleuscms.org/tracker/index.php?do=details&amp;id=58">#58</a>): images and popups were not in feeds. (karma)</li>
                        <li>FIXED: In v3.15, deleting an item via the bookmarklet failed (karma)</li>
                        <li>ADDED: Support for <code>&lt;%blogsetting(short)%&gt;</code>, as suggested by caw (karma)</li>
                        <li>FIXED: Default skin used <code>application/xml+rss</code> instead of <code>application/rss+xml</code>, causing RSS autodiscovery to fail. (karma)</li>
-                       <li>FIXED: Moved more hardcoded text into language files</li>
+                       <li>FIXED: Moved more hardcoded text into translation files</li>
                        <li>FIXED: Made it so malicious users cannot trick a logged in site member/admin into visiting a specifically crafted URL that performs some admin area task. (karma).</li>
                        <li>FIXED: bug 976777, weblogs.com was not ping when posting draft (admun)</li>
                        <li>ADDED: bug 1008171, cookie-prefix (karma)</li>
                        <li>FIXED: bug 967580, Class variables were not explicitly defined in PHP classes (karma)</li>
                        <li>FIXED: IE6 unreadable Admin menu textarea (admun)</li>
                        <li>FIXED: Skin exports for skins containing CDATA sections (like the RSS feeds) caused the <code>skinbackup.xml</code> to contain invalid XML. (Import still worked, however) (karma)</li>
-                       <li>FIXED: German language file wrong translation (admun)</li>
+                       <li>FIXED: German translation file wrong translation (admun)</li>
                        <li>CHANGED: replaced <code>split</code> by <code>preg_split</code> in the parser class. Should be faster according to PHP docs (karma)</li>
                        <li>FIXED: documentation typo (admun)</li>
                        <li>FIXED: PHP5: Install script failed to discover install path automatically (karma)</li>
                        <li>CHANGED: Allowed skin names to have slashes (<code>/</code>) in them (karma)</li>
                        <li>FIXED: When adding media in non-IE browsers, all text was removed</li>
                        <li>FIXED: Wrong times displayed / 'no such item' errors when MySQL server and PHP server are in different timezones (karma)</li>
-                       <li>ADDED: Made sure language files for v2.5beta can be used with v2.5final without strange strings (e.g. _SETTINGS_EXTAUTH) showing up in the admin area (karma)</li>
+                       <li>ADDED: Made sure translation files for v2.5beta can be used with v2.5final without strange strings (e.g. _SETTINGS_EXTAUTH) showing up in the admin area (karma)</li>
                        <li>FIXED: No CSS styles were applied on 'insert media' popup (karma)</li>
                        <li>FIXED: Some more possible problems with URL linking in comments (karma)</li>
                        <li>FIXED: In Opera, buttons on the extended area added text to the main body text instead (karma)</li>
                        <li>FIXED: shortening of strings does not corrupt HTML entities anymore (e.g. in RSS-feeds)</li>
                        <li>CHANGED: links in comments are now handled differently. Part of the URL is now displayed instead of just http://.../</li>
                        <li>ADDED: Opera version of bookmarklet</li>
-                       <li>ADDED: selectLanguage() function to force the use of a certain language file</li>
+                       <li>ADDED: selectLanguage() function to force the use of a certain translation file</li>
                        <li>REMOVED: there was a plugin event AddItem which was actually not needed at all (wasn't included in the documentation too)</li>
                        <li>ADDED: archivelist skinvars now takes an extra limit-parameter</li>
                        <li>CHANGED: moved all forms which can be included through skinvar out of SKIN.php and into .template files in the nucleus/forms directory.</li>
                        <li>Changed all references to nucleus.demuynck.org into references to <a href="http://nucleuscms.org/">nucleuscms.org</a></li>
                        <li>Extra settings: cookie domain, cookie path, secure cookie (for https)</li>
                        <li>Instead of stripping tags in comments, &lt; and &gt; are now replaced by their entities (&amp;lt; and &amp;gt;). This way, greater than and lower than signs can be used in comments <small>(inspiration by <a href="http://www.adfundum.be/">Steven Verbruggen</a>)</small></li>
-                       <li>Added charset to language files, so international character sets can be used when needed <small>(<a href="http://forum.nucleuscms.org/viewtopic.php?t=56">forum</a>)</small></li>
+                       <li>Added charset to translation files, so international character sets can be used when needed <small>(<a href="http://forum.nucleuscms.org/viewtopic.php?t=56">forum</a>)</small></li>
                        <li>Added an extra content-type attribute to skins, so the output type can be set correctly by Nucleus</li>
                        <li>Removed the 'headlines' skin and templates. Don't want new users to get too confused.</li>
                        <li>Notification emails now also get the senders display name</li>
                        <li>Fixes in default skin</li>
                        <li>As always, lots of small fixes &amp; code rewrites</li>
                        <li>
-                               Changes (additions to and <del>deletions</del> from) language file:
+                               Changes (additions to and <del>deletions</del> from) translation file:
                                <ul>
                                        <li>_SETTINGS_COOKIES_TITLE</li>
                                        <li>_SETTINGS_COOKIEDOMAIN</li>
                                        <li>_MEMBERS_USESITELANG</li>
                                        <li>_ADD_CATEGORY</li>
                                        <li>_ADD_DRAFTNFUTURE</li>
-                                       <li>_ERROR_NOSUCHLANGUAGE</li>
+                                       <li>_ERROR_NOSUCHTRANSLATION</li>
                                        <li>_ERROR_NOSUCHCATEGORY</li>
                                        <li>_ERROR_DELETEDEFCATEGORY</li>
                                        <li>_ERROR_DELETELASTCATEGORY</li>
                        <li>Added: Blogger Convert</li>
                        <li>Added: "shared computer" checkbox on login. Checking this box will make your cookie expire at the end of the session (instead of taking the global site setting) <small>(see <a href="http://www.nucleuscms.org/forum/viewtopic.php?t=33">forum</a>)</small></li>
                        <li>Added: "remember me" checkbox on comment forms for non-members</li>
-                       <li>Most language related things are now moved to language files. Now you can roll your own :)</li>
+                       <li>Most language related things are now moved to translation files. Now you can roll your own :)</li>
                        <li>Added: optional parameters rows/cols in membermailform skinvar</li>
                        <li>Added: skinvars: &lt;%phpinclude(file)%&gt; and &lt;%parsedinclude(file)%&gt;. &lt;%plugin%&gt; is now deprecated (in favor of phpinclude). The plugins directory should also not be used anymore (it'll get another function in a later version)</li>
                        <li>Added: skinvar &lt;%self%&gt; which includes the filename of the currently executing script (index.php or whatever is sen in $CONF['Self'])</li>
index 13f6b02..641725b 100644 (file)
@@ -312,7 +312,7 @@ The available calls to the interface are described in the development documentat
 <div class="faq">
 <div class="question">I get an error: <q>Cannot send headers. Headers already sent...</q></div>
 <div class="answer">
-This problem is usually caused by whitespace at the beginning or end of <code>config.php</code>. Check if it has spaces or newlines before the starting <tt>&lt;?</tt> or after the ending <tt>?&gt;</tt>. If there are, remove them. The problem can also have to do with spaces in the language file or one of the installed plugins.
+This problem is usually caused by whitespace at the beginning or end of <code>config.php</code>. Check if it has spaces or newlines before the starting <tt>&lt;?</tt> or after the ending <tt>?&gt;</tt>. If there are, remove them. The problem can also have to do with spaces in the translation file or one of the installed plugins.
 </div>
 </div>
 
@@ -397,7 +397,7 @@ File permissions need to be set correctly in order for the update file to work.
        <li>Jeff MacMichael (NP_SkinFiles plugin)</li>
        <li>Ivan Fong, Roel, Moraes, Hcgtv (Nucleus 3.2 default skin)</li>
        <li>Plugins are written by their respective authors.</li>
-       <li>Thanks should go out to the people that wrote language-files for Nucleus. You can <a href="http://nucleuscms.org/languages.php">download extra language files on the Nucleus website</a>.</li>
+       <li>Thanks should go out to the people that wrote language-files for Nucleus. You can <a href="http://nucleuscms.org/languages.php">download extra translation files on the Nucleus website</a>.</li>
        <li>The logo (the one with the yellow rays) was created by Rodrigo Moraes</li>
        <li>The RSS 2.0 skin was created by <a href="http://www.xiffy.nl">Xiffy</a></li>
        <li>The XML-RPC interface uses the <a href="http://phpxmlrpc.sourceforge.net/">'XML-RPC for PHP'</a> implementation from <a href="http://www.usefulinc.com/">Useful Inc.</a>.</li>
index 33a04b3..061eadb 100644 (file)
@@ -1883,11 +1883,11 @@ class ADMIN
                        <td><?php echo _MEMBERS_NOTES?></td>
                        <td><input name="notes" tabindex="80" size="40" maxlength="100" value="<?php echo  ENTITY::hsc($mem->getNotes()); ?>" /></td>
                </tr><tr>
-                       <td><?php echo _MEMBERS_DEFLANG?> <?php help('language'); ?>
+                       <td><?php echo _MEMBERS_LOCALE?> <?php help('locale'); ?>
                        </td>
                        <td>
                        
-                               <select name="deflang" tabindex="85">
+                               <select name="locale" tabindex="85">
                                <?php
                                $locales = i18n::get_available_locale_list();
                                if ( !$mem->getLocale() || !in_array($mem->getLocale(), $locales) )
@@ -1974,7 +1974,7 @@ class ADMIN
         $admin          = postVar('admin');
         $canlogin       = postVar('canlogin');
         $notes          = strip_tags(postVar('notes'));
-        $locale        = postVar('deflang');
+        $locale        = postVar('locale');
 
         $mem = MEMBER::createFromID($memberid);
 
@@ -2011,7 +2011,7 @@ class ADMIN
                        $this->error(_ERROR_REALNAMEMISSING);
                }
         if ( ($locale != '') && (!in_array($locale, i18n::get_available_locale_list())) )
-            $this->error(_ERROR_NOSUCHLANGUAGE);
+            $this->error(_ERROR_NOSUCHTRANSLATION);
 
         // check if there will remain at least one site member with both the logon and admin rights
         // (check occurs when taking away one of these rights from such a member)
@@ -4758,10 +4758,10 @@ selector();
             <td><?php echo _SETTINGS_ACTIONSURL?> <?php help('actionurl');?></td>
             <td><input name="ActionURL" tabindex="10047" size="40" value="<?php echo  ENTITY::hsc($CONF['ActionURL']) ?>" /></td>
         </tr><tr>
-            <td><?php echo _SETTINGS_LANGUAGE?> <?php help('language'); ?>
+            <td><?php echo _SETTINGS_LOCALE?> <?php help('locale'); ?>
             </td>
             <td>
-                <select name="Language" tabindex="10050">
+                <select name="Locale" tabindex="10050">
                        <?php
                                $locales = i18n::get_available_locale_list();
                                if ( !i18n::get_current_locale() || !in_array(i18n::get_current_locale(), $locales) )
@@ -5051,7 +5051,7 @@ selector();
                $this->updateConfig('PluginURL',                postVar('PluginURL'));
                $this->updateConfig('SkinsURL',          postVar('SkinsURL'));
                $this->updateConfig('ActionURL',                postVar('ActionURL'));
-               $this->updateConfig('Language',            postVar('Language'));
+               $this->updateConfig('Locale',              postVar('Locale'));
                $this->updateConfig('AdminEmail',          postVar('AdminEmail'));
                $this->updateConfig('SessionCookie',    postVar('SessionCookie'));
                $this->updateConfig('AllowMemberCreate',postVar('AllowMemberCreate'));
@@ -5079,7 +5079,7 @@ selector();
                $this->updateConfig('DefaultListSize',            postVar('DefaultListSize'));
                $this->updateConfig('AdminCSS',           postVar('AdminCSS'));
                
-               // load new config and redirect (this way, the new language will be used is necessary)
+               // load new config and redirect (this way, the new locale will be used is necessary)
                // note that when changing cookie settings, this redirect might cause the user
                // to have to log in again.
                getConfig();
index e39a648..5c35dca 100644 (file)
@@ -155,10 +155,7 @@ class MEMBER {
                $this->id = $obj->mnumber;
                $this->setCanLogin($obj->mcanlogin);
                $this->setNotes($obj->mnotes);
-               /*
-                * FIXME: the name of this field should be 'mlocale', not deflang.
-                */
-               $this->setLocale($obj->deflang);
+               $this->setLocale($obj->mlocale);
                $this->setAutosave($obj->mautosave);
                
                return sql_num_rows($res);
@@ -550,8 +547,8 @@ class MEMBER {
                           . "     madmin=" . $this->isAdmin() . ","
                           . "     mnotes='" . sql_real_escape_string($this->getNotes()) . "',"
                           . "     mcanlogin=" . $this->canLogin() . ","
-                          . "      deflang='" . sql_real_escape_string($this->getLocale()) . "',"
-                          . "      mautosave=" . intval($this->getAutosave()) . ""                        
+                          . "     mlocale='" . sql_real_escape_string($this->getLocale()) . "',"
+                          . "     mautosave=" . intval($this->getAutosave()) . ""                         
                           . " WHERE mnumber=" . $this->getID();
                sql_query($query);
                return;
index 1844fc5..17a409e 100644 (file)
@@ -38,39 +38,44 @@ else
 }
 
 /*
+ * FIXME: This is for compatibility since 4.0, should be obsoleted at future release.
+ */
+if ( !isset($DIR_LOCALES) )
+{
+       $DIR_LOCALES = $DIR_LANG;
+}
+
+/*
  * load and initialize i18n class
  */
 if (!class_exists('i18n', FALSE))
 {
        include($DIR_LIBS . 'i18n.php');
 }
-if ( !i18n::init('UTF-8', $DIR_LANG) )
+if ( !i18n::init('UTF-8', $DIR_LOCALES) )
 {
        exit('Fail to initialize i18n class.');
 }
 /*
- * FIXME: This is for compatibility, should be obsoleted near future.
+ * FIXME: This is for compatibility since 4.0, should be obsoleted at future release.
  */
 define('_CHARSET', i18n::get_current_charset());
 
 /*
-       Indicates when Nucleus should display startup errors. Set to 1 if you want
-       the error enabled (default), false otherwise
-       
-       alertOnHeadersSent
-               Displays an error when visiting a public Nucleus page and headers have
-               been sent out to early. This usually indicates an error in either a
-               configuration file or a language file, and could cause Nucleus to
-               malfunction
-       alertOnSecurityRisk
-               Displays an error only when visiting the admin area, and when one or
-               more of the installation files (install.php, install.sql, upgrades/
-               directory) are still on the server.
-*/
-
-if ( !isset($CONF['alertOnHeadersSent'])
-  || (isset($CONF['alertOnHeadersSent'])
-  && $CONF['alertOnHeadersSent'] !== 0) )
+ * Indicates when Nucleus should display startup errors. Set to 1 if you want
+ * the error enabled (default), false otherwise
+ *
+ * alertOnHeadersSent
+ *  Displays an error when visiting a public Nucleus page and headers have
+ *  been sent out to early. This usually indicates an error in either a
+ *  configuration file or a translation file, and could cause Nucleus to
+ *  malfunction
+ * alertOnSecurityRisk
+ * Displays an error only when visiting the admin area, and when one or
+ *  more of the installation files (install.php, install.sql, upgrades/
+ *  directory) are still on the server.
+ */
+if ( !array_key_exists('alertOnHeadersSent', $CONF) || $CONF['alertOnHeadersSent'] !== 0) )
 {
        $CONF['alertOnHeadersSent'] = 1;
 }
@@ -115,7 +120,7 @@ if ( !isset($CONF['installscript']) )
 }
 
 /* we will use postVar, getVar, ... methods instead of $_GET, $_POST ...*/
-if ($CONF['installscript'] != 1)
+if ( $CONF['installscript'] != 1 )
 {
        /* vars were already included in install.php */
        include_once($DIR_LIBS . 'vars4.1.0.php');
@@ -185,7 +190,7 @@ if ( version_compare(PHP_VERSION, '5.3.0', '<') )
 }
 
 /* Avoid notices */
-if ( !isset($CONF['UsingAdminArea']) )
+if ( !array_key_exists('UsingAdminArea', $CONF) )
 {
        $CONF['UsingAdminArea'] = 0;
 }
@@ -228,17 +233,22 @@ getConfig();
  * Here simply convert old name to new name without checking translation file existance
  * FIXME: This is for compatibility, should be obsoleted near future.
  */
-if ( !preg_match('#^(.+)_(.+)_(.+)$#', $CONF['Language'])
-  && ($CONF['Language'] = i18n::convert_old_language_file_name_to_locale($CONF['Language'])) === FALSE )
+if ( !array_key_exists('Locale', $CONF) )
 {
-       $CONF['Language'] = '';
+       $CONF['Locale'] =& $CONF['Language'];
 }
-$locale = $CONF['Language'];
+
+if ( !preg_match('#^(.+)_(.+)_(.+)$#', $CONF['Locale'])
+  && ($CONF['Locale'] = i18n::convert_old_language_file_name_to_locale($CONF['Language'])) === FALSE )
+{
+       $CONF['Locale'] = '';
+}
+$locale = $CONF['Locale'];
 
 /* Properly set $CONF['Self'] and others if it's not set...
  * usually when we are access from admin menu
  */
-if ( !isset($CONF['Self']) )
+if ( !array_key_exists('Self', $CONF) )
 {
        $CONF['Self'] = $CONF['IndexURL'];
        /* strip trailing */
@@ -260,7 +270,7 @@ $CONF['CategoryURL'] = $CONF['Self'];
  *switch URLMode back to normal when $CONF['Self'] ends in .php
  * this avoids urls like index.php/item/13/index.php/item/15
  */
-if ( !isset($CONF['URLMode'])
+if ( !array_key_exists('URLMode', $CONF)
  || (($CONF['URLMode'] == 'pathinfo')
   && (i18n::substr($CONF['Self'], i18n::strlen($CONF['Self']) - 4) == '.php')) )
 {
@@ -279,7 +289,7 @@ if ( ($CONF['DisableJsTools'] == 0)
 $member = new MEMBER();
 
 /* secure cookie key settings (either 'none', 0, 8, 16, 24, or 32) */
-if ( !isset($CONF['secureCookieKey']) )
+if ( !array_key_exists('secureCookieKey', $CONF) )
 {
        $CONF['secureCookieKey'] = 24;
 }
@@ -301,7 +311,7 @@ switch( $CONF['secureCookieKey'] )
                $CONF['secureCookieKeyIP'] = '';
 }
 
-/* 
+/*
  * login/logout when required or renew cookies
  *  and decide locale on this session before plugin event generates
  */
@@ -320,7 +330,7 @@ if ( $action == 'login' )
                $member->newCookieKey();
                $member->setCookies($shared);
                
-               if ( $CONF['secureCookieKey']!=='none' )
+               if ( $CONF['secureCookieKey'] !== 'none' )
                {
                        /* secure cookie key */
                        $member->setCookieKey(md5($member->getCookieKey().$CONF['secureCookieKeyIP']));
@@ -488,8 +498,8 @@ if ( !headers_sent() )
 /*
 Backed out for now: See http://forum.nucleuscms.org/viewtopic.php?t=3684 for details
 
-// To remove after v2.5 is released and language files have been updated.
-// Including this makes sure that language files for v2.5beta can still be used for v2.5final
+// To remove after v2.5 is released and translation files have been updated.
+// Including this makes sure that translation files for v2.5beta can still be used for v2.5final
 // without having weird _SETTINGS_EXTAUTH string showing up in the admin area.
 if (!defined('_MEMBERS_BYPASS'))
 {
@@ -1091,7 +1101,7 @@ function selector() {
                }
                
                startUpError(
-                       '<p>The page headers have already been sent out' . $extraInfo . '. This could cause Nucleus not to work in the expected way.</p><p>Usually, this is caused by spaces or newlines at the end of the <code>config.php</code> file, at the end of the language file or at the end of a plugin file. Please check this and try again.</p><p>If you don\'t want to see this error message again, without solving the problem, set <code>$CONF[\'alertOnHeadersSent\']</code> in <code>globalfunctions.php</code> to <code>0</code></p>',
+                       '<p>The page headers have already been sent out' . $extraInfo . '. This could cause Nucleus not to work in the expected way.</p><p>Usually, this is caused by spaces or newlines at the end of the <code>config.php</code> file, at the end of the translation file or at the end of a plugin file. Please check this and try again.</p><p>If you don\'t want to see this error message again, without solving the problem, set <code>$CONF[\'alertOnHeadersSent\']</code> in <code>globalfunctions.php</code> to <code>0</code></p>',
                        'Page headers already sent'
                );
                exit;
@@ -1543,7 +1553,7 @@ function selectItem($id) {
     $itemid = intval($id);
 }
 
-// force the use of a language file (warning: can cause warnings)
+// force the use of a translation file (warning: can cause warnings)
 function selectLanguage($language) {
 
        global $DIR_LANG;
index f496515..7c11a43 100644 (file)
@@ -501,7 +501,7 @@ class i18n
         * 
         * @static
         * @param       string  $target_locale  locale name as language_script_region
-        * @return      string  old language file name
+        * @return      string  old translation file name
         */
        static public function convert_locale_to_old_language_file_name($target_locale)
        {
@@ -529,7 +529,7 @@ class i18n
         * NOTE: this should be obsoleted near future.
         * 
         * @static
-        * @param       string  $target_language        old language file name
+        * @param       string  $target_language        old translation file name
         * @return      string  locale name as language_script_region
         */
        static public function convert_old_language_file_name_to_locale($target_language)
@@ -555,7 +555,7 @@ class i18n
        
        /**
         * i18n::$lang_refs
-        * reference table to convert old and new way to name language files.
+        * reference table to convert old and new way to name translation files.
         * NOTE: this should be obsoleted as soon as possible.
         * 
         * @static
index dc85f8c..e561844 100644 (file)
@@ -4,12 +4,12 @@
 // Author: p0wer\r
 // Nucleus version: v1.0-v3.1\r
 //\r
-// Please note: if you want to translate this file to your own language, be aware\r
+// Please note: if you want to translate this file to your own locale, be aware\r
 // that in a next Nucleus version, new variables might be added and some other ones\r
 // might be deleted. Therefor, it's important to list the Nucleus version for which \r
 // the file was written in your document.\r
 //\r
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)\r
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)\r
 // and will be available for download (with proper credit to the author, of course)\r
 \r
 // START changed/added after 3.1 START\r
@@ -527,7 +527,7 @@ define('_ERROR_UPLOADDUPLICATE',    '
 define('_ERROR_LOGINDISALLOWED',       'Sorry, you\'re not allowed to log in to the admin area. You can log in as another user, though');\r
 define('_ERROR_DBCONNECT',                     'Íå ìîæå äà ñå ñâúðæå ñ mySQL ñúðâúðà');\r
 define('_ERROR_DBSELECT',                      'Íå ìîæå äà èçáåðå nucleus áàçàòà äàííè.');\r
-define('_ERROR_NOSUCHLANGUAGE',                'Íå ñúùåñòâóâà òàêúâ åçèêîâ ôàéë');\r
+define('_ERROR_NOSUCHTRANSLATION',             'Íå ñúùåñòâóâà òàêúâ åçèêîâ ôàéë');\r
 define('_ERROR_NOSUCHCATEGORY',                'íå ñúùåñòâóâà òàêàâà êàòåãîðèÿ');\r
 define('_ERROR_DELETELASTCATEGORY',    'Òðÿáâà äà èìà ïîíå åäíà êàòåãîðèÿ');\r
 define('_ERROR_DELETEDEFCATEGORY',     'Íå ìîæåòå äà èçòðèåòå default êàòåãîðèÿòà');\r
@@ -728,7 +728,7 @@ define('_SETTINGS_ALLOWCREATE',             '
 define('_SETTINGS_NEWLOGIN',           'Login ðàçðåøåí çà Ïîòðåáèòåëñêè-Ñúçäàäåíè àêàóíòè');\r
 define('_SETTINGS_NEWLOGIN2',          '(îòíàñÿ ñå ñàìî çà íîâîñúçäàäåíè àêàóíòè)');\r
 define('_SETTINGS_MEMBERMSGS',         'Ðàçðåøè Member-2-Member óñëóãàòà');\r
-define('_SETTINGS_LANGUAGE',           'Default Language');\r
+define('_SETTINGS_LOCALE',             'Default Language');\r
 define('_SETTINGS_DISABLESITE',                'Ñïðè ñàéòà');\r
 define('_SETTINGS_DBLOGIN',                    'mySQL Login &amp; Database');\r
 define('_SETTINGS_UPDATE',                     'Îáíîâåíè íàñòðîéêè');\r
index 76ce052..906ba88 100644 (file)
@@ -4,12 +4,12 @@
 // Author: p0wer
 // Nucleus version: v1.0-v3.1
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START changed/added after 3.1 START
@@ -527,7 +527,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Ф№ѓу єрщы ёњё ёњљюђю шьх
 define('_ERROR_LOGINDISALLOWED',       'Sorry, you\'re not allowed to log in to the admin area. You can log in as another user, though');
 define('_ERROR_DBCONNECT',                     'Эх ьюцх фр ёх ётњ№цх ё mySQL ёњ№тњ№р');
 define('_ERROR_DBSELECT',                      'Эх ьюцх фр шчсх№х nucleus срчрђр фрээш.');
-define('_ERROR_NOSUCHLANGUAGE',                'Эх ёњљхёђтѓтр ђръњт хчшъют єрщы');
+define('_ERROR_NOSUCHTRANSLATION',             'Эх ёњљхёђтѓтр ђръњт хчшъют єрщы');
 define('_ERROR_NOSUCHCATEGORY',                'эх ёњљхёђтѓтр ђръртр ърђхую№шџ');
 define('_ERROR_DELETELASTCATEGORY',    'в№џстр фр шьр яюэх хфэр ърђхую№шџ');
 define('_ERROR_DELETEDEFCATEGORY',     'Эх ьюцхђх фр шчђ№шхђх default ърђхую№шџђр');
@@ -728,7 +728,7 @@ define('_SETTINGS_ALLOWCREATE',             'арч№хјш эр яюёхђшђхышђх
 define('_SETTINGS_NEWLOGIN',           'Login №рч№хјхэ чр Яюђ№хсшђхыёъш-бњчфрфхэш рърѓэђш');
 define('_SETTINGS_NEWLOGIN2',          '(юђэрёџ ёх ёрью чр эютюёњчфрфхэш рърѓэђш)');
 define('_SETTINGS_MEMBERMSGS',         'арч№хјш Member-2-Member ѓёыѓурђр');
-define('_SETTINGS_LANGUAGE',           'Default Language');
+define('_SETTINGS_LOCALE',             'Default Language');
 define('_SETTINGS_DISABLESITE',                'бя№ш ёрщђр');
 define('_SETTINGS_DBLOGIN',                    'mySQL Login &amp; Database');
 define('_SETTINGS_UPDATE',                     'Юсэютхэш эрёђ№ющъш');
index fd34f5b..3895e7f 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Roger Pau Monné (royger@gmail.com) 
 // Nucleus version: v1.0-v3.2
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 // Data language
@@ -589,7 +589,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Ja exiteix un altre fitxer amb awuest nom. Int
 define('_ERROR_LOGINDISALLOWED',       'No t\'és permès entrar a l\'àrea d\'administració. No obstant això, pots registrar-te com un altre usuari');
 define('_ERROR_DBCONNECT',                     'No és pot conectar al servidor MySQL');
 define('_ERROR_DBSELECT',                      'No ha estat possible sel·Lecciónar la base de dades de nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'No existeix tal llenguatge');
+define('_ERROR_NOSUCHTRANSLATION',             'No existeix tal llenguatge');
 define('_ERROR_NOSUCHCATEGORY',                'No existeix la categoria desitjada');
 define('_ERROR_DELETELASTCATEGORY',    'Hi ha d\'haver almenys 1 categoria');
 define('_ERROR_DELETEDEFCATEGORY',     'No és pot esborrar la categoria per defecte');
@@ -790,7 +790,7 @@ define('_SETTINGS_ALLOWCREATE',             'Permetre als visitants crear-se un usuari');
 define('_SETTINGS_NEWLOGIN',           'Permetre el registre d\'usuaris creats per visitants');
 define('_SETTINGS_NEWLOGIN2',          '(només s\'aplica a usuaris recent creats)');
 define('_SETTINGS_MEMBERMSGS',         'Permetre servei Usuari-a-Usuari');
-define('_SETTINGS_LANGUAGE',           'Idiome per defecte');
+define('_SETTINGS_LOCALE',             'Idiome per defecte');
 define('_SETTINGS_DISABLESITE',                'Descativar la pàgina');
 define('_SETTINGS_DBLOGIN',                    'Usuari MySQL &amp; Base de dades');
 define('_SETTINGS_UPDATE',                     'Actualitzar els paràmetres');
index 301613f..242d210 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Roger Pau Monné (royger@gmail.com) 
 // Nucleus version: v1.0-v3.2
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 // Data language
@@ -589,7 +589,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Ja exiteix un altre fitxer amb awuest nom. Int
 define('_ERROR_LOGINDISALLOWED',       'No t\'és permès entrar a l\'àrea d\'administració. No obstant això, pots registrar-te com un altre usuari');
 define('_ERROR_DBCONNECT',                     'No és pot conectar al servidor MySQL');
 define('_ERROR_DBSELECT',                      'No ha estat possible sel·Lecciónar la base de dades de nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'No existeix tal llenguatge');
+define('_ERROR_NOSUCHTRANSLATION',             'No existeix tal llenguatge');
 define('_ERROR_NOSUCHCATEGORY',                'No existeix la categoria desitjada');
 define('_ERROR_DELETELASTCATEGORY',    'Hi ha d\'haver almenys 1 categoria');
 define('_ERROR_DELETEDEFCATEGORY',     'No és pot esborrar la categoria per defecte');
@@ -790,7 +790,7 @@ define('_SETTINGS_ALLOWCREATE',             'Permetre als visitants crear-se un usuari');
 define('_SETTINGS_NEWLOGIN',           'Permetre el registre d\'usuaris creats per visitants');
 define('_SETTINGS_NEWLOGIN2',          '(només s\'aplica a usuaris recent creats)');
 define('_SETTINGS_MEMBERMSGS',         'Permetre servei Usuari-a-Usuari');
-define('_SETTINGS_LANGUAGE',           'Idiome per defecte');
+define('_SETTINGS_LOCALE',             'Idiome per defecte');
 define('_SETTINGS_DISABLESITE',                'Descativar la pàgina');
 define('_SETTINGS_DBLOGIN',                    'Usuari MySQL &amp; Base de dades');
 define('_SETTINGS_UPDATE',                     'Actualitzar els paràmetres');
index 167f76f..e3c740b 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Mnemonic (mnemonic@dead-code.org)
 // Nucleus version: v1.0-v2.0
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Soubor s tímto názvem již existuje. Před n
 define('_ERROR_LOGINDISALLOWED',       'Promiňte, ale nemůžete se přihlásit do správcovské oblasti. Nicméně můžete se přihlásit jako jiný uživatel.');
 define('_ERROR_DBCONNECT',                     'Nelze se připojit k mySQL serveru');
 define('_ERROR_DBSELECT',                      'Nelze vybrat databázi nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Tento jazykový soubor neexistuje');
+define('_ERROR_NOSUCHTRANSLATION',             'Tento jazykový soubor neexistuje');
 define('_ERROR_NOSUCHCATEGORY',                'Taková kategorie neexistuje');
 define('_ERROR_DELETELASTCATEGORY',    'Musí existovat alespoň jedna kategorie');
 define('_ERROR_DELETEDEFCATEGORY',     'Nelze odstranit výchozí kategorii');
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             'Povolit návštěvníkům vytvořit si registr
 define('_SETTINGS_NEWLOGIN',           'Povolit přihlášení z účtů, vytvořených návštěvníky');
 define('_SETTINGS_NEWLOGIN2',          '(pouze pro nově vytvořené účty)');
 define('_SETTINGS_MEMBERMSGS',         'Povolit služby mezi členy');
-define('_SETTINGS_LANGUAGE',           'Výchozí jazyk');
+define('_SETTINGS_LOCALE',             'Výchozí jazyk');
 define('_SETTINGS_DISABLESITE',                'Vypnout stránku');
 define('_SETTINGS_DBLOGIN',                    'mySQL Login a Databáze');
 define('_SETTINGS_UPDATE',                     'Uložit nastavení');
index 82ab2c9..51ef459 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Mnemonic (mnemonic@dead-code.org)
 // Nucleus version: v1.0-v2.0
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Soubor s t
 define('_ERROR_LOGINDISALLOWED',       'Promiòte, ale nemù\9eete se pøihlásit do správcovské oblasti. Nicménì mù\9eete se pøihlásit jako jiný u\9eivatel.');
 define('_ERROR_DBCONNECT',                     'Nelze se pøipojit k mySQL serveru');
 define('_ERROR_DBSELECT',                      'Nelze vybrat databázi nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Tento jazykový soubor neexistuje');
+define('_ERROR_NOSUCHTRANSLATION',             'Tento jazykový soubor neexistuje');
 define('_ERROR_NOSUCHCATEGORY',                'Taková kategorie neexistuje');
 define('_ERROR_DELETELASTCATEGORY',    'Musí existovat alespoò jedna kategorie');
 define('_ERROR_DELETEDEFCATEGORY',     'Nelze odstranit výchozí kategorii');
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             'Povolit n
 define('_SETTINGS_NEWLOGIN',           'Povolit pøihlá\9aení z úètù, vytvoøených náv\9atìvníky');
 define('_SETTINGS_NEWLOGIN2',          '(pouze pro novì vytvoøené úèty)');
 define('_SETTINGS_MEMBERMSGS',         'Povolit slu\9eby mezi èleny');
-define('_SETTINGS_LANGUAGE',           'Výchozí jazyk');
+define('_SETTINGS_LOCALE',             'Výchozí jazyk');
 define('_SETTINGS_DISABLESITE',                'Vypnout stránku');
 define('_SETTINGS_DBLOGIN',                    'mySQL Login a Databáze');
 define('_SETTINGS_UPDATE',                     'Ulo\9eit nastavení');
index 2a84c53..01b5316 100644 (file)
@@ -5,12 +5,12 @@
 // Formerly based on translations by: Dieter Mayer, Holger Laschka, Thorsten Bonck
 // Nucleus version: v1.0-v3.4
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 // START additional added for the german translation of Nucleus CMS 3.40
@@ -667,7 +667,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Datei mit diesem Namen bereits vorhanden. Bitt
 define('_ERROR_LOGINDISALLOWED',       'Sie sind fü;r den Administrationsbereich nicht freigeschaltet. Sie kö;nnen sich als Benutzer anmelden.');
 define('_ERROR_DBCONNECT',                     'Keine Verbindung zum mySQL-Server');
 define('_ERROR_DBSELECT',                      'Nucleus Datenbank nicht gefunden');
-define('_ERROR_NOSUCHLANGUAGE',                'Keine entsprechende Sprachdatei gefunden');
+define('_ERROR_NOSUCHTRANSLATION',             'Keine entsprechende Sprachdatei gefunden');
 define('_ERROR_NOSUCHCATEGORY',                'Keine entsprechende Kategorie vorhanden');
 define('_ERROR_DELETELASTCATEGORY',    'Es muss mindestens eine Kategorie existieren');
 define('_ERROR_DELETEDEFCATEGORY',     'Standard Kategorie kann nicht gelö;scht werden');
@@ -870,7 +870,7 @@ define('_SETTINGS_ALLOWCREATE',             'Besuchern die Einrichtung eines Benutzer-Konto
 define('_SETTINGS_NEWLOGIN',           'Anmelden mit selbst erstelltem Konto gestatten');
 define('_SETTINGS_NEWLOGIN2',          '(gilt nur fü;r neue Benutzer-Konten)');
 define('_SETTINGS_MEMBERMSGS',         'Mitglied-zu-Mitglied-Kommunikation gestatten');
-define('_SETTINGS_LANGUAGE',           'Standard Sprachmodul');
+define('_SETTINGS_LOCALE',             'Standard Sprachmodul');
 define('_SETTINGS_DISABLESITE',                'Seite offline schalten');
 define('_SETTINGS_DBLOGIN',                    'mySQL Anmeldung &amp; Datenbank');
 define('_SETTINGS_UPDATE',                     'Einstellungen speichern');
index 6677520..f220c18 100644 (file)
@@ -5,12 +5,12 @@
 // Formerly based on translations by: Dieter Mayer, Holger Laschka, Thorsten Bonck
 // Nucleus version: v1.0-v3.4
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 // START additional added for the german translation of Nucleus CMS 3.40
@@ -667,7 +667,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Datei mit diesem Namen bereits vorhanden. Bitt
 define('_ERROR_LOGINDISALLOWED',       'Sie sind fü;r den Administrationsbereich nicht freigeschaltet. Sie kö;nnen sich als Benutzer anmelden.');
 define('_ERROR_DBCONNECT',                     'Keine Verbindung zum mySQL-Server');
 define('_ERROR_DBSELECT',                      'Nucleus Datenbank nicht gefunden');
-define('_ERROR_NOSUCHLANGUAGE',                'Keine entsprechende Sprachdatei gefunden');
+define('_ERROR_NOSUCHTRANSLATION',             'Keine entsprechende Sprachdatei gefunden');
 define('_ERROR_NOSUCHCATEGORY',                'Keine entsprechende Kategorie vorhanden');
 define('_ERROR_DELETELASTCATEGORY',    'Es muss mindestens eine Kategorie existieren');
 define('_ERROR_DELETEDEFCATEGORY',     'Standard Kategorie kann nicht gelö;scht werden');
@@ -870,7 +870,7 @@ define('_SETTINGS_ALLOWCREATE',             'Besuchern die Einrichtung eines Benutzer-Konto
 define('_SETTINGS_NEWLOGIN',           'Anmelden mit selbst erstelltem Konto gestatten');
 define('_SETTINGS_NEWLOGIN2',          '(gilt nur fü;r neue Benutzer-Konten)');
 define('_SETTINGS_MEMBERMSGS',         'Mitglied-zu-Mitglied-Kommunikation gestatten');
-define('_SETTINGS_LANGUAGE',           'Standard Sprachmodul');
+define('_SETTINGS_LOCALE',             'Standard Sprachmodul');
 define('_SETTINGS_DISABLESITE',                'Seite offline schalten');
 define('_SETTINGS_DBLOGIN',                    'mySQL Anmeldung &amp; Datenbank');
 define('_SETTINGS_UPDATE',                     'Einstellungen speichern');
index 80a181d..7a36cd7 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Wouter Demuynck
 // Nucleus version: v1.0-v3.4
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefore, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 /**
@@ -297,7 +297,7 @@ define('_GFUNCTIONS_LOGINFAILED_TXT',                               'Login failed for %s');
 define('_GFUNCTIONS_LOGOUT_TXT',                                       '%s is logouted');
 define('_GFUNCTIONS_HEADERSALREADYSENT_FILE',          ' in <code>%s</code> line <code>%s</code>');
 define('_GFUNCTIONS_HEADERSALREADYSENT_TITLE',         ' Page headers already sent');
-define('_GFUNCTIONS_HEADERSALREADYSENT_TXT',           '<p>The page headers have already been sent out%s. This could cause Nucleus not to work in the expected way.</p><p>Usually, this is caused by spaces or newlines at the end of the <code>config.php</code> file, at the end of the language file or at the end of a plugin file. Please check this and try again.</p><p>If you don\'t want to see this error message again, without solving the problem, set <code>$CONF[\'alertOnHeadersSent\']</code> in <code>globalfunctions.php</code> to <code>0</code></p>');
+define('_GFUNCTIONS_HEADERSALREADYSENT_TXT',           '<p>The page headers have already been sent out%s. This could cause Nucleus not to work in the expected way.</p><p>Usually, this is caused by spaces or newlines at the end of the <code>config.php</code> file, at the end of the translation file or at the end of a plugin file. Please check this and try again.</p><p>If you don\'t want to see this error message again, without solving the problem, set <code>$CONF[\'alertOnHeadersSent\']</code> in <code>globalfunctions.php</code> to <code>0</code></p>');
 define('_GFUNCTIONS_PARSEFILE_FILEMISSING',                    'A file is missing');
 define('_GFUNCTIONS_AN_ERROR_OCCURRED',                                'Sorry. An error occurred.');
 define('_GFUNCTIONS_YOU_AERNT_LOGGEDIN',                       "You aren't logged in.");
@@ -957,7 +957,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Another file with that name already exists. Tr
 define('_ERROR_LOGINDISALLOWED',       'Sorry, you\'re not allowed to log in to the admin area. You can log in as another user, though');
 define('_ERROR_DBCONNECT',                     'Could not connect to mySQL server');
 define('_ERROR_DBSELECT',                      'Could not select the nucleus database.');
-define('_ERROR_NOSUCHLANGUAGE',                'No such language file exists');
+define('_ERROR_NOSUCHTRANSLATION',             'No such translation file exists');
 define('_ERROR_NOSUCHCATEGORY',                'No such category exists');
 define('_ERROR_DELETELASTCATEGORY',    'There must at least be one category');
 define('_ERROR_DELETEDEFCATEGORY',     'Cannot delete default category');
@@ -1158,7 +1158,7 @@ define('_SETTINGS_ALLOWCREATE',           'Allow Visitors to Create a Member Account');
 define('_SETTINGS_NEWLOGIN',           'Login Allowed for User-Created accounts');
 define('_SETTINGS_NEWLOGIN2',          '(only goes for newly created accounts)');
 define('_SETTINGS_MEMBERMSGS',         'Allow Member-2-Member Service');
-define('_SETTINGS_LANGUAGE',           'Default Language');
+define('_SETTINGS_LOCALE',             'Default Language');
 define('_SETTINGS_DISABLESITE',                'Disable Site');
 define('_SETTINGS_DBLOGIN',                    'mySQL Login &amp; Database');
 define('_SETTINGS_UPDATE',                     'Update Settings');
index 80a181d..7a36cd7 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Wouter Demuynck
 // Nucleus version: v1.0-v3.4
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefore, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 /**
@@ -297,7 +297,7 @@ define('_GFUNCTIONS_LOGINFAILED_TXT',                               'Login failed for %s');
 define('_GFUNCTIONS_LOGOUT_TXT',                                       '%s is logouted');
 define('_GFUNCTIONS_HEADERSALREADYSENT_FILE',          ' in <code>%s</code> line <code>%s</code>');
 define('_GFUNCTIONS_HEADERSALREADYSENT_TITLE',         ' Page headers already sent');
-define('_GFUNCTIONS_HEADERSALREADYSENT_TXT',           '<p>The page headers have already been sent out%s. This could cause Nucleus not to work in the expected way.</p><p>Usually, this is caused by spaces or newlines at the end of the <code>config.php</code> file, at the end of the language file or at the end of a plugin file. Please check this and try again.</p><p>If you don\'t want to see this error message again, without solving the problem, set <code>$CONF[\'alertOnHeadersSent\']</code> in <code>globalfunctions.php</code> to <code>0</code></p>');
+define('_GFUNCTIONS_HEADERSALREADYSENT_TXT',           '<p>The page headers have already been sent out%s. This could cause Nucleus not to work in the expected way.</p><p>Usually, this is caused by spaces or newlines at the end of the <code>config.php</code> file, at the end of the translation file or at the end of a plugin file. Please check this and try again.</p><p>If you don\'t want to see this error message again, without solving the problem, set <code>$CONF[\'alertOnHeadersSent\']</code> in <code>globalfunctions.php</code> to <code>0</code></p>');
 define('_GFUNCTIONS_PARSEFILE_FILEMISSING',                    'A file is missing');
 define('_GFUNCTIONS_AN_ERROR_OCCURRED',                                'Sorry. An error occurred.');
 define('_GFUNCTIONS_YOU_AERNT_LOGGEDIN',                       "You aren't logged in.");
@@ -957,7 +957,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Another file with that name already exists. Tr
 define('_ERROR_LOGINDISALLOWED',       'Sorry, you\'re not allowed to log in to the admin area. You can log in as another user, though');
 define('_ERROR_DBCONNECT',                     'Could not connect to mySQL server');
 define('_ERROR_DBSELECT',                      'Could not select the nucleus database.');
-define('_ERROR_NOSUCHLANGUAGE',                'No such language file exists');
+define('_ERROR_NOSUCHTRANSLATION',             'No such translation file exists');
 define('_ERROR_NOSUCHCATEGORY',                'No such category exists');
 define('_ERROR_DELETELASTCATEGORY',    'There must at least be one category');
 define('_ERROR_DELETEDEFCATEGORY',     'Cannot delete default category');
@@ -1158,7 +1158,7 @@ define('_SETTINGS_ALLOWCREATE',           'Allow Visitors to Create a Member Account');
 define('_SETTINGS_NEWLOGIN',           'Login Allowed for User-Created accounts');
 define('_SETTINGS_NEWLOGIN2',          '(only goes for newly created accounts)');
 define('_SETTINGS_MEMBERMSGS',         'Allow Member-2-Member Service');
-define('_SETTINGS_LANGUAGE',           'Default Language');
+define('_SETTINGS_LOCALE',             'Default Language');
 define('_SETTINGS_DISABLESITE',                'Disable Site');
 define('_SETTINGS_DBLOGIN',                    'mySQL Login &amp; Database');
 define('_SETTINGS_UPDATE',                     'Update Settings');
index 25282b9..918846a 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Alfonso Sanchez 
 // Nucleus version: v1.0-v3.2
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 // START changed/added after 315 START
@@ -586,7 +586,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Ya existe otro archivo con ese nombre. Intenta
 define('_ERROR_LOGINDISALLOWED',       'Sin permiso para entrar en la administración. Es posible registrarse como otro usuario');
 define('_ERROR_DBCONNECT',                     'No es posible conectar con MySQL server');
 define('_ERROR_DBSELECT',                      'No es posible seleccionar la base de datos de Nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'No existe el archivo para el idioma');
+define('_ERROR_NOSUCHTRANSLATION',             'No existe el archivo para el idioma');
 define('_ERROR_NOSUCHCATEGORY',                'No existe la categoría');
 define('_ERROR_DELETELASTCATEGORY',    'Debe haber al menos una categoría');
 define('_ERROR_DELETEDEFCATEGORY',     'No es posible eliminar la categoría principal');
@@ -787,7 +787,7 @@ define('_SETTINGS_ALLOWCREATE',             'Permitir a los visitantes crear una cuenta de
 define('_SETTINGS_NEWLOGIN',           'Registro permitido para las cuentas creadas por el usuario');
 define('_SETTINGS_NEWLOGIN2',          '(sólo para cuentas nuevas)');
 define('_SETTINGS_MEMBERMSGS',         'Permite un servicio de miembro a miembro');
-define('_SETTINGS_LANGUAGE',           'Idioma por defecto');
+define('_SETTINGS_LOCALE',             'Idioma por defecto');
 define('_SETTINGS_DISABLESITE',                'Deshabilitar web');
 define('_SETTINGS_DBLOGIN',                    'MySQL Registro y base de datos');
 define('_SETTINGS_UPDATE',                     'Actualizar preferencias');
index 9484def..0951ade 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Alfonso Sanchez 
 // Nucleus version: v1.0-v3.2
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 // START changed/added after 315 START
@@ -586,7 +586,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Ya existe otro archivo con ese nombre. Intenta
 define('_ERROR_LOGINDISALLOWED',       'Sin permiso para entrar en la administración. Es posible registrarse como otro usuario');
 define('_ERROR_DBCONNECT',                     'No es posible conectar con MySQL server');
 define('_ERROR_DBSELECT',                      'No es posible seleccionar la base de datos de Nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'No existe el archivo para el idioma');
+define('_ERROR_NOSUCHTRANSLATION',             'No existe el archivo para el idioma');
 define('_ERROR_NOSUCHCATEGORY',                'No existe la categoría');
 define('_ERROR_DELETELASTCATEGORY',    'Debe haber al menos una categoría');
 define('_ERROR_DELETEDEFCATEGORY',     'No es posible eliminar la categoría principal');
@@ -787,7 +787,7 @@ define('_SETTINGS_ALLOWCREATE',             'Permitir a los visitantes crear una cuenta de
 define('_SETTINGS_NEWLOGIN',           'Registro permitido para las cuentas creadas por el usuario');
 define('_SETTINGS_NEWLOGIN2',          '(sólo para cuentas nuevas)');
 define('_SETTINGS_MEMBERMSGS',         'Permite un servicio de miembro a miembro');
-define('_SETTINGS_LANGUAGE',           'Idioma por defecto');
+define('_SETTINGS_LOCALE',             'Idioma por defecto');
 define('_SETTINGS_DISABLESITE',                'Deshabilitar web');
 define('_SETTINGS_DBLOGIN',                    'MySQL Registro y base de datos');
 define('_SETTINGS_UPDATE',                     'Actualizar preferencias');
index 1693df2..0ddd485 100644 (file)
@@ -4,12 +4,12 @@
 // Author:kambiz mozaffari (kami_kamo@yahoo.com)\r
 // Nucleus version: v1.0-v2.5\r
 //\r
-// Please note: if you want to translate this file to your own language, be aware\r
+// Please note: if you want to translate this file to your own locale, be aware\r
 // that in a next Nucleus version, new variables might be added and some other ones\r
 // might be deleted. Therefor, it's important to list the Nucleus version for which \r
 // the file was written in your document.\r
 //\r
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)\r
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)\r
 // and will be available for download (with proper credit to the author, of course)\r
 \r
 // START introduced after v2.0 START\r
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Another file with that name already exists. Tr
 define('_ERROR_LOGINDISALLOWED',       'Sorry, you\'re not allowed to log in to the admin area. You can log in as another user, though');\r
 define('_ERROR_DBCONNECT',                     'Could not connect to mySQL server');\r
 define('_ERROR_DBSELECT',                      'Could not select the nucleus database.');\r
-define('_ERROR_NOSUCHLANGUAGE',                'No such language file exists');\r
+define('_ERROR_NOSUCHTRANSLATION',             'No such translation file exists');\r
 define('_ERROR_NOSUCHCATEGORY',                'No such category exists');\r
 define('_ERROR_DELETELASTCATEGORY',    'There must at least be one category');\r
 define('_ERROR_DELETEDEFCATEGORY',     'Cannot delete default category');\r
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             'اجازه به بازديد كنندگان ب
 define('_SETTINGS_NEWLOGIN',           'Login Allowed for User-Created accounts');\r
 define('_SETTINGS_NEWLOGIN2',          '(only goes for newly created accounts)');\r
 define('_SETTINGS_MEMBERMSGS',         'Allow Member-2-Member Service');\r
-define('_SETTINGS_LANGUAGE',           'زبان پيش فرض');\r
+define('_SETTINGS_LOCALE',             'زبان پيش فرض');\r
 define('_SETTINGS_DISABLESITE',                'غيرفعال سازي سايت');\r
 define('_SETTINGS_DBLOGIN',                    'mySQL Login &amp; Database');\r
 define('_SETTINGS_UPDATE',                     'به روز رساني تنظيم ها');\r
index 48cd09d..93613ce 100644 (file)
@@ -6,12 +6,12 @@
 // and Jussi Josefsson (http://www.nominaali.com).
 // Nucleus version: v1.0-v3.2 
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefore, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 // START changed/added after 3.15 START
@@ -590,7 +590,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Toinen samanniminen tiedosto on jo olemassa. K
 define('_ERROR_LOGINDISALLOWED',       'Valitettavasti et ole oikeutettu kirjautumaan järjestelmänvalvoja alueelle. Toisaalta, voit kirjautua sisään toisena käyttäjänä');
 define('_ERROR_DBCONNECT',                     'MySQL-palvelimeen ei saatu yhteyttä');
 define('_ERROR_DBSELECT',                      'Nucleus tietokantaa ei voitu valita.');
-define('_ERROR_NOSUCHLANGUAGE',                'Kyseistä kielitiedostoa ei ole olemassa');
+define('_ERROR_NOSUCHTRANSLATION',             'Kyseistä kielitiedostoa ei ole olemassa');
 define('_ERROR_NOSUCHCATEGORY',                'Kyseistä kategoriaa ei ole olemassa');
 define('_ERROR_DELETELASTCATEGORY',    'Ainakin yksi kategoria täytyy olla olemassa');
 define('_ERROR_DELETEDEFCATEGORY',     'Vakiokategoriaa ei voi tuhota');
@@ -791,7 +791,7 @@ define('_SETTINGS_ALLOWCREATE',             'Salli k
 define('_SETTINGS_NEWLOGIN',           'Sisäänkirjautuminen sallittu käyttäjän luomilla tileillä');
 define('_SETTINGS_NEWLOGIN2',          '(koskee vain vasta luotuja tilejä)');
 define('_SETTINGS_MEMBERMSGS',         'Salli käyttäjältä-käyttäjälle palvelu');
-define('_SETTINGS_LANGUAGE',           'Vakiokieli');
+define('_SETTINGS_LOCALE',             'Vakiokieli');
 define('_SETTINGS_DISABLESITE',                'Sivusto pois käytöstä');
 define('_SETTINGS_DBLOGIN',                    'MySQL -kirjautuminen &amp; -tietokanta');
 define('_SETTINGS_UPDATE',                     'Päivitä asetukset');
index 2981c4a..4747de5 100644 (file)
@@ -6,12 +6,12 @@
 // and Jussi Josefsson (http://www.nominaali.com).
 // Nucleus version: v1.0-v3.2 
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefore, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 // START changed/added after 3.15 START
@@ -590,7 +590,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Toinen samanniminen tiedosto on jo olemassa. K
 define('_ERROR_LOGINDISALLOWED',       'Valitettavasti et ole oikeutettu kirjautumaan järjestelmänvalvoja alueelle. Toisaalta, voit kirjautua sisään toisena käyttäjänä');
 define('_ERROR_DBCONNECT',                     'MySQL-palvelimeen ei saatu yhteyttä');
 define('_ERROR_DBSELECT',                      'Nucleus tietokantaa ei voitu valita.');
-define('_ERROR_NOSUCHLANGUAGE',                'Kyseistä kielitiedostoa ei ole olemassa');
+define('_ERROR_NOSUCHTRANSLATION',             'Kyseistä kielitiedostoa ei ole olemassa');
 define('_ERROR_NOSUCHCATEGORY',                'Kyseistä kategoriaa ei ole olemassa');
 define('_ERROR_DELETELASTCATEGORY',    'Ainakin yksi kategoria täytyy olla olemassa');
 define('_ERROR_DELETEDEFCATEGORY',     'Vakiokategoriaa ei voi tuhota');
@@ -791,7 +791,7 @@ define('_SETTINGS_ALLOWCREATE',             'Salli käyttäjien luoda käyttäjätili');
 define('_SETTINGS_NEWLOGIN',           'Sisäänkirjautuminen sallittu käyttäjän luomilla tileillä');
 define('_SETTINGS_NEWLOGIN2',          '(koskee vain vasta luotuja tilejä)');
 define('_SETTINGS_MEMBERMSGS',         'Salli käyttäjältä-käyttäjälle palvelu');
-define('_SETTINGS_LANGUAGE',           'Vakiokieli');
+define('_SETTINGS_LOCALE',             'Vakiokieli');
 define('_SETTINGS_DISABLESITE',                'Sivusto pois käytöstä');
 define('_SETTINGS_DBLOGIN',                    'MySQL -kirjautuminen &amp; -tietokanta');
 define('_SETTINGS_UPDATE',                     'Päivitä asetukset');
index b1fe8ed..1c927df 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Papachango <pfffouitt@yahoo.fr> (updated by Julien Pauthier <julienpauthier@yahoo.fr>)
 // Nucleus version: v1.0-v3.2
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 // START changed/added after 3.15 START
@@ -584,7 +584,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Un fichier de ce nom existe d
 define('_ERROR_LOGINDISALLOWED',       'Désolé, vous n\'êtes pas autorisé à vous connecter à la zone admin. Vous pouvez vous connecter sous un autre nom');
 define('_ERROR_DBCONNECT',             'Impossible de se connecter au serveur mySQL');
 define('_ERROR_DBSELECT',              'Impossible de sélectionner la base Nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Fichier de langue indisponible');
+define('_ERROR_NOSUCHTRANSLATION',             'Fichier de langue indisponible');
 define('_ERROR_NOSUCHCATEGORY',                'Thème indisponible');
 define('_ERROR_DELETELASTCATEGORY',    'Il doit y avoir au moins un thème');
 define('_ERROR_DELETEDEFCATEGORY',     'Impossible d\'effacerle thème par défaut');
@@ -785,7 +785,7 @@ define('_SETTINGS_ALLOWCREATE',             'Autoriser les visiteurs 
 define('_SETTINGS_NEWLOGIN',           'Connexion autorisée pour les comptes créés par des utilisateurs');
 define('_SETTINGS_NEWLOGIN2',          '(ne vaut que pour les comptes récemment créés)');
 define('_SETTINGS_MEMBERMSGS',         'Autoriser les services de participant à participant');
-define('_SETTINGS_LANGUAGE',           'Langue par défaut');
+define('_SETTINGS_LOCALE',             'Langue par défaut');
 define('_SETTINGS_DISABLESITE',                'Désactiver le site');
 define('_SETTINGS_DBLOGIN',            'mySQL Login &amp; Database');
 define('_SETTINGS_UPDATE',             'Mettre à jour les réglages');
index c47e446..68b95c0 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Papachango <pfffouitt@yahoo.fr> (updated by Julien Pauthier <julienpauthier@yahoo.fr>)
 // Nucleus version: v1.0-v3.2
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us and will be made
+// Fully translated file can be sent to us and will be made
 // available for download (with proper credit to the author, of course)
 
 // START changed/added after 3.15 START
@@ -584,7 +584,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Un fichier de ce nom existe déjà. Essayez de
 define('_ERROR_LOGINDISALLOWED',       'Désolé, vous n\'êtes pas autorisé à vous connecter à la zone admin. Vous pouvez vous connecter sous un autre nom');
 define('_ERROR_DBCONNECT',             'Impossible de se connecter au serveur mySQL');
 define('_ERROR_DBSELECT',              'Impossible de sélectionner la base Nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Fichier de langue indisponible');
+define('_ERROR_NOSUCHTRANSLATION',             'Fichier de langue indisponible');
 define('_ERROR_NOSUCHCATEGORY',                'Thème indisponible');
 define('_ERROR_DELETELASTCATEGORY',    'Il doit y avoir au moins un thème');
 define('_ERROR_DELETEDEFCATEGORY',     'Impossible d\'effacerle thème par défaut');
@@ -785,7 +785,7 @@ define('_SETTINGS_ALLOWCREATE',             'Autoriser les visiteurs à créer un compte');
 define('_SETTINGS_NEWLOGIN',           'Connexion autorisée pour les comptes créés par des utilisateurs');
 define('_SETTINGS_NEWLOGIN2',          '(ne vaut que pour les comptes récemment créés)');
 define('_SETTINGS_MEMBERMSGS',         'Autoriser les services de participant à participant');
-define('_SETTINGS_LANGUAGE',           'Langue par défaut');
+define('_SETTINGS_LOCALE',             'Langue par défaut');
 define('_SETTINGS_DISABLESITE',                'Désactiver le site');
 define('_SETTINGS_DBLOGIN',            'mySQL Login &amp; Database');
 define('_SETTINGS_UPDATE',             'Mettre à jour les réglages');
index 2e9e15a..6b94110 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Xes García Santamarina (xes@afragamaldita.net)
 // Nucleus version: v1.0-v2.0
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Xa existe otro arquivo con ese nome. Intente r
 define('_ERROR_LOGINDISALLOWED',       'Sen permiso para entrar na administración. É posible rexistrarse como outro usuario');
 define('_ERROR_DBCONNECT',                     'Non é posible conectar con MySQL server');
 define('_ERROR_DBSELECT',                      'Non é posible seleccionala base de datos de Nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Non existe o arquivo para o idioma');
+define('_ERROR_NOSUCHTRANSLATION',             'Non existe o arquivo para o idioma');
 define('_ERROR_NOSUCHCATEGORY',                'Non existe a categoría');
 define('_ERROR_DELETELASTCATEGORY',    'Debe de haber polo menos una categoría');
 define('_ERROR_DELETEDEFCATEGORY',     'Non é posible eliminala categoría principal');
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             'Permitir 
 define('_SETTINGS_NEWLOGIN',           'Rexistro permitido para as contas creadas polo usuario');
 define('_SETTINGS_NEWLOGIN2',          '(só para contas novas)');
 define('_SETTINGS_MEMBERMSGS',         'Permite un servicio de membro a membro');
-define('_SETTINGS_LANGUAGE',           'Idioma por defecto');
+define('_SETTINGS_LOCALE',             'Idioma por defecto');
 define('_SETTINGS_DISABLESITE',                'Deshabilitar web');
 define('_SETTINGS_DBLOGIN',                    'MySQL Rexistro e base de datos');
 define('_SETTINGS_UPDATE',                     'Actualizar preferencias');
index be6b593..e986962 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Xes García Santamarina (xes@afragamaldita.net)
 // Nucleus version: v1.0-v2.0
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Xa existe otro arquivo con ese nome. Intente r
 define('_ERROR_LOGINDISALLOWED',       'Sen permiso para entrar na administración. É posible rexistrarse como outro usuario');
 define('_ERROR_DBCONNECT',                     'Non é posible conectar con MySQL server');
 define('_ERROR_DBSELECT',                      'Non é posible seleccionala base de datos de Nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Non existe o arquivo para o idioma');
+define('_ERROR_NOSUCHTRANSLATION',             'Non existe o arquivo para o idioma');
 define('_ERROR_NOSUCHCATEGORY',                'Non existe a categoría');
 define('_ERROR_DELETELASTCATEGORY',    'Debe de haber polo menos una categoría');
 define('_ERROR_DELETEDEFCATEGORY',     'Non é posible eliminala categoría principal');
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             'Permitir ós visitantes crear unha conta de me
 define('_SETTINGS_NEWLOGIN',           'Rexistro permitido para as contas creadas polo usuario');
 define('_SETTINGS_NEWLOGIN2',          '(só para contas novas)');
 define('_SETTINGS_MEMBERMSGS',         'Permite un servicio de membro a membro');
-define('_SETTINGS_LANGUAGE',           'Idioma por defecto');
+define('_SETTINGS_LOCALE',             'Idioma por defecto');
 define('_SETTINGS_DISABLESITE',                'Deshabilitar web');
 define('_SETTINGS_DBLOGIN',                    'MySQL Rexistro e base de datos');
 define('_SETTINGS_UPDATE',                     'Actualizar preferencias');
index c03cffb..7a2d9eb 100644 (file)
@@ -577,7 +577,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Egy f
 define('_ERROR_LOGINDISALLOWED',       'Sajnálom, nem engedélyezett az adminisztrációs területre való belépés. Jelentkezz be felhasználóként.');
 define('_ERROR_DBCONNECT',                     'Nem tudok kapcsolódni a mySQL szerverhez.');
 define('_ERROR_DBSELECT',                      'Nem látom a nucleus adatbázisát.');
-define('_ERROR_NOSUCHLANGUAGE',                'Nem létezõ nelvi fájl!');
+define('_ERROR_NOSUCHTRANSLATION',             'Nem létezõ nelvi fájl!');
 define('_ERROR_NOSUCHCATEGORY',                'Nem létezõ kategória!');
 define('_ERROR_DELETELASTCATEGORY',    'Egy kategóriának léteznie kell!');
 define('_ERROR_DELETEDEFCATEGORY',     'Az alap kategóriát nem lehet törölni!');
@@ -778,7 +778,7 @@ define('_SETTINGS_ALLOWCREATE',             'Enged
 define('_SETTINGS_NEWLOGIN',           'Belépés engedélyezése felhasználók által létrehozott felhasználói fiókokhoz.');
 define('_SETTINGS_NEWLOGIN2',          '(Csak az újonnan létrehozott felhasználói fiókokhoz jár)');
 define('_SETTINGS_MEMBERMSGS',         'Tag a tagnak szolgáltatás engedélezése');
-define('_SETTINGS_LANGUAGE',           'Alap nyelv');
+define('_SETTINGS_LOCALE',             'Alap nyelv');
 define('_SETTINGS_DISABLESITE',                'Oldal tiltása');
 define('_SETTINGS_DBLOGIN',                    'mySQL belépés &amp; adatbázis');
 define('_SETTINGS_UPDATE',                     'Beállítások frissítése');
index e7ec97b..d460b90 100644 (file)
@@ -577,7 +577,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Egy fájl már létezik ezzel a névvel. Nevez
 define('_ERROR_LOGINDISALLOWED',       'Sajnálom, nem engedélyezett az adminisztrációs területre való belépés. Jelentkezz be felhasználóként.');
 define('_ERROR_DBCONNECT',                     'Nem tudok kapcsolódni a mySQL szerverhez.');
 define('_ERROR_DBSELECT',                      'Nem látom a nucleus adatbázisát.');
-define('_ERROR_NOSUCHLANGUAGE',                'Nem létező nelvi fájl!');
+define('_ERROR_NOSUCHTRANSLATION',             'Nem létező nelvi fájl!');
 define('_ERROR_NOSUCHCATEGORY',                'Nem létező kategória!');
 define('_ERROR_DELETELASTCATEGORY',    'Egy kategóriának léteznie kell!');
 define('_ERROR_DELETEDEFCATEGORY',     'Az alap kategóriát nem lehet törölni!');
@@ -778,7 +778,7 @@ define('_SETTINGS_ALLOWCREATE',             'Engedély a látogatók számára felhasznál
 define('_SETTINGS_NEWLOGIN',           'Belépés engedélyezése felhasználók által létrehozott felhasználói fiókokhoz.');
 define('_SETTINGS_NEWLOGIN2',          '(Csak az újonnan létrehozott felhasználói fiókokhoz jár)');
 define('_SETTINGS_MEMBERMSGS',         'Tag a tagnak szolgáltatás engedélezése');
-define('_SETTINGS_LANGUAGE',           'Alap nyelv');
+define('_SETTINGS_LOCALE',             'Alap nyelv');
 define('_SETTINGS_DISABLESITE',                'Oldal tiltása');
 define('_SETTINGS_DBLOGIN',                    'mySQL belépés &amp; adatbázis');
 define('_SETTINGS_UPDATE',                     'Beállítások frissítése');
index dfff335..787b38b 100644 (file)
@@ -6,12 +6,12 @@
 // Previous Previous Author: Antonio Fragola - MrShark (http://www.mrshark.it)
 // Nucleus version: v3.2
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START changed/added after 315 START
@@ -586,7 +586,7 @@ define('_ERROR_UPLOADDUPLICATE',    'E\' gi&agrave; present eun altro file con ques
 define('_ERROR_LOGINDISALLOWED',       'Non sei ablitato all\'accesso all\'area amministrativa del blog. Puoi connetterti come altro utente');
 define('_ERROR_DBCONNECT',                     'Non &egrave; possibile connettersi al server mySQL');
 define('_ERROR_DBSELECT',                      'Non &egrave; possibile selezionare il database di Nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Il file della lingua non esiste');
+define('_ERROR_NOSUCHTRANSLATION',             'Il file della lingua non esiste');
 define('_ERROR_NOSUCHCATEGORY',                'La categoria non esiste');
 define('_ERROR_DELETELASTCATEGORY',    'Ci deve essere almeno una categoria');
 define('_ERROR_DELETEDEFCATEGORY',     'Non puoi cancellare la categoria di default');
@@ -787,7 +787,7 @@ define('_SETTINGS_ALLOWCREATE',             'Consenti ai visitatori di creare un account ut
 define('_SETTINGS_NEWLOGIN',           'Abilita il login all\'area amministrativa per gli account creati dagli utenti');
 define('_SETTINGS_NEWLOGIN2',          '(questa impostazione verr&agrave; applicata solo ai nuovi account)');
 define('_SETTINGS_MEMBERMSGS',         'Abilita i servizi tra i membri del blog');
-define('_SETTINGS_LANGUAGE',           'Linguaggio di default');
+define('_SETTINGS_LOCALE',             'Linguaggio di default');
 define('_SETTINGS_DISABLESITE',                'Disabilita il weblog');
 define('_SETTINGS_DBLOGIN',                    'Connessione mySQL &amp; database');
 define('_SETTINGS_UPDATE',                     'Aggiorna le impostazioni');
index f436466..5fc7173 100644 (file)
@@ -6,12 +6,12 @@
 // Previous Previous Author: Antonio Fragola - MrShark (http://www.mrshark.it)
 // Nucleus version: v3.2
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START changed/added after 315 START
@@ -586,7 +586,7 @@ define('_ERROR_UPLOADDUPLICATE',    'E\' gi&agrave; present eun altro file con ques
 define('_ERROR_LOGINDISALLOWED',       'Non sei ablitato all\'accesso all\'area amministrativa del blog. Puoi connetterti come altro utente');
 define('_ERROR_DBCONNECT',                     'Non &egrave; possibile connettersi al server mySQL');
 define('_ERROR_DBSELECT',                      'Non &egrave; possibile selezionare il database di Nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Il file della lingua non esiste');
+define('_ERROR_NOSUCHTRANSLATION',             'Il file della lingua non esiste');
 define('_ERROR_NOSUCHCATEGORY',                'La categoria non esiste');
 define('_ERROR_DELETELASTCATEGORY',    'Ci deve essere almeno una categoria');
 define('_ERROR_DELETEDEFCATEGORY',     'Non puoi cancellare la categoria di default');
@@ -787,7 +787,7 @@ define('_SETTINGS_ALLOWCREATE',             'Consenti ai visitatori di creare un account ut
 define('_SETTINGS_NEWLOGIN',           'Abilita il login all\'area amministrativa per gli account creati dagli utenti');
 define('_SETTINGS_NEWLOGIN2',          '(questa impostazione verr&agrave; applicata solo ai nuovi account)');
 define('_SETTINGS_MEMBERMSGS',         'Abilita i servizi tra i membri del blog');
-define('_SETTINGS_LANGUAGE',           'Linguaggio di default');
+define('_SETTINGS_LOCALE',             'Linguaggio di default');
 define('_SETTINGS_DISABLESITE',                'Disabilita il weblog');
 define('_SETTINGS_DBLOGIN',                    'Connessione mySQL &amp; database');
 define('_SETTINGS_UPDATE',                     'Aggiorna le impostazioni');
index 70a5814..b62a074 100644 (file)
@@ -6,12 +6,12 @@
 // Modified by: shizuki (shizuki@kinezumi.net)\r
 // Nucleus version: v1.0-v3.5\r
 //\r
-// Please note: if you want to translate this file to your own language, be aware\r
+// Please note: if you want to translate this file to your own locale, be aware\r
 // that in a next Nucleus version, new variables might be added and some other ones\r
 // might be deleted. Therefor, it's important to list the Nucleus version for which\r
 // the file was written in your document.\r
 //\r
-// Fully translated language file can be sent to us and will be made\r
+// Fully translated file can be sent to us and will be made\r
 // available for download (with proper credit to the author, of course)\r
 \r
 // Note for Japanese users\r
@@ -976,7 +976,7 @@ define('_ERROR_UPLOADDUPLICATE',                    'Ʊ
 define('_ERROR_LOGINDISALLOWED',                       '´ÉÍýÎΰè¤Ø¤Î¥í¥°¥¤¥ó¤¬Ç§¤á¤é¤ì¤Æ¤¤¤Þ¤»¤ó¡£¤â¤·¤¢¤Ê¤¿¤¬´ÉÍý¥æ¡¼¥¶¡¼¤Î¥¢¥«¥¦¥ó¥È¤ò»ý¤Ã¤Æ¤¤¤ë¤Î¤Ê¤é¡¢´ÉÍý¥æ¡¼¥¶¡¼¤È¤·¤Æ¥í¥°¥¤¥ó¤·¤Ê¤ª¤·¤Æ¤¯¤À¤µ¤¤¡£');\r
 define('_ERROR_DBCONNECT',                                     'MySQL¥µ¡¼¥Ð¤ËÀܳ¤Ç¤­¤Þ¤»¤ó');\r
 define('_ERROR_DBSELECT',                                      'Nucleus¤¬»ÈÍѤ¹¤ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤òÁªÂò¤Ç¤­¤Þ¤»¤ó¡£');\r
-define('_ERROR_NOSUCHLANGUAGE',                                '»ØÄꤵ¤ì¤¿¸À¸ì¥Õ¥¡¥¤¥ë¤Ï¸ºß¤·¤Þ¤»¤ó¡£');\r
+define('_ERROR_NOSUCHTRANSLATION',                             '»ØÄꤵ¤ì¤¿¸À¸ì¥Õ¥¡¥¤¥ë¤Ï¸ºß¤·¤Þ¤»¤ó¡£');\r
 define('_ERROR_NOSUCHCATEGORY',                                '»ØÄꤵ¤ì¤¿¥«¥Æ¥´¥ê¡¼¤Ï¸ºß¤·¤Þ¤»¤ó¡£');\r
 define('_ERROR_DELETELASTCATEGORY',                    '¥«¥Æ¥´¥ê¡¼¤òºÇÄã°ì¤Ä¤ÏÀßÄꤷ¤Æ¤¯¤À¤µ¤¤¡£');\r
 define('_ERROR_DELETEDEFCATEGORY',                     '´ûÄê¤Î¥«¥Æ¥´¥ê¡¼¤Ïºï½ü¤Ç¤­¤Þ¤»¤ó¡£');\r
@@ -1177,7 +1177,7 @@ define('_SETTINGS_ALLOWCREATE',                           '
 define('_SETTINGS_NEWLOGIN',                           '¥Ó¥¸¥¿¡¼¤¬ºîÀ®¤·¤¿¥¢¥«¥¦¥ó¥È¤Ç¤Î¥í¥°¥¤¥ó¤òºîÀ®Ä¾¸å¤Ë²Äǽ¤Ë¤¹¤ë');\r
 define('_SETTINGS_NEWLOGIN2',                          '(¿·¤·¤¯ºîÀ®¤µ¤ì¤¿¥¢¥«¥¦¥ó¥È¤Î¤ß)');\r
 define('_SETTINGS_MEMBERMSGS',                         '¥á¥ó¥Ð¡¼´Ö¥µ¡¼¥Ó¥¹¤ò²Äǽ¤Ë¤¹¤ë');\r
-define('_SETTINGS_LANGUAGE',                           '»ÈÍѤ¹¤ë¸À¸ì');\r
+define('_SETTINGS_LOCALE',                             '»ÈÍѤ¹¤ë¸À¸ì');\r
 define('_SETTINGS_DISABLESITE',                                '¥µ¥¤¥È¤òÊĺ¿¤·¡¢»ØÄê¤ÎURL¤ËžÁ÷¤¹¤ë¡ÊÈó¾ï»þÍÑ¡Ë');\r
 define('_SETTINGS_DBLOGIN',                                    'MySQL ¥í¥°¥¤¥ó &amp; ¥Ç¡¼¥¿¥Ù¡¼¥¹');\r
 define('_SETTINGS_UPDATE',                                     'ÀßÄê¤Î¹¹¿·');\r
index 4d17890..9417bd4 100644 (file)
@@ -1,17 +1,17 @@
 <?php\r
-// Japanese (UTF-8) Nucleus Language File\r
+// Japanese (UTF-8) Nucleus locale File\r
 //\r
 // Author: chrome (chrome@cgi.no-ip.org)\r
 // Modified by: Osamu Higuchi (osamu@higuchi.com)\r
 // Modified by: shizuki (shizuki@kinezumi.net)\r
 // Nucleus version: v1.0-v3.5\r
 //\r
-// Please note: if you want to translate this file to your own language, be aware\r
+// Please note: if you want to translate this file to your own locale, be aware\r
 // that in a next Nucleus version, new variables might be added and some other ones\r
 // might be deleted. Therefor, it's important to list the Nucleus version for which\r
 // the file was written in your document.\r
 //\r
-// Fully translated language file can be sent to us and will be made\r
+// Fully translated locale file can be sent to us and will be made\r
 // available for download (with proper credit to the author, of course)\r
 \r
 // Note for Japanese users\r
@@ -20,7 +20,7 @@
 \r
 \r
 /**\r
- * Japanese UTF-8 Nucleus Language File\r
+ * Japanese UTF-8 Nucleus Locale File\r
  *\r
  * @license http://nucleuscms.org/license.txt GNU General Public License\r
  * @copyright Copyright (C) 2002-2009 The NucleusCMS Japanチーム\r
@@ -976,7 +976,7 @@ define('_ERROR_UPLOADDUPLICATE',                    '同じ名前のファイルが既に存在
 define('_ERROR_LOGINDISALLOWED',                       '管理領域へのログインが認められていません。もしあなたが管理ユーザーのアカウントを持っているのなら、管理ユーザーとしてログインしなおしてください。');\r
 define('_ERROR_DBCONNECT',                                     'MySQLサーバに接続できません');\r
 define('_ERROR_DBSELECT',                                      'Nucleusが使用するデータベースを選択できません。');\r
-define('_ERROR_NOSUCHLANGUAGE',                                '指定された言語ファイルは存在しません。');\r
+define('_ERROR_NOSUCHTRANSLATION',                             '指定された言語ファイルは存在しません。');\r
 define('_ERROR_NOSUCHCATEGORY',                                '指定されたカテゴリーは存在しません。');\r
 define('_ERROR_DELETELASTCATEGORY',                    'カテゴリーを最低一つは設定してください。');\r
 define('_ERROR_DELETEDEFCATEGORY',                     '既定のカテゴリーは削除できません。');\r
@@ -1177,7 +1177,7 @@ define('_SETTINGS_ALLOWCREATE',                           'ビジターによるメンバーアカウ
 define('_SETTINGS_NEWLOGIN',                           'ビジターが作成したアカウントでのログインを作成直後に可能にする');\r
 define('_SETTINGS_NEWLOGIN2',                          '(新しく作成されたアカウントのみ)');\r
 define('_SETTINGS_MEMBERMSGS',                         'メンバー間サービスを可能にする');\r
-define('_SETTINGS_LANGUAGE',                           '使用する言語');\r
+define('_SETTINGS_LOCALE',                             '使用するロケール');\r
 define('_SETTINGS_DISABLESITE',                                'サイトを閉鎖し、指定のURLに転送する(非常時用)');\r
 define('_SETTINGS_DBLOGIN',                                    'MySQL ログイン &amp; データベース');\r
 define('_SETTINGS_UPDATE',                                     '設定の更新');\r
index 91c6346..9b86362 100644 (file)
@@ -547,7 +547,7 @@ define('_ERROR_UPLOADDUPLICATE',    '
 define('_ERROR_LOGINDISALLOWED',       '°ü¸®ÀÚ ¿µ¿ª¿¡´Â µé¾î°¥ ¼ö ¾ø½À´Ï´Ù. ÇÏÁö¸¸ ´Ù¸¥ À¯Àú·Î´Â ·Î±×ÀÎÇÒ ¼ö ÀÖ½À´Ï´Ù');
 define('_ERROR_DBCONNECT',                     'MySQL ¼­¹ö¿¡ ¿¬°áÇÏÁö ¸øÇß½À´Ï´Ù');
 define('_ERROR_DBSELECT',                      'Nucleus µ¥ÀÌÅͺ£À̽º¸¦ ¼±ÅÃÇÏÁö ¸øÇß½À´Ï´Ù.');
-define('_ERROR_NOSUCHLANGUAGE',                '±×·± ¾ð¾î ÆÄÀÏÀº ¾ø½À´Ï´Ù');
+define('_ERROR_NOSUCHTRANSLATION',             '±×·± ¾ð¾î ÆÄÀÏÀº ¾ø½À´Ï´Ù');
 define('_ERROR_NOSUCHCATEGORY',                '±×·± Ä«Å×°í¸®´Â ¾ø½À´Ï´Ù');
 define('_ERROR_DELETELASTCATEGORY',    'Ä«Å×°í¸®°¡ Àû¾îµµ ÇÑ °³´Â ÀÖ¾î¾ßÇÕ´Ï´Ù');
 define('_ERROR_DELETEDEFCATEGORY',     '±âº»¼³Á¤ Ä«Å×°í¸®´Â »èÁ¦ÇÒ ¼ö ¾ø½À´Ï´Ù');
@@ -748,7 +748,7 @@ define('_SETTINGS_ALLOWCREATE',             '
 define('_SETTINGS_NEWLOGIN',           '¹æ¹®ÀÚ°¡ »ý¼ºÇÑ °èÁ¤À¸·Î ·Î±×ÀΠ°¡´É?');
 define('_SETTINGS_NEWLOGIN2',          '(»õ·Î ¸¸µç °èÁ¤¿¡¸¸ ÇØ´ç)');
 define('_SETTINGS_MEMBERMSGS',         'ȸ¿ø°£ ¼­ºñ½º °¡´É');
-define('_SETTINGS_LANGUAGE',           '±âº»¼³Á¤ ¾ð¾î');
+define('_SETTINGS_LOCALE',             '±âº»¼³Á¤ ¾ð¾î');
 define('_SETTINGS_DISABLESITE',                '»çÀÌÆ® ´Ý±â');
 define('_SETTINGS_DBLOGIN',                    'mySQL ·Î±×ÀΠ& µ¥ÀÌÅͺ£À̽º');
 define('_SETTINGS_UPDATE',                     '¼³Á¤ °»½Å');
index f04795d..49483da 100644 (file)
@@ -547,7 +547,7 @@ define('_ERROR_UPLOADDUPLICATE',    '같은 이름의 파일이 이미 존재합니
 define('_ERROR_LOGINDISALLOWED',       '관리자 영역에는 들어갈 수 없습니다. 하지만 다른 유저로는 로그인할 수 있습니다');\r
 define('_ERROR_DBCONNECT',                     'MySQL 서버에 연결하지 못했습니다');\r
 define('_ERROR_DBSELECT',                      'Nucleus 데이터베이스를 선택하지 못했습니다.');\r
-define('_ERROR_NOSUCHLANGUAGE',                '그런 언어 파일은 없습니다');\r
+define('_ERROR_NOSUCHTRANSLATION',             '그런 언어 파일은 없습니다');\r
 define('_ERROR_NOSUCHCATEGORY',                '그런 카테고리는 없습니다');\r
 define('_ERROR_DELETELASTCATEGORY',    '카테고리가 적어도 한 개는 있어야합니다');\r
 define('_ERROR_DELETEDEFCATEGORY',     '기본설정 카테고리는 삭제할 수 없습니다');\r
@@ -748,7 +748,7 @@ define('_SETTINGS_ALLOWCREATE',             '방문자가 회원 계정 생성 가능?');
 define('_SETTINGS_NEWLOGIN',           '방문자가 생성한 계정으로 로그인 가능?');\r
 define('_SETTINGS_NEWLOGIN2',          '(새로 만든 계정에만 해당)');\r
 define('_SETTINGS_MEMBERMSGS',         '회원간 서비스 가능');\r
-define('_SETTINGS_LANGUAGE',           '기본설정 언어');\r
+define('_SETTINGS_LOCALE',             '기본설정 언어');\r
 define('_SETTINGS_DISABLESITE',                '사이트 닫기');\r
 define('_SETTINGS_DBLOGIN',                    'mySQL 로그인 & 데이터베이스');\r
 define('_SETTINGS_UPDATE',                     '설정 갱신');\r
index 24e00c5..e9f30bc 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Kaspars Priedols (house@tvertne.nu)
 // Nucleus version: v1.0-v2.0
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -474,7 +474,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Fails ar 
 define('_ERROR_LOGINDISALLOWED',    'Piedod, tev nav dota atïauja ðeit ârdîties kâ adminam. Bet vismaz vari padarboties kâ dalîbnieks. Uzraksti kaut ko labu');
 define('_ERROR_DBCONNECT',            'Hm, mySQL serveris nokâries? Piezvani adminam');
 define('_ERROR_DBSELECT',            'Hm, problçma ar blogu datu bâzi.');
-define('_ERROR_NOSUCHLANGUAGE',        'Hm, problçma ar valodu failu (nav atrasts)');
+define('_ERROR_NOSUCHTRANSLATION',        'Hm, problçma ar valodu failu (nav atrasts)');
 define('_ERROR_NOSUCHCATEGORY',        'Hm, sadaïa netika atrasta');
 define('_ERROR_DELETELASTCATEGORY',    'Jâbût vismaz vienai sadaïai');
 define('_ERROR_DELETEDEFCATEGORY',    'Pamatsadaïu nedrîkst dzçst');
@@ -675,7 +675,7 @@ define('_SETTINGS_ALLOWCREATE',        'At
 define('_SETTINGS_NEWLOGIN',        'Atïaut pieslçgties kâ administratoram uzreiz pçc reìistrçðanâs');
 define('_SETTINGS_NEWLOGIN2',        '(tikai jaunizveidotiem)');
 define('_SETTINGS_MEMBERMSGS',        'Atïaut izmantot dalîbnieks-dalîbniekam servisu');
-define('_SETTINGS_LANGUAGE',        'Valoda');
+define('_SETTINGS_LOCALE',        'Valoda');
 define('_SETTINGS_DISABLESITE',        'Apstâdinât sistçmu');
 define('_SETTINGS_DBLOGIN',            'mySQL DB informâcija');
 define('_SETTINGS_UPDATE',            'Uzstâdîjumu saglabâðana');
index 49f711a..8db4c89 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Kaspars Priedols (house@tvertne.nu)
 // Nucleus version: v1.0-v2.0
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -474,7 +474,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Fails ar šādu nosaukumu jau eksistē. Pir
 define('_ERROR_LOGINDISALLOWED',    'Piedod, tev nav dota atļauja šeit ārdīties kā adminam. Bet vismaz vari padarboties kā dalībnieks. Uzraksti kaut ko labu');
 define('_ERROR_DBCONNECT',            'Hm, mySQL serveris nokāries? Piezvani adminam');
 define('_ERROR_DBSELECT',            'Hm, problēma ar blogu datu bāzi.');
-define('_ERROR_NOSUCHLANGUAGE',        'Hm, problēma ar valodu failu (nav atrasts)');
+define('_ERROR_NOSUCHTRANSLATION',        'Hm, problēma ar valodu failu (nav atrasts)');
 define('_ERROR_NOSUCHCATEGORY',        'Hm, sadaļa netika atrasta');
 define('_ERROR_DELETELASTCATEGORY',    'Jābūt vismaz vienai sadaļai');
 define('_ERROR_DELETEDEFCATEGORY',    'Pamatsadaļu nedrīkst dzēst');
@@ -675,7 +675,7 @@ define('_SETTINGS_ALLOWCREATE',        'Atļaut visiem apmeklētājiem reģistr
 define('_SETTINGS_NEWLOGIN',        'Atļaut pieslēgties kā administratoram uzreiz pēc reģistrēšanās');
 define('_SETTINGS_NEWLOGIN2',        '(tikai jaunizveidotiem)');
 define('_SETTINGS_MEMBERMSGS',        'Atļaut izmantot dalībnieks-dalībniekam servisu');
-define('_SETTINGS_LANGUAGE',        'Valoda');
+define('_SETTINGS_LOCALE',        'Valoda');
 define('_SETTINGS_DISABLESITE',        'Apstādināt sistēmu');
 define('_SETTINGS_DBLOGIN',            'mySQL DB informācija');
 define('_SETTINGS_UPDATE',            'Uzstādījumu saglabāšana');
index a00dfe6..cf6ed43 100644 (file)
@@ -5,12 +5,12 @@
 // - Nucleus v2.5-3.1 Norbert (beckerswna@yahoo.com)
 // - Nucleus v1.0-2.5 Wouter Demuynck (nucleuscms.org)
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us
+// Fully translated file can be sent to us
 // and will be available for download (with proper credit to the author, of course)
 //
 // Oct 7, 2005 - Translation fine-tuned and spellingcorrection by Errie (http://getverd.errie.com
@@ -592,7 +592,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Een bestand met dezelfde naam bestaat reeds. P
 define('_ERROR_LOGINDISALLOWED',       'Sorry, U bent niet gemachtigd om in te loggen op de admin area');
 define('_ERROR_DBCONNECT',                     'Kon geen verbinding maken met de MySQL database');
 define('_ERROR_DBSELECT',                      'Kon de databank niet correct selecteren.');
-define('_ERROR_NOSUCHLANGUAGE',                'De gevraagde taal bestaat niet');
+define('_ERROR_NOSUCHTRANSLATION',             'De gevraagde taal bestaat niet');
 define('_ERROR_NOSUCHCATEGORY',                'Categorie bestaat niet');
 define('_ERROR_DELETELASTCATEGORY',    'Er moet steeds minstens één categorie bestaan');
 define('_ERROR_DELETEDEFCATEGORY',     'Kan default categorie niet wissen');
@@ -794,7 +794,7 @@ define('_SETTINGS_ALLOWCREATE',             'Bezoekers toelaten een gebruikersaccount aan t
 define('_SETTINGS_NEWLOGIN',           'Login toegelaten voor nieuwe gebruikers');
 define('_SETTINGS_NEWLOGIN2',          '(geldt enkel voor nieuwe accounts)');
 define('_SETTINGS_MEMBERMSGS',         'Member-2-Member Service Toelaten');
-define('_SETTINGS_LANGUAGE',           'Default Taal');
+define('_SETTINGS_LOCALE',             'Default Taal');
 define('_SETTINGS_DISABLESITE',                'Site Uitschakelen');
 define('_SETTINGS_DBLOGIN',                    'mySQL Login &amp; Database');
 define('_SETTINGS_UPDATE',                     'Bewaren');
index cc451d5..3869de1 100644 (file)
@@ -5,12 +5,12 @@
 // - Nucleus v2.5-3.1 Norbert (beckerswna@yahoo.com)
 // - Nucleus v1.0-2.5 Wouter Demuynck (nucleuscms.org)
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which
 // the file was written in your document.
 //
-// Fully translated language file can be sent to us
+// Fully translated file can be sent to us
 // and will be available for download (with proper credit to the author, of course)
 //
 // Oct 7, 2005 - Translation fine-tuned and spellingcorrection by Errie (http://getverd.errie.com
@@ -592,7 +592,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Een bestand met dezelfde naam bestaat reeds. P
 define('_ERROR_LOGINDISALLOWED',       'Sorry, U bent niet gemachtigd om in te loggen op de admin area');
 define('_ERROR_DBCONNECT',                     'Kon geen verbinding maken met de MySQL database');
 define('_ERROR_DBSELECT',                      'Kon de databank niet correct selecteren.');
-define('_ERROR_NOSUCHLANGUAGE',                'De gevraagde taal bestaat niet');
+define('_ERROR_NOSUCHTRANSLATION',             'De gevraagde taal bestaat niet');
 define('_ERROR_NOSUCHCATEGORY',                'Categorie bestaat niet');
 define('_ERROR_DELETELASTCATEGORY',    'Er moet steeds minstens één categorie bestaan');
 define('_ERROR_DELETEDEFCATEGORY',     'Kan default categorie niet wissen');
@@ -794,7 +794,7 @@ define('_SETTINGS_ALLOWCREATE',             'Bezoekers toelaten een gebruikersaccount aan t
 define('_SETTINGS_NEWLOGIN',           'Login toegelaten voor nieuwe gebruikers');
 define('_SETTINGS_NEWLOGIN2',          '(geldt enkel voor nieuwe accounts)');
 define('_SETTINGS_MEMBERMSGS',         'Member-2-Member Service Toelaten');
-define('_SETTINGS_LANGUAGE',           'Default Taal');
+define('_SETTINGS_LOCALE',             'Default Taal');
 define('_SETTINGS_DISABLESITE',                'Site Uitschakelen');
 define('_SETTINGS_DBLOGIN',                    'mySQL Login &amp; Database');
 define('_SETTINGS_UPDATE',                     'Bewaren');
index f06ce88..76304bd 100644 (file)
@@ -5,12 +5,12 @@
 // Author: Rafael Cruz (bataelo@myrealbox.com) (on previous translation by Rodrigo Moraes)
 // Nucleus version: v1.0-v2.0
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -455,7 +455,7 @@ define('_ERROR_UPLOADDUPLICATE',    'J
 define('_ERROR_LOGINDISALLOWED',       'Você não pode logar. Tente usar outro usuário.');
 define('_ERROR_DBCONNECT',                     'Não foi possível conectar com o servidor mySQL.');
 define('_ERROR_DBSELECT',                      'Não foi posssível acessar o banco de dados nucleus.');
-define('_ERROR_NOSUCHLANGUAGE', 'Esta língua não existe');
+define('_ERROR_NOSUCHTRANSLATION', 'Esta língua não existe');
 define('_ERROR_NOSUCHCATEGORY', 'Este tema não existe');
 define('_ERROR_DELETELASTCATEGORY', 'É preciso haver ao menos um tema');
 define('_ERROR_DELETEDEFCATEGORY', 'Você não pode apagar o tema');
@@ -656,7 +656,7 @@ define('_SETTINGS_ALLOWCREATE',             'Permitir que usu
 define('_SETTINGS_NEWLOGIN',           'Permitir login para as contas criadas por usuários');
 define('_SETTINGS_NEWLOGIN2',          '(apenas para as novas contas criadas)');
 define('_SETTINGS_MEMBERMSGS',         'Permitir serviço membro-a-membro');
-define('_SETTINGS_LANGUAGE',           'Linguagem padrão');
+define('_SETTINGS_LOCALE',             'Linguagem padrão');
 define('_SETTINGS_DISABLESITE',                'Desabilitar o site');
 define('_SETTINGS_DBLOGIN',                    'Login do banco de dados mySQL');
 define('_SETTINGS_UPDATE',                     'Atualiza configurações');
index 27150fd..a888ace 100644 (file)
@@ -5,12 +5,12 @@
 // Author: Rafael Cruz (bataelo@myrealbox.com) (on previous translation by Rodrigo Moraes)
 // Nucleus version: v1.0-v2.0
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -455,7 +455,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Já existe um arquivo com este nome. Renomeie
 define('_ERROR_LOGINDISALLOWED',       'Você não pode logar. Tente usar outro usuário.');
 define('_ERROR_DBCONNECT',                     'Não foi possível conectar com o servidor mySQL.');
 define('_ERROR_DBSELECT',                      'Não foi posssível acessar o banco de dados nucleus.');
-define('_ERROR_NOSUCHLANGUAGE', 'Esta língua não existe');
+define('_ERROR_NOSUCHTRANSLATION', 'Esta língua não existe');
 define('_ERROR_NOSUCHCATEGORY', 'Este tema não existe');
 define('_ERROR_DELETELASTCATEGORY', 'É preciso haver ao menos um tema');
 define('_ERROR_DELETEDEFCATEGORY', 'Você não pode apagar o tema');
@@ -656,7 +656,7 @@ define('_SETTINGS_ALLOWCREATE',             'Permitir que usuários criem novas contas');
 define('_SETTINGS_NEWLOGIN',           'Permitir login para as contas criadas por usuários');
 define('_SETTINGS_NEWLOGIN2',          '(apenas para as novas contas criadas)');
 define('_SETTINGS_MEMBERMSGS',         'Permitir serviço membro-a-membro');
-define('_SETTINGS_LANGUAGE',           'Linguagem padrão');
+define('_SETTINGS_LOCALE',             'Linguagem padrão');
 define('_SETTINGS_DISABLESITE',                'Desabilitar o site');
 define('_SETTINGS_DBLOGIN',                    'Login do banco de dados mySQL');
 define('_SETTINGS_UPDATE',                     'Atualiza configurações');
index f4cbbdb..bd3f7d7 100644 (file)
@@ -580,7 +580,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Файл с таким именем уже с
 define('_ERROR_LOGINDISALLOWED',       'Жаль, но Вам запрещено входить в панель управления сайтом.');
 define('_ERROR_DBCONNECT',                     'Невозможно соединиться с MySQL сервером');
 define('_ERROR_DBSELECT',                      'Невозможно выбрать базу данных Nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Нет такого языкового файла');
+define('_ERROR_NOSUCHTRANSLATION',             'Нет такого языкового файла');
 define('_ERROR_NOSUCHCATEGORY',                'Нет такой категории');
 define('_ERROR_DELETELASTCATEGORY',    'Должна быть хотя бы одна категория');
 define('_ERROR_DELETEDEFCATEGORY',     'Нельзя удалить заданную по умолчанию категорию');
@@ -781,7 +781,7 @@ define('_SETTINGS_ALLOWCREATE',             'Разрешить самостоятельн
 define('_SETTINGS_NEWLOGIN',           'Разрешить зарегистрированным пользователям входить в админку');
 define('_SETTINGS_NEWLOGIN2',          '(только для новых эккаунтов)');
 define('_SETTINGS_MEMBERMSGS',         'Разрешить сообщения между пользователями');
-define('_SETTINGS_LANGUAGE',           'Язык по умолчанию');
+define('_SETTINGS_LOCALE',             'Язык по умолчанию');
 define('_SETTINGS_DISABLESITE',                'Выключить сайт');
 define('_SETTINGS_DBLOGIN',                    'mySQL данные');
 define('_SETTINGS_UPDATE',                     'Сохранить изменения');
index cc94c73..34b4239 100644 (file)
@@ -580,7 +580,7 @@ define('_ERROR_UPLOADDUPLICATE',    '
 define('_ERROR_LOGINDISALLOWED',       'Æàëü, íî Âàì çàïðåùåíî âõîäèòü â ïàíåëü óïðàâëåíèÿ ñàéòîì.');
 define('_ERROR_DBCONNECT',                     'Íåâîçìîæíî ñîåäèíèòüñÿ ñ MySQL ñåðâåðîì');
 define('_ERROR_DBSELECT',                      'Íåâîçìîæíî âûáðàòü áàçó äàííûõ Nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Íåò òàêîãî ÿçûêîâîãî ôàéëà');
+define('_ERROR_NOSUCHTRANSLATION',             'Íåò òàêîãî ÿçûêîâîãî ôàéëà');
 define('_ERROR_NOSUCHCATEGORY',                'Íåò òàêîé êàòåãîðèè');
 define('_ERROR_DELETELASTCATEGORY',    'Äîëæíà áûòü õîòÿ áû îäíà êàòåãîðèÿ');
 define('_ERROR_DELETEDEFCATEGORY',     'Íåëüçÿ óäàëèòü çàäàííóþ ïî óìîë÷àíèþ êàòåãîðèþ');
@@ -781,7 +781,7 @@ define('_SETTINGS_ALLOWCREATE',             '
 define('_SETTINGS_NEWLOGIN',           'Ðàçðåøèòü çàðåãèñòðèðîâàííûì ïîëüçîâàòåëÿì âõîäèòü â àäìèíêó');
 define('_SETTINGS_NEWLOGIN2',          '(òîëüêî äëÿ íîâûõ ýêêàóíòîâ)');
 define('_SETTINGS_MEMBERMSGS',         'Ðàçðåøèòü ñîîáùåíèÿ ìåæäó ïîëüçîâàòåëÿìè');
-define('_SETTINGS_LANGUAGE',           'ßçûê ïî óìîë÷àíèþ');
+define('_SETTINGS_LOCALE',             'ßçûê ïî óìîë÷àíèþ');
 define('_SETTINGS_DISABLESITE',                'Âûêëþ÷èòü ñàéò');
 define('_SETTINGS_DBLOGIN',                    'mySQL äàííûå');
 define('_SETTINGS_UPDATE',                     'Ñîõðàíèòü èçìåíåíèÿ');
index 9cca92f..c0de49a 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Fujinmi (fujinmi@seznam.cz)
 // Nucleus version: v1.0-v2.5.1.0
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    'S
 define('_ERROR_LOGINDISALLOWED',       'Prepáète, ale nemô¾ete sa prihlási» do správcovskej oblasti. Av¹ak mô¾ete sa prihlási» ako iný u¾ívateµ.');
 define('_ERROR_DBCONNECT',                     'Nie je mo¾né pripoji» sa k mySQL serveru');
 define('_ERROR_DBSELECT',                      'Nie je mo¾né vybra» databázu nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Tento jazykový súbor neexistuje');
+define('_ERROR_NOSUCHTRANSLATION',             'Tento jazykový súbor neexistuje');
 define('_ERROR_NOSUCHCATEGORY',                'Taká kategória neexistuje');
 define('_ERROR_DELETELASTCATEGORY',    'Musí existova» aspoò jedna kategória');
 define('_ERROR_DELETEDEFCATEGORY',     'Nie je mo¾né odstráni» defaultnú kategóriu');
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             'Povoli
 define('_SETTINGS_NEWLOGIN',           'Povoli» prihlásenie z úètov, vytvorených náv¹tevníkmi');
 define('_SETTINGS_NEWLOGIN2',          '(iba pre novo vytvorené úèty)');
 define('_SETTINGS_MEMBERMSGS',         'Povoli» slu¾by medzi èlenmi');
-define('_SETTINGS_LANGUAGE',           '©tandardný jazyk');
+define('_SETTINGS_LOCALE',             '©tandardný jazyk');
 define('_SETTINGS_DISABLESITE',                'Vypnú» stránku');
 define('_SETTINGS_DBLOGIN',                    'mySQL Login a Databáza');
 define('_SETTINGS_UPDATE',                     'Ulo¾i» nastavenia');
index 8fbbe9b..54b36f0 100644 (file)
@@ -4,12 +4,12 @@
 // Author: Fujinmi (fujinmi@seznam.cz)
 // Nucleus version: v1.0-v2.5.1.0
 //
-// Please note: if you want to translate this file to your own language, be aware
+// Please note: if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    'Súbor s týmto názvom už existuje. Pred nah
 define('_ERROR_LOGINDISALLOWED',       'Prepáčte, ale nemôžete sa prihlásiť do správcovskej oblasti. Avšak môžete sa prihlásiť ako iný užívateľ.');
 define('_ERROR_DBCONNECT',                     'Nie je možné pripojiť sa k mySQL serveru');
 define('_ERROR_DBSELECT',                      'Nie je možné vybrať databázu nucleus.');
-define('_ERROR_NOSUCHLANGUAGE',                'Tento jazykový súbor neexistuje');
+define('_ERROR_NOSUCHTRANSLATION',             'Tento jazykový súbor neexistuje');
 define('_ERROR_NOSUCHCATEGORY',                'Taká kategória neexistuje');
 define('_ERROR_DELETELASTCATEGORY',    'Musí existovať aspoň jedna kategória');
 define('_ERROR_DELETEDEFCATEGORY',     'Nie je možné odstrániť defaultnú kategóriu');
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             'Povoliť návštevníkom vytvoriť si registro
 define('_SETTINGS_NEWLOGIN',           'Povoliť prihlásenie z účtov, vytvorených návštevníkmi');
 define('_SETTINGS_NEWLOGIN2',          '(iba pre novo vytvorené účty)');
 define('_SETTINGS_MEMBERMSGS',         'Povoliť služby medzi členmi');
-define('_SETTINGS_LANGUAGE',           'Štandardný jazyk');
+define('_SETTINGS_LOCALE',             'Štandardný jazyk');
 define('_SETTINGS_DISABLESITE',                'Vypnúť stránku');
 define('_SETTINGS_DBLOGIN',                    'mySQL Login a Databáza');
 define('_SETTINGS_UPDATE',                     'Uložiť nastavenia');
index bd6d4d6..7b2b212 100644 (file)
@@ -4,12 +4,12 @@
 // Author£ºWouter Demuynck (nucleus@demuynck.org)
 // Nucleus version£ºv1.0-v2.0
 //
-// Please note£ºif you want to translate this file to your own language, be aware
+// Please note£ºif you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    '
 define('_ERROR_LOGINDISALLOWED',       '¶Ô²»Æð£¬Äã²»ÄܵǼ¹ÜÀíÇø¡£µ«¿ÉÒÔÓÃÆäËûÓû§Éí·ÝµÇ¼');
 define('_ERROR_DBCONNECT',                     'ÎÞ·¨Á¬½Óµ½ MySQL ·þÎñÆ÷');
 define('_ERROR_DBSELECT',                      'ÎÞ·¨Ñ¡ÔñÎÄÕÂϵͳµÄÊý¾Ý¿â');
-define('_ERROR_NOSUCHLANGUAGE',                'ûÓÐÕâ¸öÓïÑÔÎļþ');
+define('_ERROR_NOSUCHTRANSLATION',             'ûÓÐÕâ¸öÓïÑÔÎļþ');
 define('_ERROR_NOSUCHCATEGORY',                'ûÓÐÕâ¸öÀà±ð');
 define('_ERROR_DELETELASTCATEGORY',    'ÖÁÉÙÒ»¸öÀà±ð');
 define('_ERROR_DELETEDEFCATEGORY',     '²»ÄÜɾ³ýĬÈÏÀà±ð');
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             '
 define('_SETTINGS_NEWLOGIN',           'ÔÊÐí·Ã¿Í½¨Á¢µÄÕ˺ŵǼ');
 define('_SETTINGS_NEWLOGIN2',          '£¨Ö»ÔÚÐÂ×¢²áµÄÕ˺ÅÉÏÉúЧ£©');
 define('_SETTINGS_MEMBERMSGS',         'ÔÊÐí»áÔ±µ½»áÔ±µÄ·þÎñ');
-define('_SETTINGS_LANGUAGE',           'ĬÈÏÓïÑÔ');
+define('_SETTINGS_LOCALE',             'ĬÈÏÓïÑÔ');
 define('_SETTINGS_DISABLESITE',                '¹Ø±ÕÕ¾µã');
 define('_SETTINGS_DBLOGIN',                    'MySQL µÇ¼ &amp; Êý¾Ý¿â');
 define('_SETTINGS_UPDATE',                     '¸üÐÂÉèÖÃ');
index 3d79617..e0fc84f 100644 (file)
@@ -4,12 +4,12 @@
 // Author:Wouter Demuynck (nucleus@demuynck.org)
 // Nucleus version:v1.0-v2.0
 //
-// Please note:if you want to translate this file to your own language, be aware
+// Please note:if you want to translate this file to your own locale, be aware
 // that in a next Nucleus version, new variables might be added and some other ones
 // might be deleted. Therefor, it's important to list the Nucleus version for which 
 // the file was written in your document.
 //
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)
 // and will be available for download (with proper credit to the author, of course)
 
 // START introduced after v2.0 START
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    '已经有一个同名文件,上传之前请
 define('_ERROR_LOGINDISALLOWED',       '对不起,你不能登录管理区。但可以用其他用户身份登录');
 define('_ERROR_DBCONNECT',                     '无法连接到 MySQL 服务器');
 define('_ERROR_DBSELECT',                      '无法选择文章系统的数据库');
-define('_ERROR_NOSUCHLANGUAGE',                '没有这个语言文件');
+define('_ERROR_NOSUCHTRANSLATION',             '没有这个语言文件');
 define('_ERROR_NOSUCHCATEGORY',                '没有这个类别');
 define('_ERROR_DELETELASTCATEGORY',    '至少一个类别');
 define('_ERROR_DELETEDEFCATEGORY',     '不能删除默认类别');
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             '允许访客建立会员账号');
 define('_SETTINGS_NEWLOGIN',           '允许访客建立的账号登录');
 define('_SETTINGS_NEWLOGIN2',          '(只在新注册的账号上生效)');
 define('_SETTINGS_MEMBERMSGS',         '允许会员到会员的服务');
-define('_SETTINGS_LANGUAGE',           '默认语言');
+define('_SETTINGS_LOCALE',             '默认语言');
 define('_SETTINGS_DISABLESITE',                '关闭站点');
 define('_SETTINGS_DBLOGIN',                    'MySQL 登录 &amp; 数据库');
 define('_SETTINGS_UPDATE',                     '更新设置');
index c73f5e6..65d179d 100644 (file)
@@ -4,12 +4,12 @@
 // Author¡GWouter Demuynck (nucleus@demuynck.org)\r
 // Nucleus version¡Gv1.0-v2.0\r
 //\r
-// Please note¡Gif you want to translate this file to your own language, be aware\r
+// Please note¡Gif you want to translate this file to your own locale, be aware\r
 // that in a next Nucleus version, new variables might be added and some other ones\r
 // might be deleted. Therefor, it's important to list the Nucleus version for which \r
 // the file was written in your document.\r
 //\r
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)\r
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)\r
 // and will be available for download (with proper credit to the author, of course)\r
 \r
 // START introduced after v2.0 START\r
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    '
 define('_ERROR_LOGINDISALLOWED',       '¹ï¤£°_¡A§A¤£¯àµn¿ýºÞ²z°Ï¡C¦ý¥i¥H¥Î¨ä¥L¥Î¤á¨­¥÷µn¿ý');\r
 define('_ERROR_DBCONNECT',                     'µLªk³s±µ¨ì MySQL ªA°È¾¹');\r
 define('_ERROR_DBSELECT',                      'µLªk¿ï¾Ü¤å³¹¨t²Îªº¼Æ¾Ú®w');\r
-define('_ERROR_NOSUCHLANGUAGE',                '¨S¦³³o­Ó»y¨¥¤å¥ó');\r
+define('_ERROR_NOSUCHTRANSLATION',             '¨S¦³³o­Ó»y¨¥¤å¥ó');\r
 define('_ERROR_NOSUCHCATEGORY',                '¨S¦³³o­ÓÃþ§O');\r
 define('_ERROR_DELETELASTCATEGORY',    '¦Ü¤Ö¤@­ÓÃþ§O');\r
 define('_ERROR_DELETEDEFCATEGORY',     '¤£¯à§R°£Àq»{Ãþ§O');\r
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             '
 define('_SETTINGS_NEWLOGIN',           '¤¹³\³X«È«Ø¥ßªº½ã¸¹µn¿ý');\r
 define('_SETTINGS_NEWLOGIN2',          '¡]¥u¦b·sµù¥Uªº½ã¸¹¤W¥Í®Ä¡^');\r
 define('_SETTINGS_MEMBERMSGS',         '¤¹³\·|­û¨ì·|­ûªºªA°È');\r
-define('_SETTINGS_LANGUAGE',           'Àq»{»y¨¥');\r
+define('_SETTINGS_LOCALE',             'Àq»{»y¨¥');\r
 define('_SETTINGS_DISABLESITE',                'Ãö³¬¯¸ÂI');\r
 define('_SETTINGS_DBLOGIN',                    'MySQL µn¿ý &amp; ¼Æ¾Ú®w');\r
 define('_SETTINGS_UPDATE',                     '§ó·s³]¸m');\r
index 4711746..8e4763a 100644 (file)
@@ -4,12 +4,12 @@
 // Author:Wouter Demuynck (nucleus@demuynck.org)\r
 // Nucleus version:v1.0-v2.0\r
 //\r
-// Please note:if you want to translate this file to your own language, be aware\r
+// Please note:if you want to translate this file to your own locale, be aware\r
 // that in a next Nucleus version, new variables might be added and some other ones\r
 // might be deleted. Therefor, it's important to list the Nucleus version for which \r
 // the file was written in your document.\r
 //\r
-// Fully translated language file can be sent to Wouter Demuynck (nucleus@demuynck.org)\r
+// Fully translated file can be sent to Wouter Demuynck (nucleus@demuynck.org)\r
 // and will be available for download (with proper credit to the author, of course)\r
 \r
 // START introduced after v2.0 START\r
@@ -458,7 +458,7 @@ define('_ERROR_UPLOADDUPLICATE',    '已經有一個同名文件,上傳之前請
 define('_ERROR_LOGINDISALLOWED',       '對不起,你不能登錄管理區。但可以用其他用戶身份登錄');\r
 define('_ERROR_DBCONNECT',                     '無法連接到 MySQL 服務器');\r
 define('_ERROR_DBSELECT',                      '無法選擇文章系統的數據庫');\r
-define('_ERROR_NOSUCHLANGUAGE',                '沒有這個語言文件');\r
+define('_ERROR_NOSUCHTRANSLATION',             '沒有這個語言文件');\r
 define('_ERROR_NOSUCHCATEGORY',                '沒有這個類別');\r
 define('_ERROR_DELETELASTCATEGORY',    '至少一個類別');\r
 define('_ERROR_DELETEDEFCATEGORY',     '不能刪除默認類別');\r
@@ -659,7 +659,7 @@ define('_SETTINGS_ALLOWCREATE',             '允許訪客建立會員賬號');
 define('_SETTINGS_NEWLOGIN',           '允許訪客建立的賬號登錄');\r
 define('_SETTINGS_NEWLOGIN2',          '(只在新註冊的賬號上生效)');\r
 define('_SETTINGS_MEMBERMSGS',         '允許會員到會員的服務');\r
-define('_SETTINGS_LANGUAGE',           '默認語言');\r
+define('_SETTINGS_LOCALE',             '默認語言');\r
 define('_SETTINGS_DISABLESITE',                '關閉站點');\r
 define('_SETTINGS_DBLOGIN',                    'MySQL 登錄 &amp; 數據庫');\r
 define('_SETTINGS_UPDATE',                     '更新設置');\r
index 1ffec93..781187d 100644 (file)
@@ -22,7 +22,7 @@
  *   v1.1 - Add JustPosted event support
  *   v1.2 - JustPosted event handling in background
  *   v1.3 - pinged variable support
- *   v1.4 - language file support
+ *   v1.4 - translation file support
  *   v1.5 - remove arg1 in exec() call
  *   v1.6 - move send update ping override option to plugin
  *   v1.7 - move send ping option from blog to plugin/blog level
index c570311..1c079c8 100644 (file)
@@ -69,7 +69,7 @@ class NP_SecurityEnforcer extends NucleusPlugin
        
        public function init()
        {
-               // include language file for this plugin
+               // include translation file for this plugin
                if ( file_exists($this->getDirectory() . i18n::get_current_locale() . '.' . i18n::get_current_charset() . '.php') )
                {
                        include_once($this->getDirectory() . i18n::get_current_locale() . '.' . i18n::get_current_charset() . '.php');
index 312ba15..3806db9 100644 (file)
@@ -66,7 +66,7 @@ class NP_SkinFiles extends NucleusPlugin {
        
        public function init()
        {
-               // include language file for this plugin
+               // include translation file for this plugin
                if ( file_exists($this->getDirectory() . i18n::get_current_locale() . '.' . i18n::get_current_charset() . '.php') )
                {
                        include_once($this->getDirectory() . i18n::get_current_locale() . '.' . i18n::get_current_charset() . '.php');
index b4bd304..4b1f44b 100644 (file)
@@ -10,7 +10,7 @@ class NP_Text extends NucleusPlugin
        public function getAuthor()                     { return 'Armon Toubman'; }
        public function getURL()                        { return 'http://forum.nucleuscms.org/viewtopic.php?t=14904'; }
        public function getVersion()            { return '0.53'; }
-       public function getDescription()        { return 'Display constants from language files: <%Text(CONSTANT)%>'; }
+       public function getDescription()        { return 'Display constants from translation files: <%Text(CONSTANT)%>'; }
        public function getEventList()          { return array('PreSkinParse'); }
        public function supportsFeature($feature)       { return ( $feature == 'SqlTablePrefix' ); }
        public function install()                       { return; }
index aa06f8a..69a65cf 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/** English language file for NP_SECURITYENFORCER Plugin
+/** English translation file for NP_SECURITYENFORCER Plugin
 */
 
 // Plugin Options
index 1f3c0b3..b256666 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/** Japanese-UTF8 language file for NP_SECURITYENFORCER Plugin
+/** Japanese-UTF8 translation file for NP_SECURITYENFORCER Plugin
 */
 
 // Plugin Options
index 8a52d84..9fda451 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-/** Japanese-UTF8 language file for NP_SECURITYENFORCER Plugin
+/** Japanese-UTF8 translation file for NP_SECURITYENFORCER Plugin
 */
 
 // Plugin Options
index 7d8e940..f0f706d 100644 (file)
        {
                $current = 350;
        }
-       else
+       else if ( !upgrade_checkinstall(400)  )
        {
                $current = 360;
        }
-
-       if ( $current == 360 )
+       else
+       {
+               $current = 400
+       }
+       
+       if ( $current == 400 )
        {
 ?>
        <p class="ok"> No database updates required! The database has already been updated to the latest version of Nucleus. </p>