diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d40ee4b..3b1defc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,14 +15,21 @@ jobs: - name: Install packages run: composer install --prefer-dist --no-progress --no-suggest --no-dev + - name: Install gettext + run: sudo apt update && sudo apt install -y gettext + + - name: Compile .MO files + run: composer run translates:compile + - name: Create plugin directory run: mkdir -p /tmp/woosms-sms-module-for-woocommerce - name: Copy plugin files - run: cp -r assets src vendor .compatibility.php LICENSE readme.txt woosms-* /tmp/woosms-sms-module-for-woocommerce + run: cp -r --parents assets languages/*.mo src vendor .compatibility.php LICENSE readme.txt woosms-* /tmp/woosms-sms-module-for-woocommerce - name: Create plugin zip - run: cd /tmp && zip -r woosms-sms-module-for-woocommerce.zip woosms-sms-module-for-woocommerce + run: zip -r woosms-sms-module-for-woocommerce.zip woosms-sms-module-for-woocommerce + working-directory: /tmp - name: Add archive to release run: gh release upload ${{github.ref_name}} /tmp/woosms-sms-module-for-woocommerce.zip diff --git a/.gitignore b/.gitignore index 0a3ada1..c25f945 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ composer.lock coverage.html tests/**/output/*.actual tests/**/output/*.expected +languages/*.mo diff --git a/composer.json b/composer.json index 5ee7970..2fe7625 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,11 @@ "scripts": { "tester": "tester -C tests --colors=1", "coverage": "tester -C --coverage=coverage.html --coverage-src=src --stop-on-fail", - "phpstan": "phpstan analyse -c phpstan.neon --memory-limit=1G" + "phpstan": "phpstan analyse -c phpstan.neon --memory-limit=1G", + "translates:extract": "git ls-files \"*.php\" | xgettext --language=PHP --keyword=esc_html__ --keyword=esc_html_e --keyword=esc_attr__ --keyword=esc_attr_e --keyword=__ --keyword=_e --no-wrap --from-code=UTF-8 --output=languages/template.pot -f -", + "translates:update": "git ls-files -z \"languages/*.po\" | xargs -0 -I {} msgmerge --no-wrap -o {} {} languages/template.pot", + "translates:compile": "for file in languages/*.po; do msgfmt -o \"${file%.po}.mo\" \"$file\"; done", + "translates": ["@translates:extract", "@translates:update", "@translates:compile"] }, "config": { "allow-plugins": { diff --git a/languages/CustomTranslations.php b/languages/CustomTranslations.php new file mode 100644 index 0000000..ca0d46b --- /dev/null +++ b/languages/CustomTranslations.php @@ -0,0 +1,9 @@ +Nový` (`CTRL + N`) +3. Vyberte jazyk překladu ze seznamu pro vybranou zemi (např.: kanadská francouzština) a potvrďte - `OK`. +4. Uložte soubor (`CTRL + S`) - zobrazí se dialogové okno `Uložit jako`. Vložte textový název domény s kódem jazyka a země (např.: `woosms-sms-module-for-woocommerce-fr_CA.po`). Vyberte adresář v rámci vašeho projektu, kam má být soubor uložen (`/languages`) +5. Uložte +6. V PhpStormu přejděte do adresáře s překlady (`/languages`) a zkopírujte obsah libovolného již přeloženého `.po` souboru i s hlavičkou. +7. Přejděte do ChatGPT a vložte +8. V ChatGPT nechte přeložit obsah `.po` souboru (s vyplněnými `msgid "Original text"`) do vybraného jazyka. Přeložené texty se doplní do `msgstr "Přeložený text"`. +9. Zkopírujte výstup a vložte jej do souboru vybraného jazyka (`woosms-sms-module-for-woocommerce-fr_CA.po`) v adresáři `/languages`. Poeditem automaticky vygenerovaná hlavička je nahrazena. +10. Přepněte se zpět do Poeditu, kde se objeví nové překlady. Překlady zkontrolujte, popřípadě upravte. +11. Uložte (pokud máte v `Soubor->Nastavení->Obecné->Editace` zaškrtnutou volbu `Při uložení automaticky zkompilovat MO soubor` vytvoří se vám ve stejném adresáři nový zkompilovaný `woosms-sms-module-for-woocommerce-fr_CA.mo` soubor) +12. Pokud nechcete `.mo` soubory ukládat (tyto soubory v gitu netrackujeme, slouží například pro testováni na localhostu) zrušte zaškrtnutí této volby. +13. Při instalaci pluginu se .po soubory automaticky zkompilují do .mo formátu (release.yml) - GitHub Actions + +### Doplnění nové fráze do již existujícího jazyka +1. Ve zdrojovém kódu souboru (například Meta.php) vložte novou frázi v angličtině (EN slouží jako default v případě, že nemáme překlad do daného jazyka) do překladové funkce podle použití - např.: `esc_html__('New translation')` (dokumentace funkcí zde - https://developer.wordpress.org/reference/functions/) +2. Otevřete program Poedit a otevřete soubor s překladem v jazyce, který chcete překládat (např.: `woosms-sms-module-for-woocommerce-fr_CA.po`). +3. Dejte `Překlad->Aktualizovat za zdrojového kódu` nebo klikněte na tlačítko `Aktualizovat z kódu`. V dialogovém okně `Výsledek aktualizace` potvrďte vložení nového řetězce. +4. Přeložte nebo uložte a dejte na překlad. +5. Uložte soubor. \ No newline at end of file diff --git a/languages/template.pot b/languages/template.pot new file mode 100644 index 0000000..184adc6 --- /dev/null +++ b/languages/template.pot @@ -0,0 +1,94 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "" + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "" + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "" + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "" diff --git a/languages/woosms-sms-module-for-woocommerce-ar.po b/languages/woosms-sms-module-for-woocommerce-ar.po new file mode 100644 index 0000000..793d18f --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-ar.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 13:59+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "إضافة BulkGate للرسائل النصية لـ WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "أبلغ عملاءك بحالة الطلب عبر إشعارات الرسائل النصية." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate تصحيح" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "تعتبر هذه الصفحة أداة شاملة للمستخدمين لمراقبة وتحليل وتتبع الأخطاء في البرنامج المساعد ، بما في ذلك تتبع الأخطاء في السجل. كما توفر معلومات أساسية وإمكانيات حل المشكلات." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "اختبار المتطلبات" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "سجل الأخطاء" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "فاصل إرسال BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "فاصل التزامن BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "يجب أن تكون مسجلاً لتشغيل البرنامج المساعد." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "تسجيل الدخول" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "مكتب المساعدة" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "قائمة الأسعار" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "قناة يوتيوب" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "اتصل بنا" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "شروط الخدمة" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "سياسة الخصوصية" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "تصحيح" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "تسجيل الدخول" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "الإعدادات" diff --git a/languages/woosms-sms-module-for-woocommerce-bg_BG.po b/languages/woosms-sms-module-for-woocommerce-bg_BG.po new file mode 100644 index 0000000..ca47d4b --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-bg_BG.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 12:11+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: bg_BG\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Плъгин за WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Уведомявайте клиентите си за статуса на поръчката чрез SMS уведомления." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Отстраняване на грешки BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Тази страница служи като комплексен инструмент за потребителите за наблюдение, анализ и отстраняване на проблеми с плъгина, включително проследяване на грешки в дневника. Тя предоставя също важна информация и възможности за отстраняване на неизправности." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Тест на изискванията" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Дневник на грешките" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Интервал за изпращане на BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Интервал за синхронизация на BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Трябва да сте влезли в системата, за да използвате плъгина." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Вход" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Център за помощ" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Ценова листа" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Канал в YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Свържете се с нас" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Условия за ползване" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Политика за поверителност" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Отстраняване на грешки" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Вход" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Настройки" diff --git a/languages/woosms-sms-module-for-woocommerce-cs_CZ.po b/languages/woosms-sms-module-for-woocommerce-cs_CZ.po new file mode 100644 index 0000000..068bfee --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-cs_CZ.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-15 08:50+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Plugin pro WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Informujte vaše zákazníky o stavu jejich objednávky prostřednictvím SMS oznámení." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Režim ladění služby BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Tato stránka slouží uživatelům jako komplexní nástroj pro sledování, analýzu a řešení problémů pluginu, včetně sledování chyb v protokolu. Poskytuje také základní informace a možnosti řešení problémů." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Test požadavků" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Protokol chyb" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Interval odesílání služby BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Interval synchronizace služby BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Aby plugin fungoval, musíte být přihlášeni." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Přihlásit se" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Nápověda" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Ceník" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Kanál YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Kontaktujte nás" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Podmínky služby" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Zásady ochrany osobních údajů" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Režim ladění" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Přihlásit se" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Nastavení" diff --git a/languages/woosms-sms-module-for-woocommerce-da_DK.po b/languages/woosms-sms-module-for-woocommerce-da_DK.po new file mode 100644 index 0000000..3a95bb7 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-da_DK.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 12:15+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: da_DK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Plugin til WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Underret dine kunder om ordrestatus via SMS-notifikationer." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate Fejlfinding" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Denne side fungerer som et omfattende værktøj for brugerne til at overvåge, analysere og fejlfinde plugin'et, herunder sporing af fejl i loggen. Den giver også vigtig information og fejlfindingsevner." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Kravtest" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Fejllog" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate Sendingsinterval" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate Synkroniseringsinterval" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Du skal være logget ind for at få plugin'et til at fungere." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Log ind" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Supportcenter" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Prisliste" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube-kanal" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Kontakt os" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Servicevilkår" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Fortrolighedspolitik" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Fejlfinding" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Log ind" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Indstillinger" diff --git a/languages/woosms-sms-module-for-woocommerce-de_DE.po b/languages/woosms-sms-module-for-woocommerce-de_DE.po new file mode 100644 index 0000000..5a04b17 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-de_DE.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 09:35+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Plugin für WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Benachrichtigen Sie Ihre Kunden über den Bestellstatus per SMS-Benachrichtigung." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Debug von BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Diese Seite dient als umfassendes Werkzeug für Benutzer, um das Plugin zu überwachen, zu analysieren und zu debuggen, einschließlich der Verfolgung von Fehlern im Protokoll. Es bietet auch grundlegende Informationen und Fehlerbehebungsmöglichkeiten." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Anforderungstest" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Fehlerprotokoll" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Sendeintervall von BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Synchronisierungsintervall von BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Sie müssen angemeldet sein, um das Plugin zu verwenden." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Einloggen" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Hilfezentrum" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Preisliste" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube-Kanal" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Kontaktiere uns" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Datenschutzrichtlinie" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Debuggen" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Anmelden" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Einstellungen" diff --git a/languages/woosms-sms-module-for-woocommerce-el_GR.po b/languages/woosms-sms-module-for-woocommerce-el_GR.po new file mode 100644 index 0000000..6a35a3e --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-el_GR.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 12:33+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: el_GR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS plugin για το WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Ειδοποιήστε τους πελάτες σας σχετικά με την κατάσταση της παραγγελίας μέσω ειδοποιήσεων SMS." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Αποσφαλμάτωση BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Αυτή η σελίδα λειτουργεί ως ένα συνολικό εργαλείο για τους χρήστες για την παρακολούθηση, ανάλυση και επίλυση προβλημάτων του πρόσθετου, συμπεριλαμβανομένης της καταγραφής σφαλμάτων στο αρχείο καταγραφής. Παρέχει επίσης βασικές πληροφορίες και δυνατότητες επίλυσης προβλημάτων." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Δοκιμή απαιτήσεων" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Αρχείο καταγραφής σφαλμάτων" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Διάστημα αποστολής BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Διάστημα συγχρονισμού BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Πρέπει να είστε συνδεδεμένοι για να λειτουργήσετε το πρόσθετο." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Συνδεθείτε" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Τμήμα υποστήριξης" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Τιμοκατάλογος" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Κανάλι YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Επικοινωνήστε μαζί μας" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Όροι χρήσης" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Πολιτική απορρήτου" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Αποσφαλμάτωση" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Σύνδεση" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Ρυθμίσεις" diff --git a/languages/woosms-sms-module-for-woocommerce-es_ES.po b/languages/woosms-sms-module-for-woocommerce-es_ES.po new file mode 100644 index 0000000..b894f65 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-es_ES.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 09:35+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: cs_CZ\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Plugin para WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Informe a sus clientes del estado de sus pedidos mediante notificaciones por SMS." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Depuración de BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Esta página sirve como herramienta integral para que los usuarios supervisen, analicen y solucionen problemas del plugin, incluido el seguimiento de errores en el registro. También proporciona información esencial y funciones de solución de problemas." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Prueba de requisitos" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Registro de errores" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Intervalo de envío de BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Intervalo de sincronización de BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Debe iniciar sesión para que el plugin funcione." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Iniciar sesión" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Asistencia técnica" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Lista de precios" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Canal de YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Contáctenos" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Condiciones de uso" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Política de privacidad" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Depuración" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Iniciar sesión" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Configuración" diff --git a/languages/woosms-sms-module-for-woocommerce-et_EE.po b/languages/woosms-sms-module-for-woocommerce-et_EE.po new file mode 100644 index 0000000..3396f0b --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-et_EE.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 12:26+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: et_EE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS plugin WooCommerce'ile" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Teavitage oma kliente tellimuse oleku kohta SMS-teadete kaudu." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate tõrkeotsing" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "See leht toimib kasutajatele plugini jälgimiseks, analüüsimiseks ja tõrkeotsinguks, sealhulgas veatuste jälgimiseks logis. See pakub ka olulist teavet ja tõrkeotsingu võimalusi." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Nõuete test" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Vigade logi" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate saatmise intervall" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate sünkroniseerimise intervall" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Plugini tööle saamiseks peate sisse logima." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Logi sisse" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Abilaud" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Hinnakiri" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube'i kanal" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Võtke meiega ühendust" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Teenuse tingimused" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Privaatsuspoliitika" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Tõrkeotsing" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Logi sisse" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Seaded" diff --git a/languages/woosms-sms-module-for-woocommerce-fi_FI.po b/languages/woosms-sms-module-for-woocommerce-fi_FI.po new file mode 100644 index 0000000..51e8e0e --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-fi_FI.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 13:21+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: fi_FI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS-liitännäinen WooCommerceen" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Ilmoita asiakkaillesi tilauksen tilasta tekstiviesti-ilmoituksilla." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate vianmääritys" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Tämä sivu toimii kattavana työkaluna käyttäjille seurata, analysoida ja vianmäärätä liitännäistä, mukaan lukien virheiden seuranta lokissa. Se tarjoaa myös olennaisia tietoja ja vianmääritysmahdollisuuksia." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Vaatimusten testaus" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Virheloki" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate-lähetyksen väli" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate-synkronointiväli" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Sinun on oltava kirjautuneena saadaksesi liitännäisen toimimaan." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Kirjaudu sisään" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Asiakaspalvelu" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Hintaluettelo" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube-kanava" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Ota yhteyttä" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Palveluehdot" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Tietosuojakäytäntö" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Vianmääritys" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Kirjaudu sisään" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Asetukset" diff --git a/languages/woosms-sms-module-for-woocommerce-fr_FR.po b/languages/woosms-sms-module-for-woocommerce-fr_FR.po new file mode 100644 index 0000000..7bffa0a --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-fr_FR.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 10:03+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: fr_FR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "Plugin SMS BulkGate pour WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Informez vos clients de l'état de leur commande via des notifications SMS." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Débogage BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Cette page sert d'outil complet pour que les utilisateurs puissent surveiller, analyser et résoudre les problèmes du plugin, y compris le suivi des erreurs dans le journal. Elle fournit également des informations essentielles et des capacités de dépannage." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Test des exigences" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Journal des erreurs" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Intervalle d'envoi de BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Intervalle de synchronisation de BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Vous devez être connecté pour que le plugin fonctionne." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Se connecter" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Service d'assistance" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Liste des prix" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Chaîne YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Contactez-nous" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Conditions d'utilisation" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Politique de confidentialité" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Débogage" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Se connecter" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Paramètres" diff --git a/languages/woosms-sms-module-for-woocommerce-he_IL.po b/languages/woosms-sms-module-for-woocommerce-he_IL.po new file mode 100644 index 0000000..9effd79 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-he_IL.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 14:04+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: he_IL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate תוסף ה-SMS עבור WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "הודע ללקוחותיך על מעמד ההזמנה דרך הודעות SMS." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "ניפוי באגים של BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "דף זה משמש ככלי מקיף למשתמשים למעקב, ניתוח ופתרון בעיות בתוסף, כולל מעקב אחר שגיאות בלוג. הוא מספק גם מידע יסודי ויכולות לפתרון בעיות." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "בדיקת דרישות" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "יומן שגיאות" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "מרווח שליחת BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "מרווח סנכרון BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "עליך להיות מחובר כדי להפעיל את התוסף." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "התחבר" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "דסק מידע" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "רשימת מחירים" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "ערוץ YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "צור קשר" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "תנאי השירות" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "מדיניות פרטיות" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "ניפוי באגים" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "התחבר" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "הגדרות" diff --git a/languages/woosms-sms-module-for-woocommerce-hr_HR.po b/languages/woosms-sms-module-for-woocommerce-hr_HR.po new file mode 100644 index 0000000..4d26fe7 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-hr_HR.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 12:42+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: hr_HR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS dodatak za WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Obavijestite svoje kupce o statusu narudžbe putem SMS obavijesti." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate otklanjanje pogrešaka" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Ova stranica služi kao sveobuhvatan alat za korisnike za praćenje, analizu i otklanjanje poteškoća u dodatku, uključujući praćenje pogrešaka u zapisniku. Također pruža osnovne informacije i mogućnosti otklanjanja poteškoća." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Test zahtjeva" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Zapisnik pogrešaka" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Interval slanja u BulkGate-u" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Interval sinkronizacije u BulkGate-u" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Morate biti prijavljeni da biste koristili dodatak." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Prijavite se" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Pomoćna radna površina" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Cjenik" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube kanal" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Kontaktirajte nas" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Uvjeti pružanja usluge" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Pravila privatnosti" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Otklanjanje pogrešaka" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Prijavite se" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Postavke" diff --git a/languages/woosms-sms-module-for-woocommerce-hu_HU.po b/languages/woosms-sms-module-for-woocommerce-hu_HU.po new file mode 100644 index 0000000..14ff100 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-hu_HU.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 10:37+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: hu_HU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS bővítmény a WooCommerce-hez" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Értesítse vásárlóit a rendelés állapotáról SMS-értesítéseken keresztül." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate hibakeresés" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Ez az oldal egy átfogó eszközként szolgál a felhasználóknak a bővítmény figyeléséhez, elemzéséhez és hibaelhárításához, beleértve a naplóban található hibák követését is. Alapvető információkat és hibaelhárítási lehetőségeket is biztosít." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Követelmények tesztje" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Hiba napló" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate küldési időköz" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate szinkronizációs időköz" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Be kell jelentkeznie a bővítmény használatához." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Bejelentkezés" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Segítségkérés" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Árlista" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube-csatorna" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Kapcsolatfelvétel" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Szolgáltatási feltételek" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Adatvédelmi irányelvek" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Hibakeresés" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Bejelentkezés" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Beállítások" diff --git a/languages/woosms-sms-module-for-woocommerce-is_IS.po b/languages/woosms-sms-module-for-woocommerce-is_IS.po new file mode 100644 index 0000000..73d9ae9 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-is_IS.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-15 10:39+0100\n" +"Last-Translator: Jakub Andrysek \n" +"Language-Team: \n" +"Language: is\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Viðbótin fyrir WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Tilkynni viðskiptavinum þínum um stöðu pöntunar með SMS tilkynningum." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate Vegna villugreining" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Þessi síða er umfangsmikið tól fyrir notendur til að fylgjast með, greina og leysa vandamál með viðbótina, þar á meðal að rekja villa í dagbókinni. Hún veitir einnig nauðsynlegar upplýsingar og getu til að leysa vandamál." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Kröfurpróf" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Villudagbók" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate Senda Bil" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate Samhæfa Bil" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Þú verður að skrá þig inn til að nota viðbótina." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Skrá inn" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Hjálparborð" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Verðskrá" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube Kanal" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Hafðu samband" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Þjónustuskilmálar" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Persónuverndarstefna" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Villaugreining" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Skrá inn" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Stillingar" diff --git a/languages/woosms-sms-module-for-woocommerce-it_IT.po b/languages/woosms-sms-module-for-woocommerce-it_IT.po new file mode 100644 index 0000000..2217aa8 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-it_IT.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 09:35+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: it_IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "Plugin SMS BulkGate per WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Informate i vostri clienti sullo stato degli ordini tramite notifiche via SMS." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Debug di BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Questa pagina funge da strumento completo per gli utenti per monitorare, analizzare e risolvere i problemi del plugin, inclusa la tracciatura degli errori nel log. Fornisce inoltre informazioni essenziali e capacità di risoluzione dei problemi." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Test dei requisiti" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Log degli errori" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Intervallo di invio di BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Intervallo di sincronizzazione di BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Devi essere loggato per far funzionare il plugin." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Accedi" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Servizio di assistenza" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Listino prezzi" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Canale YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Contattaci" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Termini di servizio" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Informativa sulla privacy" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Debug" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Accedi" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Impostazioni" diff --git a/languages/woosms-sms-module-for-woocommerce-ja_JP.po b/languages/woosms-sms-module-for-woocommerce-ja_JP.po new file mode 100644 index 0000000..0dbec1d --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-ja_JP.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 13:46+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ja_JP\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "WooCommerce用のBulkGate SMSプラグイン" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "注文のステータスについて顧客にSMS通知でお知らせします。" + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGateデバッグ" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "このページは、ユーザーがプラグインを監視、分析、トラブルシュート(トラブル解決)するための包括的なツールとして機能し、ログ内のエラーのトラッキングを含む。また、基本的な情報とトラブルシューティングの機能も提供しています。" + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "要件テスト" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "エラーログ" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate送信間隔" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate同期間隔" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "プラグインを動作させるにはログインする必要があります。" + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "ログイン" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "ヘルプデスク" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "価格リスト" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTubeチャンネル" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "お問い合わせ" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "利用規約" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "プライバシーポリシー" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "デバッグ" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "ログイン" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "設定" diff --git a/languages/woosms-sms-module-for-woocommerce-ko_KR.po b/languages/woosms-sms-module-for-woocommerce-ko_KR.po new file mode 100644 index 0000000..dbc99d5 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-ko_KR.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 13:49+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ko_KR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "WooCommerce용 BulkGate SMS 플러그인" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "SMS 통지를 통해 주문 상태를 고객에게 알립니다." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate 디버그" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "이 페이지는 사용자가 로그의 오류를 추적을 포함한 플러그인을 모니터링, 분석 및 문제 해결하는 종합 도구로 기능합니다. 또한 필수 정보 및 문제 해결 능력을 제공합니다." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "요구 사항 테스트" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "오류 로그" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate 전송 간격" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate 동기화 간격" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "플러그인을 작동시키려면 로그인해야 합니다." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "로그인" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "도움말 데스크" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "가격 목록" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube 채널" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "문의하기" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "서비스 약관" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "개인정보 보호 정책" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "디버그" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "로그인" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "설정" diff --git a/languages/woosms-sms-module-for-woocommerce-lt_LT.po b/languages/woosms-sms-module-for-woocommerce-lt_LT.po new file mode 100644 index 0000000..01662de --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-lt_LT.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 10:50+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: lt_LT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS įskiepis WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Praneškite savo klientams apie užsakymo būklę per SMS pranešimus." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate derinimas" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Ši puslapis veikia kaip išsami priemonė naudotojams stebėti, analizuoti ir šalinti šio įskiepio problemas, įskaitant klaidų stebėjimą žurnale. Taip pat jis teikia pagrindinę informaciją ir problemas sprendimo galimybes." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Reikalavimų testas" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Klaidų žurnalas" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate siuntimo intervalas" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate sinchronizacijos intervalas" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Norėdami naudoti įskiepį, turite būti prisijungę." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Prisijungti" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Pagalbos tarnyba" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Kainų sąrašas" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube kanalas" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Susisiekite su mumis" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Paslaugų teikimo sąlygos" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Privatumo politika" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Derinimas" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Prisijungti" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Nustatymai" diff --git a/languages/woosms-sms-module-for-woocommerce-lv_LV.po b/languages/woosms-sms-module-for-woocommerce-lv_LV.po new file mode 100644 index 0000000..35d8283 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-lv_LV.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 12:46+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: lv_LV\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS spraudnis WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Informējiet savus klientus par pasūtījuma statusu, izmantojot SMS paziņojumus." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate kļūdu labošana" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Šī lapa kalpo kā visaptverošs rīks lietotājiem, lai uzraudzītu, analizētu un novērstu spraudni, ieskaitot kļūdu izsekošanu žurnālā. Tā arī nodrošina būtisku informāciju un problēmu novēršanas iespējas." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Prasību pārbaude" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Kļūdu žurnāls" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate sūtīšanas intervāls" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate sinhronizācijas intervāls" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Lai spraudnis darbotos, jums jāpiesakās." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Piesakieties" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Palīdzības birojs" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Cenrādis" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube kanāls" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Sazinieties ar mums" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Pakalpojuma noteikumi" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Konfidencialitātes politika" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Kļūdu labošana" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Piesakieties" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Iestatījumi" diff --git a/languages/woosms-sms-module-for-woocommerce-nb_NO.po b/languages/woosms-sms-module-for-woocommerce-nb_NO.po new file mode 100644 index 0000000..6a904b2 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-nb_NO.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 12:52+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: nb_NO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS-tillegg for WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Varsle kundene dine om bestillingsstatus via SMS-varsler." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate feilsøking" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Denne siden fungerer som et omfattende verktøy for brukere for å overvåke, analysere og feilsøke tillegget, inkludert sporing av feil i loggen. Den gir også grunnleggende informasjon og feilsøkingsmuligheter." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Kravstest" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Feillogg" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate Sendingsintervall" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate Synkroniseringsintervall" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Du må være logget inn for å bruke tillegget." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Logg inn" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Kundeservice" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Prisliste" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube-kanal" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Kontakt oss" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Vilkår for tjenesten" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Personvernerklæring" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Feilsøking" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Logg inn" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Innstillinger" diff --git a/languages/woosms-sms-module-for-woocommerce-nl_NL.po b/languages/woosms-sms-module-for-woocommerce-nl_NL.po new file mode 100644 index 0000000..699c7a9 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-nl_NL.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 12:35+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: nl_NL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Plugin voor WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Informeer uw klanten over de status van hun bestelling via SMS-meldingen." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate Debuggen" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Deze pagina dient als een uitgebreid instrument voor gebruikers om het plugin te monitoren, analyseren en problemen op te lossen, inclusief het volgen van fouten in het logboek. Het biedt ook essentiële informatie en probleemoplossingsmogelijkheden." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Vereisten testen" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Foutenlogboek" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate Verzendinterval" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate Synchronisatie-interval" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "U moet ingelogd zijn om de plugin te laten werken." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Log in" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Helpdesk" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Prijslijst" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube-kanaal" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Contacteer ons" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Privacybeleid" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Debuggen" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Log in" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Instellingen" diff --git a/languages/woosms-sms-module-for-woocommerce-pl_PL.po b/languages/woosms-sms-module-for-woocommerce-pl_PL.po new file mode 100644 index 0000000..753d20c --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-pl_PL.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 10:56+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: pl_PL\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate Wtyczka SMS dla WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Powiadamiaj klientów o statusie zamówienia za pomocą powiadomień SMS." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Debugowanie BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Ta strona pełni funkcję kompleksowego narzędzia do monitorowania, analizy i rozwiązywania problemów z wtyczką, w tym śledzenia błędów w dzienniku. Zapewnia również podstawowe informacje i możliwości rozwiązywania problemów." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Test wymagań" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Dziennik błędów" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Interwał wysyłania BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Interwał synchronizacji BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Aby wtyczka działała, musisz być zalogowany." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Zaloguj się" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Centrum Pomocy" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Cennik" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Kanał YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Skontaktuj się z nami" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Warunki świadczenia usług" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Polityka prywatności" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Debugowanie" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Zaloguj się" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Ustawienia" diff --git a/languages/woosms-sms-module-for-woocommerce-pt_PT.po b/languages/woosms-sms-module-for-woocommerce-pt_PT.po new file mode 100644 index 0000000..b09aeb9 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-pt_PT.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 09:35+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: pt_PT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Plugin para WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Notifique os seus clientes sobre o estado da encomenda através de notificações por SMS." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Depuração do BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Esta página serve como uma ferramenta abrangente para os utilizadores monitorarem, analisarem e resolverem problemas no plugin, incluindo o rastreamento de erros no registo. Também fornece informações essenciais e capacidades de resolução de problemas." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Teste de requisitos" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Registo de erros" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Intervalo de Envio do BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Intervalo de Sincronização do BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Deve estar autenticado para que o plugin funcione." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Iniciar sessão" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Helpdesk" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Lista de Preços" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Canal no YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Contacte-nos" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Termos de Serviço" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Política de Privacidade" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Depuração" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Iniciar sessão" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Configurações" diff --git a/languages/woosms-sms-module-for-woocommerce-ro_RO.po b/languages/woosms-sms-module-for-woocommerce-ro_RO.po new file mode 100644 index 0000000..eb389bf --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-ro_RO.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 09:35+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ro_RO\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Plugin pentru WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Anunțați-vă clienții despre starea comenzii prin notificări SMS." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Depanare BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Această pagină servește ca un instrument cuprinzător pentru utilizatori pentru a monitoriza, analiza și remedia plugin-ul, inclusiv urmărirea erorilor în jurnal. De asemenea, furnizează informații esențiale și capacități de depanare." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Test cerințe" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Jurnal de erori" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Interval trimitere BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Interval sincronizare BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Trebuie să vă autentificați pentru a folosi modulul." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Autentificare" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Serviciu de asistență" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Listă de prețuri" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Canal YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Contactați-ne" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Termeni de serviciu" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Politica de confidențialitate" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Depanare" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Autentificare" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Setări" diff --git a/languages/woosms-sms-module-for-woocommerce-ru_RU.po b/languages/woosms-sms-module-for-woocommerce-ru_RU.po new file mode 100644 index 0000000..70c5d09 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-ru_RU.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 13:00+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: ru_RU\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS плагин для WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Уведомляйте своих клиентов о статусе заказа через SMS-уведомления." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Отладка BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Эта страница служит комплексным инструментом для пользователей для мониторинга, анализа и устранения неполадок в плагине, включая отслеживание ошибок в журнале. Она также предоставляет основную информацию и возможности устранения неполадок." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Тест требований" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Журнал ошибок" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Интервал отправки в BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Интервал синхронизации в BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Вы должны быть авторизованы, чтобы использовать плагин." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Войти" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Служба поддержки" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Прайс-лист" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Канал YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Свяжитесь с нами" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Условия предоставления услуг" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Политика конфиденциальности" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Отладка" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Войти" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Настройки" diff --git a/languages/woosms-sms-module-for-woocommerce-sk_SK.po b/languages/woosms-sms-module-for-woocommerce-sk_SK.po new file mode 100644 index 0000000..ee6b471 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-sk_SK.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 09:35+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: sk_SK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Plugin pre WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Upozornite svojich zákazníkov na stav objednávky prostredníctvom SMS notifikácií." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Ladenie BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Táto stránka slúži ako komplexný nástroj pre užívateľov na monitorovanie, analýzu a odstraňovanie problémov s pluginom, vrátane sledovania chýb v protokole. Poskytuje tiež základné informácie a možnosti odstraňovania problémov." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Test požiadaviek" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Protokol chýb" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Interval odosielania BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Interval synchronizácie BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Pre používanie pluginu sa musíte prihlásiť." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Prihlásiť sa" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Centrum pomoci" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Cenník" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube kanál" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Kontaktujte nás" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Podmienky služby" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Zásady ochrany osobných údajov" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Ladenie" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Prihlásiť sa" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Nastavenia" diff --git a/languages/woosms-sms-module-for-woocommerce-sl_SI.po b/languages/woosms-sms-module-for-woocommerce-sl_SI.po new file mode 100644 index 0000000..de41c4a --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-sl_SI.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 13:03+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: sl_SI\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS vtičnik za WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Opozarjajte svoje stranke o statusu naročila prek SMS-obvestil." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Razhroščevanje BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Ta stran je celovito orodje za uporabnike za spremljanje, analizo in odpravljanje težav s vtičnikom, vključno z beleženjem napak v dnevniku. Prav tako zagotavlja bistvene informacije in sposobnosti odpravljanja težav." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Preizkus zahteve" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Dnevnik napak" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Interval pošiljanja BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Interval sinhronizacije BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Za delovanje vtičnika se morate prijaviti." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Prijavite se" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Pomoč" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Cenik" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube kanal" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Kontaktirajte nas" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Pogoji storitve" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Politika zasebnosti" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Razhroščevanje" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Prijava" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Nastavitve" diff --git a/languages/woosms-sms-module-for-woocommerce-sr_RS.po b/languages/woosms-sms-module-for-woocommerce-sr_RS.po new file mode 100644 index 0000000..5441dd4 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-sr_RS.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 13:14+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: sr_RS\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS додатак за Вукомерце" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Обавестите своје купце о статусу поруџбине путем СМС обавештења." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate дебаговање" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Ова страница служи као комплетан алат за кориснике да прате, анализирају и отклањају проблеме са додатком, укључујући испис грешака у дневнику. Такође пружа основне информације и могућности отклањања проблема." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Тест захтева" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Дневник грешака" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Интервал слања у BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Интервал синхронизације у BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Морате бити пријављени да бисте користили додатак." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Пријавите се" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Помоћна радна станица" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Ценовник" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Јутјуб канал" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Контактирајте нас" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Услови коришћења" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Политика приватности" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Дебаговање" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Пријави се" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Подешавања" diff --git a/languages/woosms-sms-module-for-woocommerce-sv_SE.po b/languages/woosms-sms-module-for-woocommerce-sv_SE.po new file mode 100644 index 0000000..bcaff46 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-sv_SE.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 13:23+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: sv_SE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS-tillägg för WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Meddela dina kunder om beställningsstatus med SMS-notifikationer." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate felsökning" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Denna sida fungerar som ett omfattande verktyg för användare att övervaka, analysera och felsöka pluginet, inklusive spårning av fel i loggen. Den tillhandahåller också väsentlig information och möjligheter för felsökning." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Kravtest" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Fellogg" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate sändningsintervall" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate synkroniseringsintervall" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Du måste vara inloggad för att få pluginet att fungera." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Logga in" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Support" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Prislista" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube-kanal" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Kontakta oss" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Användarvillkor" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Integritetspolicy" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Felsökning" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Logga in" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Inställningar" diff --git a/languages/woosms-sms-module-for-woocommerce-tr_TR.po b/languages/woosms-sms-module-for-woocommerce-tr_TR.po new file mode 100644 index 0000000..ea4f0e9 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-tr_TR.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 13:28+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: tr_TR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "WooCommerce için BulkGate SMS Eklentisi" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Müşterilerinize sipariş durumu hakkında SMS bildirimleri gönderin." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate Hata Ayıklama" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Bu sayfa, kullanıcıların eklentiyi izlemeleri, analiz etmeleri ve sorun gidermeleri için kapsamlı bir araç olarak hizmet verir; bu, günlükteki hataları takip etmek de dahil olmak üzere. Ayrıca temel bilgileri ve sorun giderme yeteneklerini sağlar." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Gereksinimler testi" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Hata günlüğü" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate Gönderim Aralığı" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate Senkronizasyon Aralığı" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Eklentinin çalışması için giriş yapmalısınız." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Giriş yap" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Yardım Masası" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Fiyat Listesi" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube Kanalı" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Bize ulaşın" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Hizmet Şartları" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Gizlilik Politikası" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Hata Ayıklama" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Giriş Yap" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Ayarlar" diff --git a/languages/woosms-sms-module-for-woocommerce-uk_UA.po b/languages/woosms-sms-module-for-woocommerce-uk_UA.po new file mode 100644 index 0000000..4baf484 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-uk_UA.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 11:01+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: uk_UA\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate Плагін SMS для WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Повідомляйте своїх клієнтів про статус замовлення за допомогою SMS-повідомлень." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "Налагодження BulkGate" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Ця сторінка служить як комплексний інструмент для користувачів для моніторингу, аналізу та усунення проблем з плагіном, включаючи відстеження помилок у журналі. Вона також надає основну інформацію та можливості усунення неполадок." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Тест вимог" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Журнал помилок" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Інтервал відправлення BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Інтервал синхронізації BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Для роботи плагіна ви повинні бути увійшли в систему." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Увійти" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Служба підтримки" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Ціновий лист" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Канал YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Зв'яжіться з нами" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Умови надання послуг" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Політика конфіденційності" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Налагодження" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Увійти" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Налаштування" diff --git a/languages/woosms-sms-module-for-woocommerce-vi_VN.po b/languages/woosms-sms-module-for-woocommerce-vi_VN.po new file mode 100644 index 0000000..20f9d96 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-vi_VN.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 13:34+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: vi_VN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate SMS Plugin cho WooCommerce" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "Thông báo trạng thái đơn hàng cho khách hàng qua thông báo SMS." + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate Debug" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "Trang này phục vụ như một công cụ toàn diện cho người dùng theo dõi, phân tích và khắc phục sự cố của plugin, bao gồm theo dõi lỗi trong log. Nó cũng cung cấp thông tin cần thiết và khả năng khắc phục sự cố." + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "Kiểm tra yêu cầu" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "Nhật ký lỗi" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "Khoảng thời gian gửi BulkGate" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "Khoảng thời gian đồng bộ BulkGate" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "Bạn phải đăng nhập để plugin hoạt động." + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "Đăng nhập" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "Bàn trợ giúp" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "Danh sách giá" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "Kênh YouTube" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "Liên hệ chúng tôi" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "Điều khoản dịch vụ" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "Chính sách bảo mật" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "Debug" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "Đăng nhập" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "Cài đặt" diff --git a/languages/woosms-sms-module-for-woocommerce-zh.po b/languages/woosms-sms-module-for-woocommerce-zh.po new file mode 100644 index 0000000..bd15dc4 --- /dev/null +++ b/languages/woosms-sms-module-for-woocommerce-zh.po @@ -0,0 +1,93 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2023-12-20 16:55+0000\n" +"PO-Revision-Date: 2023-12-14 14:07+0100\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Poedit 3.4.1\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: __;esc_html__;esc_attr__;_e;esc_html_e;esc_attr_e\n" +"X-Poedit-SearchPath-0: .\n" + +#: languages/CustomTranslations.php:7 +msgid "BulkGate SMS Plugin for WooCommerce" +msgstr "BulkGate WooCommerce 短信插件" + +#: languages/CustomTranslations.php:8 +msgid "Notify your customers about order status via SMS notifications." +msgstr "透過簡訊通知客戶有關訂單狀態的資訊。" + +#: src/Debug/Page.php:21 +msgid "BulkGate Debug" +msgstr "BulkGate 偵錯" + +#: src/Debug/Page.php:22 +msgid "This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities." +msgstr "此頁面作為用戶監視、分析和疑難排解插件的全面工具,包括追踪日誌中的錯誤。它還提供基本信息和疑難排解功能。" + +#: src/Debug/Page.php:26 +msgid "Requirements test" +msgstr "需求測試" + +#: src/Debug/Page.php:73 +msgid "Error log" +msgstr "錯誤日誌" + +#: src/Event/Cron.php:28 +msgid "BulkGate Sending Interval" +msgstr "BulkGate 發送間隔" + +#: src/Event/Cron.php:33 +msgid "BulkGate Synchronize Interval" +msgstr "BulkGate 同步間隔" + +#: src/Template/Init.php:58 +msgid "You must be logged in to get the plugin working." +msgstr "您必須登入才能啟用插件。" + +#: src/Template/Init.php:58 +msgid "Log in" +msgstr "登入" + +#: src/Utils/Meta.php:33 +msgid "Help Desk" +msgstr "說明台" + +#: src/Utils/Meta.php:34 +msgid "Price List" +msgstr "價格表" + +#: src/Utils/Meta.php:35 +msgid "YouTube Channel" +msgstr "YouTube 頻道" + +#: src/Utils/Meta.php:36 +msgid "Contact us" +msgstr "聯絡我們" + +#: src/Utils/Meta.php:39 +msgid "Terms of Service" +msgstr "服務條款" + +#: src/Utils/Meta.php:40 +msgid "Privacy Policy" +msgstr "隱私政策" + +#: src/Utils/Meta.php:57 +msgid "Debug" +msgstr "偵錯" + +#: src/Utils/Meta.php:61 +msgid "Log In" +msgstr "登入" + +#: src/Utils/Meta.php:65 +msgid "Settings" +msgstr "設定" diff --git a/src/Ajax/PluginSettingsChange.php b/src/Ajax/PluginSettingsChange.php index 68968df..169c240 100644 --- a/src/Ajax/PluginSettingsChange.php +++ b/src/Ajax/PluginSettingsChange.php @@ -58,7 +58,7 @@ public function run(array $unsafe_post_data = []): array return ['data' => ['redirect' => site_url('/?bulkgate-redirect=dashboard')]]; } - return ['data' => ['layout' => ['server' => ['application_settings' => $output]]]]; + return ['data' => ['layout' => ['server' => ['application_settings' => $output]]], 'success' => ['saved']]; } diff --git a/src/Debug/Page.php b/src/Debug/Page.php index 37454c7..402ad35 100644 --- a/src/Debug/Page.php +++ b/src/Debug/Page.php @@ -18,12 +18,12 @@ public static function print(Logger $logger, Requirements $requirements): void { echo '
-

 BulkGate Debug

-

This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities.

 ' . esc_html__('BulkGate Debug','woosms-sms-module-for-woocommerce') . ' +

' . esc_html__('This page serves as a comprehensive tool for users to monitor, analyze, and troubleshoot the plugin, including tracking errors in the log. It also provides essential information and troubleshooting capabilities.','woosms-sms-module-for-woocommerce') . '

'; echo ' -

Requirements test

+

' . esc_html__('Requirements test','woosms-sms-module-for-woocommerce') . '

@@ -70,7 +70,7 @@ public static function print(Logger $logger, Requirements $requirements): void $list = $logger->getList(); - echo '

Error log

'; + echo '

'. esc_html__('Error log','woosms-sms-module-for-woocommerce') . '

'; if ($list !== []) { diff --git a/src/Event/Cron.php b/src/Event/Cron.php index 12ce1bf..4897d51 100644 --- a/src/Event/Cron.php +++ b/src/Event/Cron.php @@ -25,12 +25,12 @@ public static function init(): void { $schedules[self::IntervalSending] ??= [ 'interval' => 60, - 'display' => __('BulkGate Sending Interval') + 'display' => esc_html__('BulkGate Sending Interval','woosms-sms-module-for-woocommerce') ]; $schedules[self::IntervalSynchronization] ??= [ 'interval' => 3_600, - 'display' => __('BulkGate Synchronize Interval') + 'display' => esc_html__('BulkGate Synchronize Interval','woosms-sms-module-for-woocommerce') ]; return $schedules; diff --git a/src/Template/Init.php b/src/Template/Init.php index adc3996..2863810 100644 --- a/src/Template/Init.php +++ b/src/Template/Init.php @@ -8,7 +8,14 @@ */ use BulkGate\Plugin\{Debug\Logger, Debug\Requirements, Eshop, Settings\Settings, Strict, User\Sign, Utils\JsonResponse}; -use BulkGate\WooSms\{Ajax\Authenticate, Ajax\PluginSettingsChange, Debug\Page, DI\Factory, Event\Helpers, Utils\Logo, Utils\Meta}; +use BulkGate\WooSms\{Ajax\Authenticate, + Ajax\PluginSettingsChange, + Debug\Page, + DI\Factory, + Event\Helpers, + Utils\Escape, + Utils\Logo, + Utils\Meta}; use function method_exists, in_array; class Init @@ -39,6 +46,19 @@ public static function init(): void add_filter('plugin_row_meta', [Meta::class, 'links'], 10, 2); }); + add_action('admin_notices', function() { + $allowed_sites = ['plugins', 'shop_order', 'tools_page_bulkgate-debug']; + $screen = get_current_screen(); + $show_notice = in_array($screen->id, $allowed_sites); + $is_logged_in = Factory::get()->getByClass(Settings::class)->load('static:application_token') !== null; + + if ($show_notice && !$is_logged_in) + { + $url = Escape::url(admin_url('admin.php?page=bulkgate#/sign/in')); + echo Meta::notice("" . esc_html('BulkGate SMS:') . " " . esc_html__('You must be logged in to get the plugin working.','woosms-sms-module-for-woocommerce'), ['severity' => 'error', 'button' => "" . esc_html__('Log in') .""]); + } + }); + add_action('add_meta_boxes', function (string $post_type): void { if (in_array($post_type, ['shop_order', 'woocommerce_page_wc-orders'], true) && Factory::get()->getByClass(Settings::class)->load('static:application_token')) diff --git a/src/Utils/Meta.php b/src/Utils/Meta.php index aaf51fd..418dbfd 100644 --- a/src/Utils/Meta.php +++ b/src/Utils/Meta.php @@ -30,14 +30,14 @@ public static function links(array $links, string $file): array } return array_merge($links, [ - 'help_desk' => 'Help Desk', - 'price_list' => 'Price List', - 'youtube_channel' => 'YouTube Channel', - 'contact_us' => 'Contact us', + 'help_desk' => '' . esc_html__('Help Desk','woosms-sms-module-for-woocommerce') . '', + 'price_list' => '' . esc_html__('Price List','woosms-sms-module-for-woocommerce') . '', + 'youtube_channel' => '' . esc_html__('YouTube Channel','woosms-sms-module-for-woocommerce') . '', + 'contact_us' => '' . esc_html__('Contact us','woosms-sms-module-for-woocommerce') . '', 'api' => 'API', 'github' => 'GitHub', - 'terms_of_service' => 'Terms of Service', - 'privacy_policy' => 'Privacy Policy', + 'terms_of_service' => '' . esc_html__('Terms of Service','woosms-sms-module-for-woocommerce') . '', + 'privacy_policy' => '' . esc_html__('Privacy Policy','woosms-sms-module-for-woocommerce') . '', ]); } @@ -54,13 +54,44 @@ public static function settingsLink(array $links, string $file): array */ if (basename(dirname($file)) === BULKGATE_PLUGIN_DIR) { - array_unshift($links, 'Debug'); + array_unshift($links, '' . esc_html__('Debug','woosms-sms-module-for-woocommerce') . ''); if (Factory::get()->getByClass(Settings::class)->load('static:application_token') === null) { - array_unshift($links, 'Log In'); + array_unshift($links, '' . esc_html__('Log In','woosms-sms-module-for-woocommerce') . ''); } + else + { + array_unshift($links, '' . esc_html__('Settings','woosms-sms-module-for-woocommerce') . ''); + } } return $links; } + + public static function notice(string $message, array $attributes = []) + { + $severity = $attributes['severity'] ?? 'info'; + $button = $attributes['button'] ?? null; + $color = ['info' => "secondary-color", 'warning' => 'orange-color', 'error' => 'red-color'][$severity] ?? null; + $icon = $severity === 'info' ? 'info' : 'warning'; + + if ($button) + { + $button = "

$button

"; + } + + return << +
+
+ +
+
+

$message

+ $button +
+ +HTML; + + } } diff --git a/woosms-sms-module-for-woocommerce.php b/woosms-sms-module-for-woocommerce.php index 5943d0d..107cc34 100644 --- a/woosms-sms-module-for-woocommerce.php +++ b/woosms-sms-module-for-woocommerce.php @@ -9,6 +9,8 @@ * Author URI: https://www.bulkgate.com/ * Requires at least: 5.7 * PHP version 7.4 + * Text Domain: woosms-sms-module-for-woocommerce + * Domain Path: /languages * * @category BulkGate plugin for WooCommerce * @package BulkGate