From: <rc...@us...> - 2017-04-15 20:13:43
|
Revision: 7755 http://sourceforge.net/p/web-erp/reponame/7755 Author: rchacon Date: 2017-04-15 20:13:36 +0000 (Sat, 15 Apr 2017) Log Message: ----------- Rebuild languages files *.pot, *.po and *.mo. Modified Paths: -------------- trunk/GLAccounts.php trunk/WWW_Users.php trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.mo trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po trunk/locale/ar_SY.utf8/LC_MESSAGES/messages.mo trunk/locale/ar_SY.utf8/LC_MESSAGES/messages.po trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.mo trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.po trunk/locale/de_DE.utf8/LC_MESSAGES/messages.mo trunk/locale/de_DE.utf8/LC_MESSAGES/messages.po trunk/locale/el_GR.utf8/LC_MESSAGES/messages.mo trunk/locale/el_GR.utf8/LC_MESSAGES/messages.po trunk/locale/en_GB.utf8/LC_MESSAGES/messages.pot trunk/locale/en_US.utf8/LC_MESSAGES/messages.mo trunk/locale/en_US.utf8/LC_MESSAGES/messages.po trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po trunk/locale/et_EE.utf8/LC_MESSAGES/messages.mo trunk/locale/et_EE.utf8/LC_MESSAGES/messages.po trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.mo trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.po trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.mo trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.po trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.mo trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.po trunk/locale/he_IL.utf8/LC_MESSAGES/messages.mo trunk/locale/he_IL.utf8/LC_MESSAGES/messages.po trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.mo trunk/locale/hi_IN.utf8/LC_MESSAGES/messages.po trunk/locale/hr_HR.utf8/LC_MESSAGES/messages.mo trunk/locale/hr_HR.utf8/LC_MESSAGES/messages.po trunk/locale/hu_HU.utf8/LC_MESSAGES/messages.mo trunk/locale/hu_HU.utf8/LC_MESSAGES/messages.po trunk/locale/id_ID.utf8/LC_MESSAGES/messages.mo trunk/locale/id_ID.utf8/LC_MESSAGES/messages.po trunk/locale/it_IT.utf8/LC_MESSAGES/messages.mo trunk/locale/it_IT.utf8/LC_MESSAGES/messages.po trunk/locale/ja_JP.utf8/LC_MESSAGES/messages.mo trunk/locale/ja_JP.utf8/LC_MESSAGES/messages.po trunk/locale/ko_KR.utf8/LC_MESSAGES/messages.mo trunk/locale/ko_KR.utf8/LC_MESSAGES/messages.po trunk/locale/lv_LV.utf8/LC_MESSAGES/messages.mo trunk/locale/lv_LV.utf8/LC_MESSAGES/messages.po trunk/locale/mr_IN.utf8/LC_MESSAGES/messages.po trunk/locale/nl_NL.utf8/LC_MESSAGES/messages.mo trunk/locale/nl_NL.utf8/LC_MESSAGES/messages.po trunk/locale/pl_PL.utf8/LC_MESSAGES/messages.mo trunk/locale/pl_PL.utf8/LC_MESSAGES/messages.po trunk/locale/pt_BR.utf8/LC_MESSAGES/messages.mo trunk/locale/pt_BR.utf8/LC_MESSAGES/messages.po trunk/locale/pt_PT.utf8/LC_MESSAGES/messages.mo trunk/locale/pt_PT.utf8/LC_MESSAGES/messages.po trunk/locale/ro_RO.utf8/LC_MESSAGES/messages.mo trunk/locale/ro_RO.utf8/LC_MESSAGES/messages.po trunk/locale/ru_RU.utf8/LC_MESSAGES/messages.mo trunk/locale/ru_RU.utf8/LC_MESSAGES/messages.po trunk/locale/sq_AL.utf8/LC_MESSAGES/messages.mo trunk/locale/sq_AL.utf8/LC_MESSAGES/messages.po trunk/locale/sv_SE.utf8/LC_MESSAGES/messages.mo trunk/locale/sv_SE.utf8/LC_MESSAGES/messages.po trunk/locale/sw_KE.utf8/LC_MESSAGES/messages.mo trunk/locale/sw_KE.utf8/LC_MESSAGES/messages.po trunk/locale/tr_TR.utf8/LC_MESSAGES/messages.mo trunk/locale/tr_TR.utf8/LC_MESSAGES/messages.po trunk/locale/vi_VN.utf8/LC_MESSAGES/messages.mo trunk/locale/vi_VN.utf8/LC_MESSAGES/messages.po trunk/locale/zh_CN.utf8/LC_MESSAGES/messages.mo trunk/locale/zh_CN.utf8/LC_MESSAGES/messages.po trunk/locale/zh_HK.utf8/LC_MESSAGES/messages.mo trunk/locale/zh_HK.utf8/LC_MESSAGES/messages.po trunk/locale/zh_TW.utf8/LC_MESSAGES/messages.mo trunk/locale/zh_TW.utf8/LC_MESSAGES/messages.po Modified: trunk/GLAccounts.php =================================================================== --- trunk/GLAccounts.php 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/GLAccounts.php 2017-04-15 20:13:36 UTC (rev 7755) @@ -7,7 +7,7 @@ function CashFlowsActivityName($Activity) { // Converts the cash flow activity number to an activity text. switch($Activity) { - case -1: return '<b>' . _('Without setting up') . '</b>'; + case -1: return '<b>' . _('Not set up') . '</b>'; case 0: return _('No effect on cash flow'); case 1: return _('Operating activity'); case 2: return _('Investing activity'); Modified: trunk/WWW_Users.php =================================================================== --- trunk/WWW_Users.php 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/WWW_Users.php 2017-04-15 20:13:36 UTC (rev 7755) @@ -729,7 +729,7 @@ // Turn off/on dashboard after Login: echo '<tr> - <td><label for="ShowDashboard">', _('Display Dashboard after Login'), ':</label></td> + <td><label for="ShowDashboard">', _('Display dashboard'), ':</label></td> <td><select id="ShowDashboard" name="ShowDashboard">'; if($_POST['ShowDashboard']==0) { echo '<option selected="selected" value="0">', _('No'), '</option>', @@ -738,7 +738,9 @@ echo '<option value="0">', _('No'), '</option>', '<option selected="selected" value="1">', _('Yes'), '</option>'; } -echo '</select></td> +echo '</select>', + (!isset($_SESSION['ShowFieldHelp']) || $_SESSION['ShowFieldHelp'] ? _('Show dashboard page after Login') : ''), // If the parameter $_SESSION['ShowFieldHelp'] is not set OR is TRUE, shows this field help text. + '</td> </tr>'; // Turn off/on page help: echo '<tr> Modified: trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/ar_EG.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: 2013-06-01 11:19-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Arabic <ar...@li...>\n" @@ -355,8 +355,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "موافق" @@ -426,8 +426,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -692,7 +692,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "أدخل المعلومات" @@ -13857,8 +13857,8 @@ msgid "Run Report" msgstr "" -#: GLAccounts.php:10 -msgid "Without setting up" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" msgstr "" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 @@ -14266,10 +14266,6 @@ msgid "Could not update the chartdetails record because" msgstr "" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "" @@ -15698,7 +15694,7 @@ msgid "View any open tenders without an offer" msgstr "" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "" @@ -37040,23 +37036,23 @@ msgid "If you leave the password boxes empty your password will not change" msgstr "" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "" @@ -38447,22 +38443,26 @@ msgstr "" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" +msgid "Display dashboard" msgstr "" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "" Modified: trunk/locale/ar_SY.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/ar_SY.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/ar_SY.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/ar_SY.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: 2015-11-12 20:40+0200\n" "Last-Translator: JC_Chuck <Unknown>\n" "Language-Team: Arabic <ar...@li...>\n" @@ -358,8 +358,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "موافق" @@ -429,8 +429,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -699,7 +699,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "أدخل المعلومات" @@ -13875,8 +13875,8 @@ msgid "Run Report" msgstr "" -#: GLAccounts.php:10 -msgid "Without setting up" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" msgstr "" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 @@ -14284,10 +14284,6 @@ msgid "Could not update the chartdetails record because" msgstr "" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "" @@ -15719,7 +15715,7 @@ msgid "View any open tenders without an offer" msgstr "" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "" @@ -37095,23 +37091,23 @@ msgid "If you leave the password boxes empty your password will not change" msgstr "" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "" @@ -38504,22 +38500,26 @@ msgstr "" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" +msgid "Display dashboard" msgstr "" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "" Modified: trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/cs_CZ.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: 2013-06-01 11:20-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Czech <cs...@li...>\n" @@ -366,8 +366,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "Ano" @@ -437,8 +437,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -707,7 +707,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "Vložit informace" @@ -14234,8 +14234,8 @@ msgid "Run Report" msgstr "Spustit sestavu" -#: GLAccounts.php:10 -msgid "Without setting up" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" msgstr "" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 @@ -14668,10 +14668,6 @@ msgid "Could not update the chartdetails record because" msgstr "Nepodařilo se aktualizovat chartdetails rekord, protože" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "" @@ -16143,7 +16139,7 @@ msgid "View any open tenders without an offer" msgstr "" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "Stav účtu" @@ -38247,23 +38243,23 @@ msgid "If you leave the password boxes empty your password will not change" msgstr "Pokud ponecháte heslo prázdné pole heslo se nezmění" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "PDF Podpora jazyků" @@ -39745,22 +39741,26 @@ msgstr "Ne pouze přihlášení prodejce" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" +msgid "Display dashboard" msgstr "" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "Open" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "Blokované" Modified: trunk/locale/de_DE.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/de_DE.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/de_DE.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/de_DE.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: 2015-02-24 18:41-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Deutsch <web...@li...>\n" @@ -368,8 +368,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "Ja" @@ -439,8 +439,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -718,7 +718,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "Speichern" @@ -14700,9 +14700,9 @@ msgid "Run Report" msgstr "Bericht ausführen" -#: GLAccounts.php:10 -msgid "Without setting up" -msgstr "" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" +msgstr "Nicht eingerichtet" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 msgid "No effect on cash flow" @@ -15136,10 +15136,6 @@ msgid "Could not update the chartdetails record because" msgstr "Konnte die Kontensalden in der Datenbank nicht ändern, weil" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "" @@ -16662,7 +16658,7 @@ msgid "View any open tenders without an offer" msgstr "Offene Ausschreibungen ohne Angebote anzeigen" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "Kontenanzeige" @@ -39549,23 +39545,23 @@ msgstr "" "Wenn sie die Passwort-Felder leer lassen, wird Ihr Passwort nicht geändert" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "PDF-Sprachenunterstützung" @@ -41116,22 +41112,26 @@ msgstr "Keine Beschränkung auf einen bestimmten Verkäufer" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" +msgid "Display dashboard" msgstr "" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "Erlaubte Abteilung für interne Bedarfe" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "Jede interne Abteilung" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "Freigegeben" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "Gesperrt" Modified: trunk/locale/el_GR.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/el_GR.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/el_GR.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/el_GR.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: 2013-06-01 11:22-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -373,8 +373,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "Ναί" @@ -444,8 +444,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -718,7 +718,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "Καταχώρηση Πληροφοριών" @@ -14674,8 +14674,8 @@ msgid "Run Report" msgstr "Εκτέλεση αναφοράς" -#: GLAccounts.php:10 -msgid "Without setting up" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" msgstr "" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 @@ -15126,10 +15126,6 @@ msgid "Could not update the chartdetails record because" msgstr "Δεν ήταν δυνατή η ενημέρωση της εγγραφής chartdetails επειδή" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "" @@ -16635,7 +16631,7 @@ msgid "View any open tenders without an offer" msgstr "" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "Κατάσταση λογαριασμού" @@ -39441,23 +39437,23 @@ msgstr "" "Εάν αφήσετε τα πεδία τον κωδικό κενό τον κωδικό πρόσβασής σας δεν θα αλλάξει" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "PDF Υποστήριξη ξένων γλωσσών" @@ -41004,22 +41000,26 @@ msgstr "Δεν είναι ένας πωλητής μόνο η σύνδεσή" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" +msgid "Display dashboard" msgstr "" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "Άνοιγμα" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "Αποκλεισμένοι" Modified: trunk/locale/en_GB.utf8/LC_MESSAGES/messages.pot =================================================================== --- trunk/locale/en_GB.utf8/LC_MESSAGES/messages.pot 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/en_GB.utf8/LC_MESSAGES/messages.pot 2017-04-15 20:13:36 UTC (rev 7755) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -336,8 +336,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "" @@ -407,8 +407,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -661,7 +661,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "" @@ -13137,8 +13137,8 @@ msgid "Run Report" msgstr "" -#: GLAccounts.php:10 -msgid "Without setting up" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" msgstr "" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 @@ -13515,10 +13515,6 @@ msgid "Could not update the chartdetails record because" msgstr "" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "" @@ -14828,7 +14824,7 @@ msgid "View any open tenders without an offer" msgstr "" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "" @@ -34858,23 +34854,23 @@ msgid "If you leave the password boxes empty your password will not change" msgstr "" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "" @@ -36131,22 +36127,26 @@ msgstr "" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" +msgid "Display dashboard" msgstr "" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "" Modified: trunk/locale/en_US.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/en_US.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/en_US.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/en_US.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: 2016-05-28 12:08-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: WebERP Translation Team <web-erp-translation@lists." @@ -355,8 +355,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "" @@ -426,8 +426,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -692,7 +692,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "" @@ -13876,8 +13876,8 @@ msgid "Run Report" msgstr "" -#: GLAccounts.php:10 -msgid "Without setting up" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" msgstr "" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 @@ -14285,10 +14285,6 @@ msgid "Could not update the chartdetails record because" msgstr "" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "" @@ -15717,7 +15713,7 @@ msgid "View any open tenders without an offer" msgstr "" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "" @@ -37118,23 +37114,23 @@ msgid "If you leave the password boxes empty your password will not change" msgstr "" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "" @@ -38525,22 +38521,26 @@ msgstr "" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" +msgid "Display dashboard" msgstr "" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "" Modified: trunk/locale/es_ES.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/es_ES.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" -"PO-Revision-Date: 2017-04-13 11:36-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" +"PO-Revision-Date: 2017-04-15 14:01-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: TecnoSoluciones.com <web...@te...>\n" "Language: es_ES\n" @@ -374,8 +374,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "Sí" @@ -445,8 +445,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -722,7 +722,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "Introducir información" @@ -14657,9 +14657,9 @@ msgid "Run Report" msgstr "Correr Reporte" -#: GLAccounts.php:10 -msgid "Without setting up" -msgstr "Sin configurar" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" +msgstr "No configurado" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 msgid "No effect on cash flow" @@ -15115,10 +15115,6 @@ "No se pudo actualizar el registro de detalles (chartdetails) del Plan de " "Cuentas porque" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "Actividades de explotación" @@ -16665,7 +16661,7 @@ msgid "View any open tenders without an offer" msgstr "Ver las licitaciones abiertas sin una oferta" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "Estado de la cuenta" @@ -17451,7 +17447,7 @@ #: InventoryPlanningPrefSupplier.php:413 InventoryPlanningPrefSupplier.php:415 msgid "Two Weeks" -msgstr "Dos Semanas" +msgstr "Dos semanas" #: InventoryPlanningPrefSupplier.php:418 InventoryPlanningPrefSupplier.php:420 #: Tax.php:342 @@ -35308,7 +35304,7 @@ #: SupplierInquiry.php:267 msgid "Click to view payments" -msgstr "" +msgstr "Haga clic para ver los pagos" #: SupplierInquiry.php:288 msgid "View Payments" @@ -39550,23 +39546,23 @@ msgid "If you leave the password boxes empty your password will not change" msgstr "Si deja los campos de contraseña vacíos, su contraseña no cambiará" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" -msgstr "" +msgstr "Mostrar la ayuda de la página" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" -msgstr "" +msgstr "Mostrar la ayuda de la página cuando esté disponible" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" -msgstr "" +msgstr "Mostrar la ayuda del campo" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" -msgstr "" +msgstr "Mostrar la ayuda del campo cuando esté disponible" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "Soporte de idioma para PDF" @@ -41100,22 +41096,26 @@ msgstr "No es un ingreso de sólo un vendedor" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" -msgstr "Mostrar cuadro de indicadores al iniciar sesión" +msgid "Display dashboard" +msgstr "Mostrar el cuadro de indicadores" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "Departamentos permitidos para solicitudes internas" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "Abierto" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "Bloqueada" @@ -53836,6 +53836,9 @@ msgid "Bank Transfer" msgstr "Transferencia bancaria" +#~ msgid "Without setting up" +#~ msgstr "Sin configurar" + #~ msgid "Rounded Total" #~ msgstr "Total redondeado" Modified: trunk/locale/et_EE.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/et_EE.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/et_EE.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/et_EE.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: 2013-06-01 11:24-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Estonian <kal...@ee...>\n" @@ -358,8 +358,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "Jah" @@ -429,8 +429,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -698,7 +698,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "Sisesta informatsioon" @@ -13898,8 +13898,8 @@ msgid "Run Report" msgstr "" -#: GLAccounts.php:10 -msgid "Without setting up" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" msgstr "" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 @@ -14307,10 +14307,6 @@ msgid "Could not update the chartdetails record because" msgstr "" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "" @@ -15739,7 +15735,7 @@ msgid "View any open tenders without an offer" msgstr "" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "" @@ -37084,23 +37080,23 @@ msgid "If you leave the password boxes empty your password will not change" msgstr "" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "" @@ -38491,22 +38487,26 @@ msgstr "" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" +msgid "Display dashboard" msgstr "" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "" Modified: trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/fa_IR.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: 2013-06-01 11:25-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: Persian <hos...@io...>\n" @@ -366,8 +366,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "بلی" @@ -437,8 +437,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -707,7 +707,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "ورود اطلاعات" @@ -14234,8 +14234,8 @@ msgid "Run Report" msgstr "اجرای گزارش" -#: GLAccounts.php:10 -msgid "Without setting up" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" msgstr "" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 @@ -14671,10 +14671,6 @@ msgid "Could not update the chartdetails record because" msgstr "ممکن است به دلیل بروز رسانی ثبت chartdetails نیست" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "" @@ -16147,7 +16143,7 @@ msgid "View any open tenders without an offer" msgstr "" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "وضعیت اکانت" @@ -37792,23 +37788,23 @@ msgid "If you leave the password boxes empty your password will not change" msgstr "" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "" @@ -39199,22 +39195,26 @@ msgstr "" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" +msgid "Display dashboard" msgstr "" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "" Modified: trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/fr_CA.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: 2015-02-06 10:12-0600\n" "Last-Translator: Rafael Chacon <raf...@gm...>\n" "Language-Team: french <none>\n" @@ -375,8 +375,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "Oui" @@ -446,8 +446,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -717,7 +717,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "Valider" @@ -14512,9 +14512,9 @@ msgid "Run Report" msgstr "Exécuter un rapport" -#: GLAccounts.php:10 -msgid "Without setting up" -msgstr "" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" +msgstr "Non configuré" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 msgid "No effect on cash flow" @@ -14954,10 +14954,6 @@ msgid "Could not update the chartdetails record because" msgstr "Impossible de mettre à jour l'enregistrement parce chartdetails" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "" @@ -16457,7 +16453,7 @@ msgid "View any open tenders without an offer" msgstr "" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "Statut du Compte" @@ -39149,23 +39145,23 @@ msgstr "" "Si vous laissez le mot de passe vide, votre mot de passe ne changera pas" -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF Language Support" msgstr "Prise en charge linguistique PDF" @@ -40699,22 +40695,26 @@ msgstr "Pas une seule connexion vendeur" #: WWW_Users.php:732 -msgid "Display Dashboard after Login" +msgid "Display dashboard" msgstr "" -#: WWW_Users.php:793 +#: WWW_Users.php:742 +msgid "Show dashboard page after Login" +msgstr "" + +#: WWW_Users.php:795 msgid "Allowed Department for Internal Requests" msgstr "" -#: WWW_Users.php:803 WWW_Users.php:805 +#: WWW_Users.php:805 WWW_Users.php:807 msgid "Any Internal Department" msgstr "" -#: WWW_Users.php:823 WWW_Users.php:827 +#: WWW_Users.php:825 WWW_Users.php:829 msgid "Open" msgstr "Actif" -#: WWW_Users.php:824 WWW_Users.php:826 +#: WWW_Users.php:826 WWW_Users.php:828 msgid "Blocked" msgstr "Bloqu" Modified: trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.po =================================================================== --- trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.po 2017-04-13 17:43:45 UTC (rev 7754) +++ trunk/locale/fr_FR.utf8/LC_MESSAGES/messages.po 2017-04-15 20:13:36 UTC (rev 7755) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: webERP 4.13\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-04-13 11:01-0600\n" +"POT-Creation-Date: 2017-04-15 14:11-0600\n" "PO-Revision-Date: 2016-12-20 11:01-0600\n" "Last-Translator: Rafael E. Chacón <raf...@gm...>\n" "Language-Team: French <none>\n" @@ -380,8 +380,8 @@ #: TestPlanResults.php:928 UserGLAccounts.php:187 UserGLAccounts.php:196 #: UserSettings.php:209 UserSettings.php:212 UserSettings.php:224 #: UserSettings.php:227 WWW_Users.php:549 WWW_Users.php:551 WWW_Users.php:720 -#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:749 -#: WWW_Users.php:752 WWW_Users.php:764 WWW_Users.php:767 +#: WWW_Users.php:723 WWW_Users.php:736 WWW_Users.php:739 WWW_Users.php:751 +#: WWW_Users.php:754 WWW_Users.php:766 WWW_Users.php:769 #: reportwriter/languages/en_US/reports.php:114 msgid "Yes" msgstr "Oui" @@ -451,8 +451,8 @@ #: TestPlanResults.php:927 UserGLAccounts.php:189 UserGLAccounts.php:199 #: UserSettings.php:208 UserSettings.php:211 UserSettings.php:223 #: UserSettings.php:226 WWW_Users.php:548 WWW_Users.php:552 WWW_Users.php:719 -#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:748 -#: WWW_Users.php:751 WWW_Users.php:763 WWW_Users.php:766 +#: WWW_Users.php:722 WWW_Users.php:735 WWW_Users.php:738 WWW_Users.php:750 +#: WWW_Users.php:753 WWW_Users.php:765 WWW_Users.php:768 #: includes/PDFLowGPPageHeader.inc:44 #: reportwriter/languages/en_US/reports.php:82 msgid "No" @@ -721,7 +721,7 @@ #: StockCategories.php:653 SupplierContacts.php:284 SuppLoginSetup.php:291 #: TaxAuthorities.php:327 TaxCategories.php:244 TaxProvinces.php:234 #: TestPlanResults.php:967 UnitsOfMeasure.php:241 WorkCentres.php:289 -#: WWW_Users.php:835 +#: WWW_Users.php:837 msgid "Enter Information" msgstr "Valider" @@ -14764,9 +14764,9 @@ msgid "Run Report" msgstr "Afficher un rapport" -#: GLAccounts.php:10 -msgid "Without setting up" -msgstr "" +#: GLAccounts.php:10 GLCashFlowsIndirect.php:15 +msgid "Not set up" +msgstr "Non configuré" #: GLAccounts.php:11 GLAccounts.php:272 GLCashFlowsIndirect.php:16 msgid "No effect on cash flow" @@ -15207,10 +15207,6 @@ msgid "Could not update the chartdetails record because" msgstr "Impossible de mettre à jour l'enregistrement parce chartdetails" -#: GLCashFlowsIndirect.php:15 -msgid "Not set up" -msgstr "" - #: GLCashFlowsIndirect.php:17 msgid "Operating activities" msgstr "Activités d'exploitation" @@ -16745,7 +16741,7 @@ msgid "View any open tenders without an offer" msgstr "" -#: index.php:38 WWW_Users.php:820 +#: index.php:38 WWW_Users.php:822 msgid "Account Status" msgstr "Statut du compte" @@ -39907,23 +39903,23 @@ msgid "If you leave the password boxes empty your password will not change" msgstr "Si vous laissez le mot de passe vide, il ne sera pas modifié." -#: UserSettings.php:205 WWW_Users.php:745 +#: UserSettings.php:205 WWW_Users.php:747 msgid "Display page help" msgstr "" -#: UserSettings.php:215 WWW_Users.php:755 +#: UserSettings.php:215 WWW_Users.php:757 msgid "Show page help when available" msgstr "" -#: UserSettings.php:220 WWW_Users.php:760 +#: UserSettings.php:220 WWW_Users.php:762 msgid "Display field help" msgstr "" -#: UserSettings.php:230 WWW_Users.php:770 +#: UserSettings.php:230 WWW_Users.php:772 msgid "Show field help when available" msgstr "" -#: UserSettings.php:238 WWW_Users.php:778 +#: UserSettings.php:238 WWW_Users.php:780 msgid "PDF La... [truncated message content] |