diff --git a/.changeset/wild-squids-lick.md b/.changeset/wild-squids-lick.md deleted file mode 100644 index b9efe035..00000000 --- a/.changeset/wild-squids-lick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wptelegram-login": patch ---- - -Fixed the messed up query params passed by Telegram Mini Apps diff --git a/plugins/wptelegram-login/CHANGELOG.md b/plugins/wptelegram-login/CHANGELOG.md index 3e1b4355..8b8f73f0 100644 --- a/plugins/wptelegram-login/CHANGELOG.md +++ b/plugins/wptelegram-login/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.11.3 + +### Patch Changes + +- [#184](https://github.com/wpsocio/wp-projects/pull/184) [`97ad3cd`](https://github.com/wpsocio/wp-projects/commit/97ad3cdca071bab580779a49240cee064f1b1957) Thanks [@irshadahmad21](https://github.com/irshadahmad21)! - Fixed the messed up query params passed by Telegram Mini Apps + ## 1.11.2 ### Patch Changes diff --git a/plugins/wptelegram-login/README.md b/plugins/wptelegram-login/README.md index a1cd08e1..b02c9389 100644 --- a/plugins/wptelegram-login/README.md +++ b/plugins/wptelegram-login/README.md @@ -5,7 +5,7 @@ **Requires at least:** 6.4 **Requires PHP:** 7.4 **Tested up to:** 6.6.2 -**Stable tag:** 1.11.2 +**Stable tag:** 1.11.3 **License:** GPL-3.0-or-later **License URI:** [https://www.gnu.org/licenses/gpl-3.0.html](https://www.gnu.org/licenses/gpl-3.0.html) **Donate link:** [wpsocio.com/donate](https://wpsocio.com/donate) diff --git a/plugins/wptelegram-login/composer.json b/plugins/wptelegram-login/composer.json index c2c6d9ab..6f4f2171 100644 --- a/plugins/wptelegram-login/composer.json +++ b/plugins/wptelegram-login/composer.json @@ -1,6 +1,6 @@ { "name": "wpsocio/wptelegram-login", - "version": "1.11.2", + "version": "1.11.3", "description": "Let the users login to your website with their Telegram and make it simple for them to get connected and let them receive their email notifications on Telegram.", "scripts": { "gen:docs": "\"vendor/bin/wp-documentor\" parse src --format=markdown --output=docs/README.md --relative=docs", diff --git a/plugins/wptelegram-login/docs/README.md b/plugins/wptelegram-login/docs/README.md index 594bd958..7983434b 100644 --- a/plugins/wptelegram-login/docs/README.md +++ b/plugins/wptelegram-login/docs/README.md @@ -136,6 +136,140 @@ Source: [src/shared/LoginHandler.php](../src/shared/LoginHandler.php), [line 634 ## Filters +### `widget_title` + +*Filters the widget title.* + +**Arguments** + +Argument | Type | Description +-------- | ---- | ----------- +`$title` | `string` | The widget title. Default 'Pages'. +`$instance` | `array` | Array of settings for the current widget. +`$this->id_base` | | + +**Changelog** + +Version | Description +------- | ----------- +`1.0.0` | + +Source: [src/shared/widgets/Primary.php](../src/shared/widgets/Primary.php), [line 46](../src/shared/widgets/Primary.php#L46-L55) + +### `wptelegram_login_redirect_to` + +*Filters the redirect URL for the login button* + +It can be used to fix the wrong URL in case the website is in subdirectory and the URL is invalid. + +**Arguments** + +Argument | Type | Description +-------- | ---- | ----------- +`$redirect_to` | `string` | The redirect URL. + +**Changelog** + +Version | Description +------- | ----------- +`1.0.0` | + +Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 125](../src/shared/Shared.php#L125-L134) + +### `wptelegram_login_telegram_callback_url` + +*Filters the callback URL for the login button* + +It can be used to fix the wrong URL in case the website is in subdirectory and the URL is invalid. + +**Arguments** + +Argument | Type | Description +-------- | ---- | ----------- +`$callback_url` | `string` | The callback URL. + +**Changelog** + +Version | Description +------- | ----------- +`1.0.0` | + +Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 154](../src/shared/Shared.php#L154-L163) + +### `wptelegram_login_show_if_user_connected` + +*Filters whether to show the button if user is already connected.* + +- [Examples](./examples/show_if_user_connected.md) + +**Arguments** + +Argument | Type | Description +-------- | ---- | ----------- +`$show_if_connected` | `bool` | Whether to show the button if user is already connected. +`$current_user_telegram_id` | `int` | The current user's Telegram ID. + +Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 218](../src/shared/Shared.php#L218-L226) + +### `wptelegram_login_show_if_user_is` + +*Filters when to show the login button* + +Possible values: +"logged_out", "logged_in", "author", "subscriber" etc. + +You can also pass a user role e.g "editor" or a comma separated list or an array of roles +to display the button for specific user roles + +Passing an empty value will display the button +for both logged in and logged out users + +**Arguments** + +Argument | Type | Description +-------- | ---- | ----------- +`$show_if_user_is` | `string` | When to show the button. + +**Changelog** + +Version | Description +------- | ----------- +`1.0.0` | + +Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 232](../src/shared/Shared.php#L232-L248) + +### `wptelegram_login_use_telegram_avatar` + +*Filters whether to use the Telegram avatar.* + +Pass `false` to disable the Telegram avatar. + +- [Examples](./examples/use_telegram_avatar.md) + +**Arguments** + +Argument | Type | Description +-------- | ---- | ----------- +`$use_telegram_avatar` | `bool` | Whether to use the Telegram avatar. +`$url` | `string` | Avatar URL. +`$id_or_email` | `mixed` | user id or email. + +Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 307](../src/shared/Shared.php#L307-L318) + +### `wptelegram_login_custom_avatar_url` + +*Filters the custom avatar URL.* + +**Arguments** + +Argument | Type | Description +-------- | ---- | ----------- +`$avatar_url` | `string` | The custom avatar URL. +`$url` | `string` | Avatar URL. +`$id_or_email` | `mixed` | user id or email. + +Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 352](../src/shared/Shared.php#L352-L359) + ### `wptelegram_login_validation_query_params` *Filter the validation query parameters that the plugin uses.* @@ -341,139 +475,32 @@ Argument | Type | Description Source: [src/shared/LoginHandler.php](../src/shared/LoginHandler.php), [line 682](../src/shared/LoginHandler.php#L682-L688) -### `widget_title` - -*Filters the widget title.* - -**Arguments** - -Argument | Type | Description --------- | ---- | ----------- -`$title` | `string` | The widget title. Default 'Pages'. -`$instance` | `array` | Array of settings for the current widget. -`$this->id_base` | | - -**Changelog** - -Version | Description -------- | ----------- -`1.0.0` | - -Source: [src/shared/widgets/Primary.php](../src/shared/widgets/Primary.php), [line 46](../src/shared/widgets/Primary.php#L46-L55) - -### `wptelegram_login_redirect_to` - -*Filters the redirect URL for the login button* - -It can be used to fix the wrong URL in case the website is in subdirectory and the URL is invalid. - -**Arguments** - -Argument | Type | Description --------- | ---- | ----------- -`$redirect_to` | `string` | The redirect URL. - -**Changelog** - -Version | Description -------- | ----------- -`1.0.0` | - -Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 125](../src/shared/Shared.php#L125-L134) - -### `wptelegram_login_telegram_callback_url` - -*Filters the callback URL for the login button* - -It can be used to fix the wrong URL in case the website is in subdirectory and the URL is invalid. - -**Arguments** - -Argument | Type | Description --------- | ---- | ----------- -`$callback_url` | `string` | The callback URL. - -**Changelog** - -Version | Description -------- | ----------- -`1.0.0` | - -Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 154](../src/shared/Shared.php#L154-L163) - -### `wptelegram_login_show_if_user_connected` - -*Filters whether to show the button if user is already connected.* - -- [Examples](./examples/show_if_user_connected.md) - -**Arguments** - -Argument | Type | Description --------- | ---- | ----------- -`$show_if_connected` | `bool` | Whether to show the button if user is already connected. -`$current_user_telegram_id` | `int` | The current user's Telegram ID. - -Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 218](../src/shared/Shared.php#L218-L226) - -### `wptelegram_login_show_if_user_is` - -*Filters when to show the login button* - -Possible values: -"logged_out", "logged_in", "author", "subscriber" etc. - -You can also pass a user role e.g "editor" or a comma separated list or an array of roles -to display the button for specific user roles - -Passing an empty value will display the button -for both logged in and logged out users - -**Arguments** - -Argument | Type | Description --------- | ---- | ----------- -`$show_if_user_is` | `string` | When to show the button. - -**Changelog** - -Version | Description -------- | ----------- -`1.0.0` | - -Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 232](../src/shared/Shared.php#L232-L248) - -### `wptelegram_login_use_telegram_avatar` - -*Filters whether to use the Telegram avatar.* +### `wptelegram_login_web_app_login_data` -Pass `false` to disable the Telegram avatar. +*Filters the data for the web app login.* -- [Examples](./examples/use_telegram_avatar.md) +This can be used to customize the messages etc. for the web app login UI. **Arguments** Argument | Type | Description -------- | ---- | ----------- -`$use_telegram_avatar` | `bool` | Whether to use the Telegram avatar. -`$url` | `string` | Avatar URL. -`$id_or_email` | `mixed` | user id or email. +`$data` | `array` | The data for the web app login. -Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 307](../src/shared/Shared.php#L307-L318) +Source: [src/includes/AssetManager.php](../src/includes/AssetManager.php), [line 274](../src/includes/AssetManager.php#L274-L281) -### `wptelegram_login_custom_avatar_url` +### `wptelegram_login_language_options` -*Filters the custom avatar URL.* +*Filters the language options for the settings page.* **Arguments** Argument | Type | Description -------- | ---- | ----------- -`$avatar_url` | `string` | The custom avatar URL. -`$url` | `string` | Avatar URL. -`$id_or_email` | `mixed` | user id or email. +`$data` | `array` | The language options. +`$translations` | `array` | The available translations. -Source: [src/shared/Shared.php](../src/shared/Shared.php), [line 352](../src/shared/Shared.php#L352-L359) +Source: [src/includes/AssetManager.php](../src/includes/AssetManager.php), [line 410](../src/includes/AssetManager.php#L410-L416) ### `wptelegram_login_intercept_request_on` @@ -489,33 +516,6 @@ Argument | Type | Description Source: [src/includes/Main.php](../src/includes/Main.php), [line 392](../src/includes/Main.php#L392-L399) -### `wptelegram_login_web_app_login_data` - -*Filters the data for the web app login.* - -This can be used to customize the messages etc. for the web app login UI. - -**Arguments** - -Argument | Type | Description --------- | ---- | ----------- -`$data` | `array` | The data for the web app login. - -Source: [src/includes/AssetManager.php](../src/includes/AssetManager.php), [line 272](../src/includes/AssetManager.php#L272-L279) - -### `wptelegram_login_language_options` - -*Filters the language options for the settings page.* - -**Arguments** - -Argument | Type | Description --------- | ---- | ----------- -`$data` | `array` | The language options. -`$translations` | `array` | The available translations. - -Source: [src/includes/AssetManager.php](../src/includes/AssetManager.php), [line 408](../src/includes/AssetManager.php#L408-L414) -
Generated by Pronamic WordPress Documentor 1.2.0
diff --git a/plugins/wptelegram-login/package.json b/plugins/wptelegram-login/package.json
index 2ed72557..34a5ef3e 100644
--- a/plugins/wptelegram-login/package.json
+++ b/plugins/wptelegram-login/package.json
@@ -1,7 +1,7 @@
{
"name": "wptelegram-login",
"title": "WP Telegram Login",
- "version": "1.11.2",
+ "version": "1.11.3",
"description": "Let the users login to your website with their Telegram and make it simple for them to get connected and let them receive their email notifications on Telegram.",
"private": true,
"license": "GPL-3.0-or-later",
diff --git a/plugins/wptelegram-login/src/languages/wptelegram-login-de_DE.po b/plugins/wptelegram-login/src/languages/wptelegram-login-de_DE.po
index 1dfd296c..e05d2635 100644
--- a/plugins/wptelegram-login/src/languages/wptelegram-login-de_DE.po
+++ b/plugins/wptelegram-login/src/languages/wptelegram-login-de_DE.po
@@ -38,7 +38,7 @@ msgstr ""
#: ../../packages/js/shared-ui/components/instructions.tsx:17
#: admin/Admin.php:278
-#: languages/wptelegram-login-js-translations.php:29
+#: languages/wptelegram-login-js-translations.php:32
msgid "INSTRUCTIONS!"
msgstr "KONFIGURATIONSANLEITUNG"
@@ -80,37 +80,37 @@ msgstr "Telegram User ID"
msgid "With this plugin, you can let the users login to your website with their Telegram and make it simple for them to get connected."
msgstr "Mit diesem Plugin können sich Benutzer ganz einfach per Telegram auf einer WordPress-Website registrieren und einloggen."
-#: includes/AssetManager.php:327
+#: includes/AssetManager.php:329
msgid "Any"
msgstr "Immer anzeigen"
-#: includes/AssetManager.php:331
+#: includes/AssetManager.php:333
msgid "Logged out"
msgstr "ausgeloggt"
-#: includes/AssetManager.php:335
+#: includes/AssetManager.php:337
msgid "Logged in"
msgstr "eingeloggt"
#: js/settings/ui/LoginOptions.tsx:18
-#: includes/AssetManager.php:401
-#: languages/wptelegram-login-js-translations.php:225
+#: includes/AssetManager.php:403
+#: languages/wptelegram-login-js-translations.php:228
msgid "Default"
msgstr "Standard"
-#: includes/AssetManager.php:253
+#: includes/AssetManager.php:255
msgid "Login with Telegram"
msgstr ""
-#: includes/AssetManager.php:254
+#: includes/AssetManager.php:256
msgid "Do you want to login via Telegram for a better experience?"
msgstr ""
-#: includes/AssetManager.php:258
+#: includes/AssetManager.php:260
msgid "Login"
msgstr ""
-#: includes/AssetManager.php:263
+#: includes/AssetManager.php:265
msgid "Cancel"
msgstr ""
@@ -138,378 +138,378 @@ msgstr ""
#: js/blocks/telegram-login/Edit.tsx:20
#: js/settings/ui/ButtonOptions.tsx:17
-#: languages/wptelegram-login-js-translations.php:90
+#: languages/wptelegram-login-js-translations.php:93
#: shared/widgets/Primary.php:156
msgid "Large"
msgstr "Groß"
#: js/blocks/telegram-login/Edit.tsx:21
#: js/settings/ui/ButtonOptions.tsx:18
-#: languages/wptelegram-login-js-translations.php:94
+#: languages/wptelegram-login-js-translations.php:97
#: shared/widgets/Primary.php:159
msgid "Medium"
msgstr "Mittel"
#: js/blocks/telegram-login/Edit.tsx:22
#: js/settings/ui/ButtonOptions.tsx:19
-#: languages/wptelegram-login-js-translations.php:98
+#: languages/wptelegram-login-js-translations.php:101
#: shared/widgets/Primary.php:162
msgid "Small"
msgstr "Klein"
#: js/blocks/telegram-login/Edit.tsx:77
-#: languages/wptelegram-login-js-translations.php:101
+#: languages/wptelegram-login-js-translations.php:104
msgid "Button Settings"
msgstr "Button-Einstellungen"
#: js/blocks/telegram-login/Edit.tsx:80
#: js/settings/services/fields.ts:16
-#: languages/wptelegram-login-js-translations.php:105
+#: languages/wptelegram-login-js-translations.php:108
#: shared/widgets/Primary.php:153
msgid "Button Style"
msgstr "Login-Button Style"
#: js/blocks/telegram-login/Edit.tsx:86
#: js/settings/services/fields.ts:27
-#: languages/wptelegram-login-js-translations.php:109
+#: languages/wptelegram-login-js-translations.php:112
#: shared/widgets/Primary.php:167
msgid "Show User Photo"
msgstr "Benutzerfoto anzeigen"
#: js/blocks/telegram-login/Edit.tsx:92
#: js/settings/services/fields.ts:17
-#: languages/wptelegram-login-js-translations.php:113
+#: languages/wptelegram-login-js-translations.php:116
#: shared/widgets/Primary.php:171
msgid "Corner Radius"
msgstr "Eckenradius"
#: js/blocks/telegram-login/Edit.tsx:101
#: js/settings/services/fields.ts:25
-#: languages/wptelegram-login-js-translations.php:82
+#: languages/wptelegram-login-js-translations.php:85
#: shared/widgets/Primary.php:175
msgid "Language"
msgstr ""
#: js/blocks/telegram-login/Edit.tsx:108
#: js/settings/services/fields.ts:24
-#: languages/wptelegram-login-js-translations.php:86
+#: languages/wptelegram-login-js-translations.php:89
#: shared/widgets/Primary.php:183
msgid "Show if user is"
msgstr "Anzeigen wenn Benutzer ist"
#: js/settings/services/fields.ts:18
-#: languages/wptelegram-login-js-translations.php:129
+#: languages/wptelegram-login-js-translations.php:132
msgid "Error message text"
msgstr "Inhalt der Fehlermeldung"
#: js/settings/services/fields.ts:19
-#: languages/wptelegram-login-js-translations.php:132
+#: languages/wptelegram-login-js-translations.php:135
msgid "Disable Sign up"
msgstr "Neuanmeldungen deaktivieren"
#: js/settings/services/fields.ts:20
-#: languages/wptelegram-login-js-translations.php:135
+#: languages/wptelegram-login-js-translations.php:138
msgid "Hide on default login"
msgstr "Beim Standard-Login ausblenden"
#: js/settings/services/fields.ts:21
-#: languages/wptelegram-login-js-translations.php:138
+#: languages/wptelegram-login-js-translations.php:141
msgid "Random Email"
msgstr ""
#: js/settings/services/fields.ts:22
-#: languages/wptelegram-login-js-translations.php:141
+#: languages/wptelegram-login-js-translations.php:144
msgid "Redirect to"
msgstr "Umleiten zu"
#: js/settings/services/fields.ts:23
#: js/settings/ui/LoginOptions.tsx:21
-#: languages/wptelegram-login-js-translations.php:145
+#: languages/wptelegram-login-js-translations.php:148
msgid "Custom URL"
msgstr "Benutzerdefinierte URL"
#: js/settings/services/fields.ts:26
-#: languages/wptelegram-login-js-translations.php:148
+#: languages/wptelegram-login-js-translations.php:151
msgid "Show error message"
msgstr "Fehlermeldung anzeigen"
#: js/settings/services/fields.ts:28
-#: languages/wptelegram-login-js-translations.php:151
+#: languages/wptelegram-login-js-translations.php:154
msgid "User Role"
msgstr "Benutzerrolle"
#: js/settings/services/fields.ts:13
-#: languages/wptelegram-login-js-translations.php:120
+#: languages/wptelegram-login-js-translations.php:123
msgid "Avatar URL Meta Key"
msgstr "Avatar URL Meta Key"
#: js/settings/services/fields.ts:14
-#: languages/wptelegram-login-js-translations.php:123
+#: languages/wptelegram-login-js-translations.php:126
msgid "Bot Token"
msgstr "Bot API-Token"
#: js/settings/services/fields.ts:15
-#: languages/wptelegram-login-js-translations.php:126
+#: languages/wptelegram-login-js-translations.php:129
msgid "Bot Username"
msgstr "Bot Benutzername"
#: js/settings/ui/ButtonOptions.tsx:28
-#: languages/wptelegram-login-js-translations.php:160
+#: languages/wptelegram-login-js-translations.php:163
msgid "Button Options"
msgstr "Login-Button Optionen"
#: js/settings/ui/ButtonOptions.tsx:54
-#: languages/wptelegram-login-js-translations.php:163
+#: languages/wptelegram-login-js-translations.php:166
msgid "Display Telegram user profile photo beside button."
msgstr "Das Foto aus dem Telegram-Benutzerprofil unter dem Login-Button anzeigen."
#: js/settings/ui/ButtonOptions.tsx:75
#: js/settings/ui/ErrorMessageOptions.tsx:51
-#: languages/wptelegram-login-js-translations.php:167
+#: languages/wptelegram-login-js-translations.php:170
msgid "Leave empty for default."
msgstr "Leer lassen für Standardeinstellung."
#: js/settings/ui/ButtonOptions.tsx:90
-#: languages/wptelegram-login-js-translations.php:170
+#: languages/wptelegram-login-js-translations.php:173
#, fuzzy
msgid "Language for the login button."
msgstr "Wann soll der Login-Button angezeigt werden?"
#: js/settings/ui/ButtonOptions.tsx:111
-#: languages/wptelegram-login-js-translations.php:154
+#: languages/wptelegram-login-js-translations.php:157
msgid "Who can see the login button."
msgstr "Wann soll der Login-Button angezeigt werden?"
#: js/settings/ui/ButtonOptions.tsx:131
-#: languages/wptelegram-login-js-translations.php:157
+#: languages/wptelegram-login-js-translations.php:160
msgid "Hide the button on default WordPress login/register page."
msgstr "Den Login-Button auf der normalen WordPress Login-Seite/Registrierungsseite ausblenden."
#: js/settings/ui/ErrorMessageOptions.tsx:21
-#: languages/wptelegram-login-js-translations.php:173
+#: languages/wptelegram-login-js-translations.php:176
msgid "Error Message"
msgstr "Inhalt der Fehlermeldung."
#: js/settings/ui/ErrorMessageOptions.tsx:29
-#: languages/wptelegram-login-js-translations.php:176
+#: languages/wptelegram-login-js-translations.php:179
msgid "Display an error message if Telegram is blocked by user's ISP."
msgstr "Eine Fehlermeldung anzeigen falls Telegram vom Internetanbieter des Benutzers blockiert wird."
#: js/settings/ui/Instructions.tsx:16
-#: languages/wptelegram-login-js-translations.php:188
+#: languages/wptelegram-login-js-translations.php:191
msgid "Note:"
msgstr ""
#: js/settings/ui/Instructions.tsx:18
-#: languages/wptelegram-login-js-translations.php:191
+#: languages/wptelegram-login-js-translations.php:194
msgid "You can use the same bot for all the WP Telegram plugins."
msgstr ""
#. 1 command name, 2 bot name
#. translators: 1 command name, 2 bot name
#: js/settings/ui/Instructions.tsx:27
-#: languages/wptelegram-login-js-translations.php:195
+#: languages/wptelegram-login-js-translations.php:198
msgid "Create a Bot by sending %1$s command to %2$s."
msgstr "Einen Bot erstellen, indem der Befehl %1$s an den %2$s geschickt wird"
#. %s bot name
#. translators: %s bot name
#: js/settings/ui/Instructions.tsx:48
-#: languages/wptelegram-login-js-translations.php:199
+#: languages/wptelegram-login-js-translations.php:202
msgid "After completing the steps %s will provide you the Bot Token."
msgstr "Nachdem die nun folgenden Schritte erledigt wurden, teilt der %s das Bot Token mit."
#: js/settings/ui/Instructions.tsx:54
-#: languages/wptelegram-login-js-translations.php:202
+#: languages/wptelegram-login-js-translations.php:205
msgid "Copy the token and paste into the Bot Token field below."
msgstr "Dieses Bot Token wird nun in das Feld \"Bot Token\" eingetragen."
#. %s application name
#. translators: %s application name
#: js/settings/ui/Instructions.tsx:58
-#: languages/wptelegram-login-js-translations.php:206
+#: languages/wptelegram-login-js-translations.php:209
msgid "For ease, use %s"
msgstr "Zum einfacheren Kopieren %s benutzen!"
#: js/settings/ui/Instructions.tsx:64
-#: languages/wptelegram-login-js-translations.php:209
+#: languages/wptelegram-login-js-translations.php:212
msgid "Telegram Desktop"
msgstr ""
#. 1 command name, 2 bot name, 3 site url
#. translators: 1 command name, 2 bot name, 3 site url
#: js/settings/ui/Instructions.tsx:74
-#: languages/wptelegram-login-js-translations.php:213
+#: languages/wptelegram-login-js-translations.php:216
msgid "Send %1$s command to %2$s, select your bot and then send %3$s"
msgstr "Den Befehl %1$s an den %2$s senden, dann den eigenen Bot auswählen und dann %3$s senden"
#: js/settings/ui/Instructions.tsx:101
-#: languages/wptelegram-login-js-translations.php:179
+#: languages/wptelegram-login-js-translations.php:182
msgid "Test your bot token below and fill in the bot username if not filled automatically."
msgstr "Den Bot-Token im Anschluss unten auf dieser Seite testen und den Bot-Benutzernamen eintragen, falls dieser nicht automatisch ausgefüllt wird."
#: js/settings/ui/Instructions.tsx:105
-#: languages/wptelegram-login-js-translations.php:182
+#: languages/wptelegram-login-js-translations.php:185
msgid "Hit %s below"
msgstr "Zum Speichern der Einstellungen %s klicken"
#: ../../packages/js/shared-ui/form/submit/submit-button.tsx:12
#: js/settings/ui/Instructions.tsx:105
-#: languages/wptelegram-login-js-translations.php:57
+#: languages/wptelegram-login-js-translations.php:60
msgid "Save Changes"
msgstr "Einstellungen speichern"
#: js/settings/ui/Instructions.tsx:106
-#: languages/wptelegram-login-js-translations.php:185
+#: languages/wptelegram-login-js-translations.php:188
msgid "That's it. You are ready to rock :)"
msgstr "Das wars! Jetzt kanns losgehen:)"
#: js/settings/ui/LoginOptions.tsx:19
-#: languages/wptelegram-login-js-translations.php:228
+#: languages/wptelegram-login-js-translations.php:231
msgid "Homepage"
msgstr "Startseite"
#: js/settings/ui/LoginOptions.tsx:20
-#: languages/wptelegram-login-js-translations.php:231
+#: languages/wptelegram-login-js-translations.php:234
msgid "Current page"
msgstr "Auf aktueller Seite bleiben"
#: js/settings/ui/LoginOptions.tsx:41
-#: languages/wptelegram-login-js-translations.php:234
+#: languages/wptelegram-login-js-translations.php:237
msgid "Login Options"
msgstr "Login Optionen"
#: js/settings/ui/LoginOptions.tsx:49
-#: languages/wptelegram-login-js-translations.php:237
+#: languages/wptelegram-login-js-translations.php:240
msgid "If enabled, only the existing users who have connected their Telegram will be able to login."
msgstr "Falls aktiviert können sich nur die Benutzer einloggen, die bereits ihren Telegram-Account verbunden haben."
#: js/settings/ui/LoginOptions.tsx:70
-#: languages/wptelegram-login-js-translations.php:240
+#: languages/wptelegram-login-js-translations.php:243
msgid "The default role to assign for the new users."
msgstr "Die Benutzerrolle, die automatisch einem neuen Benutzer zugeordnet wird."
#: js/settings/ui/LoginOptions.tsx:91
-#: languages/wptelegram-login-js-translations.php:243
+#: languages/wptelegram-login-js-translations.php:246
msgid "Redirect location after login."
msgstr "Wohin soll der Benutzer nach erfolgreichem Login umgeleitet werden?"
#: js/settings/ui/LoginOptions.tsx:126
-#: languages/wptelegram-login-js-translations.php:216
+#: languages/wptelegram-login-js-translations.php:219
msgid "The user meta key to be used to save Telegram photo URL."
msgstr "Der benutzerdefinierte Meta Key, der verwendet wird, um die Telegram Foto-URL zu speichern."
#: js/settings/ui/LoginOptions.tsx:148
-#: languages/wptelegram-login-js-translations.php:219
+#: languages/wptelegram-login-js-translations.php:222
msgid "If enabled, a random email address will be generated for new user accounts."
msgstr ""
#: js/settings/ui/LoginOptions.tsx:150
-#: languages/wptelegram-login-js-translations.php:222
+#: languages/wptelegram-login-js-translations.php:225
msgid "Useful when you want the users to be able to receive private notifications."
msgstr ""
#: js/settings/ui/TelegramOptions.tsx:24
-#: languages/wptelegram-login-js-translations.php:255
+#: languages/wptelegram-login-js-translations.php:258
msgid "Telegram Options"
msgstr "Telegram Optionen"
#: js/settings/ui/TelegramOptions.tsx:40
-#: languages/wptelegram-login-js-translations.php:258
+#: languages/wptelegram-login-js-translations.php:261
msgid "Use %s above to set automatically."
msgstr "Auf %s klicken, um den Benutzernamen automatisch auszufüllen."
#: ../../packages/js/shared-ui/form/use-bot-token-test.tsx:67
#: js/settings/ui/TelegramOptions.tsx:41
-#: languages/wptelegram-login-js-translations.php:67
+#: languages/wptelegram-login-js-translations.php:70
msgid "Test Token"
msgstr "Token testen"
#. 1, 2 Menu names
#. translators: 1, 2 Menu names
#: js/settings/ui/WidgetInfoCard.tsx:19
-#: languages/wptelegram-login-js-translations.php:262
+#: languages/wptelegram-login-js-translations.php:265
msgid "Goto %1$s and click/drag %2$s and place it where you want it to be."
msgstr "Im Menüpunkt %1$s kann das %2$s an die passende Stelle im Theme positioniert werden."
#: js/settings/ui/WidgetInfoCard.tsx:28
-#: languages/wptelegram-login-js-translations.php:265
+#: languages/wptelegram-login-js-translations.php:268
msgid "Appearance"
msgstr "Darstellung"
#: js/settings/ui/WidgetInfoCard.tsx:29
-#: languages/wptelegram-login-js-translations.php:268
+#: languages/wptelegram-login-js-translations.php:271
msgid "Widgets"
msgstr "Widgets"
#: js/settings/ui/WidgetInfoCard.tsx:37
-#: languages/wptelegram-login-js-translations.php:271
+#: languages/wptelegram-login-js-translations.php:274
msgid "Alternately, you can use the below shortcode or the block available in block editor."
msgstr "Alternativ kannst du folgenden Shortcode verwenden oder den Block im Blockeditor. "
#: js/settings/ui/WidgetInfoCard.tsx:41
-#: languages/wptelegram-login-js-translations.php:274
+#: languages/wptelegram-login-js-translations.php:277
msgid "Inside page or post content:"
msgstr "Auf einer Seite oder in einem Beitrag:"
#: js/settings/ui/WidgetInfoCard.tsx:49
-#: languages/wptelegram-login-js-translations.php:277
+#: languages/wptelegram-login-js-translations.php:280
msgid "Inside the theme templates"
msgstr "In Theme-Vorlagen"
#: js/settings/ui/WidgetInfoCard.tsx:57
-#: languages/wptelegram-login-js-translations.php:280
+#: languages/wptelegram-login-js-translations.php:283
msgid "or"
msgstr "oder"
#: ../../packages/js/shared-ui/form/bot-token-field.tsx:45
-#: languages/wptelegram-login-js-translations.php:53
+#: languages/wptelegram-login-js-translations.php:56
msgid "Please read the instructions above."
msgstr "Bitte die Konfigurationsanleitung oben beachten."
#. %s: plugin name
#. translators: %s: plugin name
#: ../../packages/js/shared-ui/components/plugin-info/plugin-info-card.tsx:57
-#: languages/wptelegram-login-js-translations.php:33
+#: languages/wptelegram-login-js-translations.php:36
msgid "Do you like %s?"
msgstr "Gefällt dir %s?"
#: ../../packages/js/shared-ui/components/plugin-info/plugin-info-card.tsx:69
-#: languages/wptelegram-login-js-translations.php:36
+#: languages/wptelegram-login-js-translations.php:39
msgid "Write a review"
msgstr ""
#: ../../packages/js/shared-ui/components/plugin-info/plugin-info-card.tsx:85
-#: languages/wptelegram-login-js-translations.php:39
+#: languages/wptelegram-login-js-translations.php:42
msgid "Need help?"
msgstr "Hilfe?"
#: ../../packages/js/shared-ui/form/test-result/render-test-result.tsx:39
-#: languages/wptelegram-login-js-translations.php:60
+#: languages/wptelegram-login-js-translations.php:63
msgid "Test Result:"
msgstr "Testresultat:"
#. %s: social handle
#. translators: %s: social handle
#: ../../packages/js/shared-ui/components/wptg-social-icons.tsx:42
-#: languages/wptelegram-login-js-translations.php:46
+#: languages/wptelegram-login-js-translations.php:49
msgid "Follow %s"
msgstr "Folge %s"
#. %s: channel name
#. translators: %s: channel name
#: ../../packages/js/shared-ui/components/wptg-social-icons.tsx:62
-#: languages/wptelegram-login-js-translations.php:50
+#: languages/wptelegram-login-js-translations.php:53
msgid "Join %s"
msgstr "Tritt %s bei"
#: ../../packages/js/shared-ui/components/widget-info/widget-info-card.tsx:24
-#: languages/wptelegram-login-js-translations.php:42
+#: languages/wptelegram-login-js-translations.php:45
msgid "Widget Info"
msgstr "Widget-Informationen"
#: ../../packages/js/shared-ui/form/use-bot-token-test.tsx:66
-#: languages/wptelegram-login-js-translations.php:63
+#: languages/wptelegram-login-js-translations.php:66
msgid "Please wait…"
msgstr "Bitte warten..."
@@ -534,34 +534,34 @@ msgid "This is a test message"
msgstr ""
#: ../../packages/js/services/telegram/telegram-utils.ts:152
-#: languages/wptelegram-login-js-translations.php:20
+#: languages/wptelegram-login-js-translations.php:23
msgid "Success"
msgstr ""
#: ../../packages/js/services/use-display-feedback.ts:68
-#: languages/wptelegram-login-js-translations.php:23
+#: languages/wptelegram-login-js-translations.php:26
msgid "Lets fix these errors first."
msgstr ""
#: ../../packages/js/services/use-submit-form.ts:64
-#: languages/wptelegram-login-js-translations.php:26
+#: languages/wptelegram-login-js-translations.php:29
msgid "Changes saved successfully."
msgstr "Die Änderungen wurden erfolgreich gespeichert."
#: ../../packages/js/utilities/fields.ts:35
#: js/settings/services/fields.ts:70
-#: languages/wptelegram-login-js-translations.php:71
+#: languages/wptelegram-login-js-translations.php:74
msgid "Invalid %s"
msgstr "%s ungültig"
#: ../../packages/js/utilities/fields.ts:39
#: js/settings/services/fields.ts:57
-#: languages/wptelegram-login-js-translations.php:75
+#: languages/wptelegram-login-js-translations.php:78
msgid "%s required."
msgstr "%s wird benötigt."
#: ../../packages/js/utilities/fields.ts:42
-#: languages/wptelegram-login-js-translations.php:78
+#: languages/wptelegram-login-js-translations.php:81
msgid "Changes could not be saved."
msgstr "Die Änderungen konnten nicht gespeichert werden."
@@ -615,7 +615,7 @@ msgstr "Titel"
#: js/settings/ui/WidgetInfoCard.tsx:32
#: wptelegram-login.php
#: includes/Main.php:427
-#: languages/wptelegram-login-js-translations.php:117
+#: languages/wptelegram-login-js-translations.php:120
#: shared/widgets/Primary.php:28
#~ msgid "WP Telegram Login"
#~ msgstr "WP Telegram Einloggen"
@@ -623,7 +623,7 @@ msgstr "Titel"
#. Description of the plugin
#: js/settings/ui/Sidebar.tsx:18
#: wptelegram-login.php
-#: languages/wptelegram-login-js-translations.php:246
+#: languages/wptelegram-login-js-translations.php:249
#~ msgid "Let the users login to your WordPress website with their Telegram and make it simple for them to get connected and let them receive their email notifications on Telegram."
#~ msgstr "Mit diesem Plugin können sich Benutzer ganz einfach per Telegram auf einer WordPress-Website registrieren und einloggen."
@@ -657,15 +657,16 @@ msgid "WP Telegram"
msgstr ""
#: js/settings/ui/Sidebar.tsx:21
-#: languages/wptelegram-login-js-translations.php:249
+#: languages/wptelegram-login-js-translations.php:252
msgid "Join our public chat on Telegram"
msgstr ""
#: js/settings/ui/Sidebar.tsx:26
-#: languages/wptelegram-login-js-translations.php:252
+#: languages/wptelegram-login-js-translations.php:255
msgid "Support"
msgstr ""
#: ../../packages/js/services/telegram/telegram-utils.ts:133
+#: languages/wptelegram-login-js-translations.php:20
msgid "Message is empty"
msgstr ""
diff --git a/plugins/wptelegram-login/src/languages/wptelegram-login-ru_RU.po b/plugins/wptelegram-login/src/languages/wptelegram-login-ru_RU.po
index bbc0d3d3..9987f322 100644
--- a/plugins/wptelegram-login/src/languages/wptelegram-login-ru_RU.po
+++ b/plugins/wptelegram-login/src/languages/wptelegram-login-ru_RU.po
@@ -38,7 +38,7 @@ msgstr "ID Польз. Telegram"
#: ../../packages/js/shared-ui/components/instructions.tsx:17
#: admin/Admin.php:278
-#: languages/wptelegram-login-js-translations.php:29
+#: languages/wptelegram-login-js-translations.php:32
msgid "INSTRUCTIONS!"
msgstr "ИНСТРУКЦИЯ!"
@@ -80,38 +80,38 @@ msgstr "ID Польз. Telegram"
msgid "With this plugin, you can let the users login to your website with their Telegram and make it simple for them to get connected."
msgstr "С помощью этого плагина, вы можете сделать простую авторизацию для ваших пользователей через Telegram."
-#: includes/AssetManager.php:327
+#: includes/AssetManager.php:329
msgid "Any"
msgstr "Всегда"
-#: includes/AssetManager.php:331
+#: includes/AssetManager.php:333
msgid "Logged out"
msgstr "Выходит из системы"
-#: includes/AssetManager.php:335
+#: includes/AssetManager.php:337
msgid "Logged in"
msgstr "Входит в систему"
#: js/settings/ui/LoginOptions.tsx:18
-#: includes/AssetManager.php:401
-#: languages/wptelegram-login-js-translations.php:225
+#: includes/AssetManager.php:403
+#: languages/wptelegram-login-js-translations.php:228
msgid "Default"
msgstr "По умолчанию"
-#: includes/AssetManager.php:253
+#: includes/AssetManager.php:255
#, fuzzy
msgid "Login with Telegram"
msgstr "WP Telegram"
-#: includes/AssetManager.php:254
+#: includes/AssetManager.php:256
msgid "Do you want to login via Telegram for a better experience?"
msgstr ""
-#: includes/AssetManager.php:258
+#: includes/AssetManager.php:260
msgid "Login"
msgstr ""
-#: includes/AssetManager.php:263
+#: includes/AssetManager.php:265
msgid "Cancel"
msgstr ""
@@ -139,378 +139,378 @@ msgstr ""
#: js/blocks/telegram-login/Edit.tsx:20
#: js/settings/ui/ButtonOptions.tsx:17
-#: languages/wptelegram-login-js-translations.php:90
+#: languages/wptelegram-login-js-translations.php:93
#: shared/widgets/Primary.php:156
msgid "Large"
msgstr "Большая"
#: js/blocks/telegram-login/Edit.tsx:21
#: js/settings/ui/ButtonOptions.tsx:18
-#: languages/wptelegram-login-js-translations.php:94
+#: languages/wptelegram-login-js-translations.php:97
#: shared/widgets/Primary.php:159
msgid "Medium"
msgstr "Средняя"
#: js/blocks/telegram-login/Edit.tsx:22
#: js/settings/ui/ButtonOptions.tsx:19
-#: languages/wptelegram-login-js-translations.php:98
+#: languages/wptelegram-login-js-translations.php:101
#: shared/widgets/Primary.php:162
msgid "Small"
msgstr "Маленькая"
#: js/blocks/telegram-login/Edit.tsx:77
-#: languages/wptelegram-login-js-translations.php:101
+#: languages/wptelegram-login-js-translations.php:104
msgid "Button Settings"
msgstr "Параметры кнопки"
#: js/blocks/telegram-login/Edit.tsx:80
#: js/settings/services/fields.ts:16
-#: languages/wptelegram-login-js-translations.php:105
+#: languages/wptelegram-login-js-translations.php:108
#: shared/widgets/Primary.php:153
msgid "Button Style"
msgstr "Стиль кнопки"
#: js/blocks/telegram-login/Edit.tsx:86
#: js/settings/services/fields.ts:27
-#: languages/wptelegram-login-js-translations.php:109
+#: languages/wptelegram-login-js-translations.php:112
#: shared/widgets/Primary.php:167
msgid "Show User Photo"
msgstr "Показать фотографию пользователя"
#: js/blocks/telegram-login/Edit.tsx:92
#: js/settings/services/fields.ts:17
-#: languages/wptelegram-login-js-translations.php:113
+#: languages/wptelegram-login-js-translations.php:116
#: shared/widgets/Primary.php:171
msgid "Corner Radius"
msgstr "Радиус закругления"
#: js/blocks/telegram-login/Edit.tsx:101
#: js/settings/services/fields.ts:25
-#: languages/wptelegram-login-js-translations.php:82
+#: languages/wptelegram-login-js-translations.php:85
#: shared/widgets/Primary.php:175
msgid "Language"
msgstr ""
#: js/blocks/telegram-login/Edit.tsx:108
#: js/settings/services/fields.ts:24
-#: languages/wptelegram-login-js-translations.php:86
+#: languages/wptelegram-login-js-translations.php:89
#: shared/widgets/Primary.php:183
msgid "Show if user is"
msgstr "Показать, если пользователь"
#: js/settings/services/fields.ts:18
-#: languages/wptelegram-login-js-translations.php:129
+#: languages/wptelegram-login-js-translations.php:132
msgid "Error message text"
msgstr "Текст ошибки"
#: js/settings/services/fields.ts:19
-#: languages/wptelegram-login-js-translations.php:132
+#: languages/wptelegram-login-js-translations.php:135
msgid "Disable Sign up"
msgstr "Отключить регистрацию"
#: js/settings/services/fields.ts:20
-#: languages/wptelegram-login-js-translations.php:135
+#: languages/wptelegram-login-js-translations.php:138
msgid "Hide on default login"
msgstr "Скрыть кнопку"
#: js/settings/services/fields.ts:21
-#: languages/wptelegram-login-js-translations.php:138
+#: languages/wptelegram-login-js-translations.php:141
msgid "Random Email"
msgstr ""
#: js/settings/services/fields.ts:22
-#: languages/wptelegram-login-js-translations.php:141
+#: languages/wptelegram-login-js-translations.php:144
msgid "Redirect to"
msgstr "Перенаправить"
#: js/settings/services/fields.ts:23
#: js/settings/ui/LoginOptions.tsx:21
-#: languages/wptelegram-login-js-translations.php:145
+#: languages/wptelegram-login-js-translations.php:148
msgid "Custom URL"
msgstr "Пользовательский URL"
#: js/settings/services/fields.ts:26
-#: languages/wptelegram-login-js-translations.php:148
+#: languages/wptelegram-login-js-translations.php:151
msgid "Show error message"
msgstr "Выводить сообщение об ошибке"
#: js/settings/services/fields.ts:28
-#: languages/wptelegram-login-js-translations.php:151
+#: languages/wptelegram-login-js-translations.php:154
msgid "User Role"
msgstr "Роль пользователя"
#: js/settings/services/fields.ts:13
-#: languages/wptelegram-login-js-translations.php:120
+#: languages/wptelegram-login-js-translations.php:123
msgid "Avatar URL Meta Key"
msgstr "Мета-ключ URL аватара"
#: js/settings/services/fields.ts:14
-#: languages/wptelegram-login-js-translations.php:123
+#: languages/wptelegram-login-js-translations.php:126
msgid "Bot Token"
msgstr "Токен бота"
#: js/settings/services/fields.ts:15
-#: languages/wptelegram-login-js-translations.php:126
+#: languages/wptelegram-login-js-translations.php:129
msgid "Bot Username"
msgstr "Логин бота"
#: js/settings/ui/ButtonOptions.tsx:28
-#: languages/wptelegram-login-js-translations.php:160
+#: languages/wptelegram-login-js-translations.php:163
msgid "Button Options"
msgstr "Параметры кнопки"
#: js/settings/ui/ButtonOptions.tsx:54
-#: languages/wptelegram-login-js-translations.php:163
+#: languages/wptelegram-login-js-translations.php:166
msgid "Display Telegram user profile photo beside button."
msgstr "Отображать фотографию профиля пользователя Telegram рядом с кнопкой."
#: js/settings/ui/ButtonOptions.tsx:75
#: js/settings/ui/ErrorMessageOptions.tsx:51
-#: languages/wptelegram-login-js-translations.php:167
+#: languages/wptelegram-login-js-translations.php:170
msgid "Leave empty for default."
msgstr "Оставьте пустым для значния по умолчанию."
#: js/settings/ui/ButtonOptions.tsx:90
-#: languages/wptelegram-login-js-translations.php:170
+#: languages/wptelegram-login-js-translations.php:173
#, fuzzy
msgid "Language for the login button."
msgstr "Кто может видеть кнопку входа."
#: js/settings/ui/ButtonOptions.tsx:111
-#: languages/wptelegram-login-js-translations.php:154
+#: languages/wptelegram-login-js-translations.php:157
msgid "Who can see the login button."
msgstr "Кто может видеть кнопку входа."
#: js/settings/ui/ButtonOptions.tsx:131
-#: languages/wptelegram-login-js-translations.php:157
+#: languages/wptelegram-login-js-translations.php:160
msgid "Hide the button on default WordPress login/register page."
msgstr "Скрыть кнопку на стандартной странице входа/регистрации WordPress."
#: js/settings/ui/ErrorMessageOptions.tsx:21
-#: languages/wptelegram-login-js-translations.php:173
+#: languages/wptelegram-login-js-translations.php:176
msgid "Error Message"
msgstr "Сообщение об ошибке"
#: js/settings/ui/ErrorMessageOptions.tsx:29
-#: languages/wptelegram-login-js-translations.php:176
+#: languages/wptelegram-login-js-translations.php:179
msgid "Display an error message if Telegram is blocked by user's ISP."
msgstr "Выводит пользователю сообщение с ошибкой, если его интернет-провайдер блокирует доступ к Telegram."
#: js/settings/ui/Instructions.tsx:16
-#: languages/wptelegram-login-js-translations.php:188
+#: languages/wptelegram-login-js-translations.php:191
msgid "Note:"
msgstr ""
#: js/settings/ui/Instructions.tsx:18
-#: languages/wptelegram-login-js-translations.php:191
+#: languages/wptelegram-login-js-translations.php:194
msgid "You can use the same bot for all the WP Telegram plugins."
msgstr ""
#. 1 command name, 2 bot name
#. translators: 1 command name, 2 bot name
#: js/settings/ui/Instructions.tsx:27
-#: languages/wptelegram-login-js-translations.php:195
+#: languages/wptelegram-login-js-translations.php:198
msgid "Create a Bot by sending %1$s command to %2$s."
msgstr "Создание бота командой %1$s в чате с %2$s"
#. %s bot name
#. translators: %s bot name
#: js/settings/ui/Instructions.tsx:48
-#: languages/wptelegram-login-js-translations.php:199
+#: languages/wptelegram-login-js-translations.php:202
msgid "After completing the steps %s will provide you the Bot Token."
msgstr "После выполнения команд, %s пришлет токен вашего бота."
#: js/settings/ui/Instructions.tsx:54
-#: languages/wptelegram-login-js-translations.php:202
+#: languages/wptelegram-login-js-translations.php:205
msgid "Copy the token and paste into the Bot Token field below."
msgstr "Скопируйте токен и вставьте его в поле 'Токен бота' ниже."
#. %s application name
#. translators: %s application name
#: js/settings/ui/Instructions.tsx:58
-#: languages/wptelegram-login-js-translations.php:206
+#: languages/wptelegram-login-js-translations.php:209
msgid "For ease, use %s"
msgstr "Для удобства используйте %s"
#: js/settings/ui/Instructions.tsx:64
-#: languages/wptelegram-login-js-translations.php:209
+#: languages/wptelegram-login-js-translations.php:212
msgid "Telegram Desktop"
msgstr ""
#. 1 command name, 2 bot name, 3 site url
#. translators: 1 command name, 2 bot name, 3 site url
#: js/settings/ui/Instructions.tsx:74
-#: languages/wptelegram-login-js-translations.php:213
+#: languages/wptelegram-login-js-translations.php:216
msgid "Send %1$s command to %2$s, select your bot and then send %3$s"
msgstr "Свяжите ваш домен (сайта) с ботом, для этого отправьте команду %1$s в чате с %2$s и укажите %3$s"
#: js/settings/ui/Instructions.tsx:101
-#: languages/wptelegram-login-js-translations.php:179
+#: languages/wptelegram-login-js-translations.php:182
msgid "Test your bot token below and fill in the bot username if not filled automatically."
msgstr "Протестируйте токен нажав кнопку рядом с полем и после этого заполните поле 'Логин бота', если не заполнится автоматически."
#: js/settings/ui/Instructions.tsx:105
-#: languages/wptelegram-login-js-translations.php:182
+#: languages/wptelegram-login-js-translations.php:185
msgid "Hit %s below"
msgstr "Нажмите кнопку %s"
#: ../../packages/js/shared-ui/form/submit/submit-button.tsx:12
#: js/settings/ui/Instructions.tsx:105
-#: languages/wptelegram-login-js-translations.php:57
+#: languages/wptelegram-login-js-translations.php:60
msgid "Save Changes"
msgstr "Сохранить изменения"
#: js/settings/ui/Instructions.tsx:106
-#: languages/wptelegram-login-js-translations.php:185
+#: languages/wptelegram-login-js-translations.php:188
msgid "That's it. You are ready to rock :)"
msgstr "Вот и всё. Удачи с WP Telegram Login! :)"
#: js/settings/ui/LoginOptions.tsx:19
-#: languages/wptelegram-login-js-translations.php:228
+#: languages/wptelegram-login-js-translations.php:231
msgid "Homepage"
msgstr "Главная страница"
#: js/settings/ui/LoginOptions.tsx:20
-#: languages/wptelegram-login-js-translations.php:231
+#: languages/wptelegram-login-js-translations.php:234
msgid "Current page"
msgstr "Текущая страница"
#: js/settings/ui/LoginOptions.tsx:41
-#: languages/wptelegram-login-js-translations.php:234
+#: languages/wptelegram-login-js-translations.php:237
msgid "Login Options"
msgstr "Настройки авторизации"
#: js/settings/ui/LoginOptions.tsx:49
-#: languages/wptelegram-login-js-translations.php:237
+#: languages/wptelegram-login-js-translations.php:240
msgid "If enabled, only the existing users who have connected their Telegram will be able to login."
msgstr "Если этот флажок установлен, то только существующие пользователи, которые уже подключили Telegram, смогут войти в систему."
#: js/settings/ui/LoginOptions.tsx:70
-#: languages/wptelegram-login-js-translations.php:240
+#: languages/wptelegram-login-js-translations.php:243
msgid "The default role to assign for the new users."
msgstr "Назначаемая роль пользователя по умолчанию."
#: js/settings/ui/LoginOptions.tsx:91
-#: languages/wptelegram-login-js-translations.php:243
+#: languages/wptelegram-login-js-translations.php:246
msgid "Redirect location after login."
msgstr "Выберите, куда перенаправить пользователя после авторизации."
#: js/settings/ui/LoginOptions.tsx:126
-#: languages/wptelegram-login-js-translations.php:216
+#: languages/wptelegram-login-js-translations.php:219
msgid "The user meta key to be used to save Telegram photo URL."
msgstr "Пользовательский мета-ключ, который будет использоваться для сохранения URL фото Telegram."
#: js/settings/ui/LoginOptions.tsx:148
-#: languages/wptelegram-login-js-translations.php:219
+#: languages/wptelegram-login-js-translations.php:222
msgid "If enabled, a random email address will be generated for new user accounts."
msgstr ""
#: js/settings/ui/LoginOptions.tsx:150
-#: languages/wptelegram-login-js-translations.php:222
+#: languages/wptelegram-login-js-translations.php:225
msgid "Useful when you want the users to be able to receive private notifications."
msgstr ""
#: js/settings/ui/TelegramOptions.tsx:24
-#: languages/wptelegram-login-js-translations.php:255
+#: languages/wptelegram-login-js-translations.php:258
msgid "Telegram Options"
msgstr "Настройки Telegram"
#: js/settings/ui/TelegramOptions.tsx:40
-#: languages/wptelegram-login-js-translations.php:258
+#: languages/wptelegram-login-js-translations.php:261
msgid "Use %s above to set automatically."
msgstr "Используйте %s выше для автоматического заполнения."
#: ../../packages/js/shared-ui/form/use-bot-token-test.tsx:67
#: js/settings/ui/TelegramOptions.tsx:41
-#: languages/wptelegram-login-js-translations.php:67
+#: languages/wptelegram-login-js-translations.php:70
msgid "Test Token"
msgstr "Проверить токен"
#. 1, 2 Menu names
#. translators: 1, 2 Menu names
#: js/settings/ui/WidgetInfoCard.tsx:19
-#: languages/wptelegram-login-js-translations.php:262
+#: languages/wptelegram-login-js-translations.php:265
msgid "Goto %1$s and click/drag %2$s and place it where you want it to be."
msgstr "Перейдите в %1$s, нажмите / перетащите %2$s и поместите его там, где вы хотите."
#: js/settings/ui/WidgetInfoCard.tsx:28
-#: languages/wptelegram-login-js-translations.php:265
+#: languages/wptelegram-login-js-translations.php:268
msgid "Appearance"
msgstr "Внешний вид"
#: js/settings/ui/WidgetInfoCard.tsx:29
-#: languages/wptelegram-login-js-translations.php:268
+#: languages/wptelegram-login-js-translations.php:271
msgid "Widgets"
msgstr "Виджеты"
#: js/settings/ui/WidgetInfoCard.tsx:37
-#: languages/wptelegram-login-js-translations.php:271
+#: languages/wptelegram-login-js-translations.php:274
msgid "Alternately, you can use the below shortcode or the block available in block editor."
msgstr ""
#: js/settings/ui/WidgetInfoCard.tsx:41
-#: languages/wptelegram-login-js-translations.php:274
+#: languages/wptelegram-login-js-translations.php:277
msgid "Inside page or post content:"
msgstr "Используйте шорткод для отображения кнопки на любой странице WP или странице:"
#: js/settings/ui/WidgetInfoCard.tsx:49
-#: languages/wptelegram-login-js-translations.php:277
+#: languages/wptelegram-login-js-translations.php:280
msgid "Inside the theme templates"
msgstr "Или используйте тег шаблона для отображения кнопки в любом месте шаблона темы:"
#: js/settings/ui/WidgetInfoCard.tsx:57
-#: languages/wptelegram-login-js-translations.php:280
+#: languages/wptelegram-login-js-translations.php:283
msgid "or"
msgstr "или"
#: ../../packages/js/shared-ui/form/bot-token-field.tsx:45
-#: languages/wptelegram-login-js-translations.php:53
+#: languages/wptelegram-login-js-translations.php:56
msgid "Please read the instructions above."
msgstr "Пожалуйста, ознакомьтесь с инструкциями выше."
#. %s: plugin name
#. translators: %s: plugin name
#: ../../packages/js/shared-ui/components/plugin-info/plugin-info-card.tsx:57
-#: languages/wptelegram-login-js-translations.php:33
+#: languages/wptelegram-login-js-translations.php:36
msgid "Do you like %s?"
msgstr ""
#: ../../packages/js/shared-ui/components/plugin-info/plugin-info-card.tsx:69
-#: languages/wptelegram-login-js-translations.php:36
+#: languages/wptelegram-login-js-translations.php:39
msgid "Write a review"
msgstr ""
#: ../../packages/js/shared-ui/components/plugin-info/plugin-info-card.tsx:85
-#: languages/wptelegram-login-js-translations.php:39
+#: languages/wptelegram-login-js-translations.php:42
msgid "Need help?"
msgstr "Нужна помощь?"
#: ../../packages/js/shared-ui/form/test-result/render-test-result.tsx:39
-#: languages/wptelegram-login-js-translations.php:60
+#: languages/wptelegram-login-js-translations.php:63
msgid "Test Result:"
msgstr ""
#. %s: social handle
#. translators: %s: social handle
#: ../../packages/js/shared-ui/components/wptg-social-icons.tsx:42
-#: languages/wptelegram-login-js-translations.php:46
+#: languages/wptelegram-login-js-translations.php:49
msgid "Follow %s"
msgstr ""
#. %s: channel name
#. translators: %s: channel name
#: ../../packages/js/shared-ui/components/wptg-social-icons.tsx:62
-#: languages/wptelegram-login-js-translations.php:50
+#: languages/wptelegram-login-js-translations.php:53
msgid "Join %s"
msgstr ""
#: ../../packages/js/shared-ui/components/widget-info/widget-info-card.tsx:24
-#: languages/wptelegram-login-js-translations.php:42
+#: languages/wptelegram-login-js-translations.php:45
msgid "Widget Info"
msgstr "Вывод виджета кнопки"
#: ../../packages/js/shared-ui/form/use-bot-token-test.tsx:66
-#: languages/wptelegram-login-js-translations.php:63
+#: languages/wptelegram-login-js-translations.php:66
msgid "Please wait…"
msgstr ""
@@ -535,34 +535,34 @@ msgid "This is a test message"
msgstr ""
#: ../../packages/js/services/telegram/telegram-utils.ts:152
-#: languages/wptelegram-login-js-translations.php:20
+#: languages/wptelegram-login-js-translations.php:23
msgid "Success"
msgstr ""
#: ../../packages/js/services/use-display-feedback.ts:68
-#: languages/wptelegram-login-js-translations.php:23
+#: languages/wptelegram-login-js-translations.php:26
msgid "Lets fix these errors first."
msgstr ""
#: ../../packages/js/services/use-submit-form.ts:64
-#: languages/wptelegram-login-js-translations.php:26
+#: languages/wptelegram-login-js-translations.php:29
msgid "Changes saved successfully."
msgstr ""
#: ../../packages/js/utilities/fields.ts:35
#: js/settings/services/fields.ts:70
-#: languages/wptelegram-login-js-translations.php:71
+#: languages/wptelegram-login-js-translations.php:74
msgid "Invalid %s"
msgstr "Некорректный %s"
#: ../../packages/js/utilities/fields.ts:39
#: js/settings/services/fields.ts:57
-#: languages/wptelegram-login-js-translations.php:75
+#: languages/wptelegram-login-js-translations.php:78
msgid "%s required."
msgstr ""
#: ../../packages/js/utilities/fields.ts:42
-#: languages/wptelegram-login-js-translations.php:78
+#: languages/wptelegram-login-js-translations.php:81
msgid "Changes could not be saved."
msgstr ""
@@ -616,7 +616,7 @@ msgstr "Заголовок"
#: js/settings/ui/WidgetInfoCard.tsx:32
#: wptelegram-login.php
#: includes/Main.php:427
-#: languages/wptelegram-login-js-translations.php:117
+#: languages/wptelegram-login-js-translations.php:120
#: shared/widgets/Primary.php:28
#~ msgid "WP Telegram Login"
#~ msgstr "WP Telegram Login"
@@ -624,7 +624,7 @@ msgstr "Заголовок"
#. Description of the plugin
#: js/settings/ui/Sidebar.tsx:18
#: wptelegram-login.php
-#: languages/wptelegram-login-js-translations.php:246
+#: languages/wptelegram-login-js-translations.php:249
#~ msgid "Let the users login to your WordPress website with their Telegram and make it simple for them to get connected and let them receive their email notifications on Telegram."
#~ msgstr "С помощью этого плагина, вы можете сделать простую авторизацию для ваших пользователей через Telegram."
@@ -658,15 +658,16 @@ msgid "WP Telegram"
msgstr ""
#: js/settings/ui/Sidebar.tsx:21
-#: languages/wptelegram-login-js-translations.php:249
+#: languages/wptelegram-login-js-translations.php:252
msgid "Join our public chat on Telegram"
msgstr ""
#: js/settings/ui/Sidebar.tsx:26
-#: languages/wptelegram-login-js-translations.php:252
+#: languages/wptelegram-login-js-translations.php:255
msgid "Support"
msgstr ""
#: ../../packages/js/services/telegram/telegram-utils.ts:133
+#: languages/wptelegram-login-js-translations.php:20
msgid "Message is empty"
msgstr ""
diff --git a/plugins/wptelegram-login/src/languages/wptelegram-login-uk.po b/plugins/wptelegram-login/src/languages/wptelegram-login-uk.po
index 63a2dcbe..d9a9651e 100644
--- a/plugins/wptelegram-login/src/languages/wptelegram-login-uk.po
+++ b/plugins/wptelegram-login/src/languages/wptelegram-login-uk.po
@@ -38,7 +38,7 @@ msgstr ""
#: ../../packages/js/shared-ui/components/instructions.tsx:17
#: admin/Admin.php:278
-#: languages/wptelegram-login-js-translations.php:29
+#: languages/wptelegram-login-js-translations.php:32
msgid "INSTRUCTIONS!"
msgstr "ІНСТРУКЦІЇ!"
@@ -80,38 +80,38 @@ msgstr "Ідентифікатор користувача Telegram"
msgid "With this plugin, you can let the users login to your website with their Telegram and make it simple for them to get connected."
msgstr "За допомогою цього плагіна ви можете дозволити користувачам увійти на ваш веб-сайт за допомогою Telegram та спростити їх авторизацію."
-#: includes/AssetManager.php:327
+#: includes/AssetManager.php:329
msgid "Any"
msgstr "Будь-який"
-#: includes/AssetManager.php:331
+#: includes/AssetManager.php:333
msgid "Logged out"
msgstr "Вийшов"
-#: includes/AssetManager.php:335
+#: includes/AssetManager.php:337
msgid "Logged in"
msgstr "Увійшов"
#: js/settings/ui/LoginOptions.tsx:18
-#: includes/AssetManager.php:401
-#: languages/wptelegram-login-js-translations.php:225
+#: includes/AssetManager.php:403
+#: languages/wptelegram-login-js-translations.php:228
msgid "Default"
msgstr "За замовчуванням"
-#: includes/AssetManager.php:253
+#: includes/AssetManager.php:255
#, fuzzy
msgid "Login with Telegram"
msgstr "WP Telegram"
-#: includes/AssetManager.php:254
+#: includes/AssetManager.php:256
msgid "Do you want to login via Telegram for a better experience?"
msgstr ""
-#: includes/AssetManager.php:258
+#: includes/AssetManager.php:260
msgid "Login"
msgstr ""
-#: includes/AssetManager.php:263
+#: includes/AssetManager.php:265
msgid "Cancel"
msgstr ""
@@ -139,378 +139,378 @@ msgstr ""
#: js/blocks/telegram-login/Edit.tsx:20
#: js/settings/ui/ButtonOptions.tsx:17
-#: languages/wptelegram-login-js-translations.php:90
+#: languages/wptelegram-login-js-translations.php:93
#: shared/widgets/Primary.php:156
msgid "Large"
msgstr "Велика"
#: js/blocks/telegram-login/Edit.tsx:21
#: js/settings/ui/ButtonOptions.tsx:18
-#: languages/wptelegram-login-js-translations.php:94
+#: languages/wptelegram-login-js-translations.php:97
#: shared/widgets/Primary.php:159
msgid "Medium"
msgstr "Середня"
#: js/blocks/telegram-login/Edit.tsx:22
#: js/settings/ui/ButtonOptions.tsx:19
-#: languages/wptelegram-login-js-translations.php:98
+#: languages/wptelegram-login-js-translations.php:101
#: shared/widgets/Primary.php:162
msgid "Small"
msgstr "Мала"
#: js/blocks/telegram-login/Edit.tsx:77
-#: languages/wptelegram-login-js-translations.php:101
+#: languages/wptelegram-login-js-translations.php:104
msgid "Button Settings"
msgstr "Налаштування кнопки"
#: js/blocks/telegram-login/Edit.tsx:80
#: js/settings/services/fields.ts:16
-#: languages/wptelegram-login-js-translations.php:105
+#: languages/wptelegram-login-js-translations.php:108
#: shared/widgets/Primary.php:153
msgid "Button Style"
msgstr "Стиль кнопки"
#: js/blocks/telegram-login/Edit.tsx:86
#: js/settings/services/fields.ts:27
-#: languages/wptelegram-login-js-translations.php:109
+#: languages/wptelegram-login-js-translations.php:112
#: shared/widgets/Primary.php:167
msgid "Show User Photo"
msgstr "Показувати фото користувача"
#: js/blocks/telegram-login/Edit.tsx:92
#: js/settings/services/fields.ts:17
-#: languages/wptelegram-login-js-translations.php:113
+#: languages/wptelegram-login-js-translations.php:116
#: shared/widgets/Primary.php:171
msgid "Corner Radius"
msgstr "Кутовий радіус"
#: js/blocks/telegram-login/Edit.tsx:101
#: js/settings/services/fields.ts:25
-#: languages/wptelegram-login-js-translations.php:82
+#: languages/wptelegram-login-js-translations.php:85
#: shared/widgets/Primary.php:175
msgid "Language"
msgstr ""
#: js/blocks/telegram-login/Edit.tsx:108
#: js/settings/services/fields.ts:24
-#: languages/wptelegram-login-js-translations.php:86
+#: languages/wptelegram-login-js-translations.php:89
#: shared/widgets/Primary.php:183
msgid "Show if user is"
msgstr "Показувати, якщо користувач"
#: js/settings/services/fields.ts:18
-#: languages/wptelegram-login-js-translations.php:129
+#: languages/wptelegram-login-js-translations.php:132
msgid "Error message text"
msgstr "Текст повідомлення про помилку"
#: js/settings/services/fields.ts:19
-#: languages/wptelegram-login-js-translations.php:132
+#: languages/wptelegram-login-js-translations.php:135
msgid "Disable Sign up"
msgstr "Вимкнути реєстрацію"
#: js/settings/services/fields.ts:20
-#: languages/wptelegram-login-js-translations.php:135
+#: languages/wptelegram-login-js-translations.php:138
msgid "Hide on default login"
msgstr "Приховати на вході WordPress за замовчуванням"
#: js/settings/services/fields.ts:21
-#: languages/wptelegram-login-js-translations.php:138
+#: languages/wptelegram-login-js-translations.php:141
msgid "Random Email"
msgstr ""
#: js/settings/services/fields.ts:22
-#: languages/wptelegram-login-js-translations.php:141
+#: languages/wptelegram-login-js-translations.php:144
msgid "Redirect to"
msgstr "Перенаправити на"
#: js/settings/services/fields.ts:23
#: js/settings/ui/LoginOptions.tsx:21
-#: languages/wptelegram-login-js-translations.php:145
+#: languages/wptelegram-login-js-translations.php:148
msgid "Custom URL"
msgstr "Користувацький URL"
#: js/settings/services/fields.ts:26
-#: languages/wptelegram-login-js-translations.php:148
+#: languages/wptelegram-login-js-translations.php:151
msgid "Show error message"
msgstr "Показувати повідомлення про помилку"
#: js/settings/services/fields.ts:28
-#: languages/wptelegram-login-js-translations.php:151
+#: languages/wptelegram-login-js-translations.php:154
msgid "User Role"
msgstr "Роль користувача"
#: js/settings/services/fields.ts:13
-#: languages/wptelegram-login-js-translations.php:120
+#: languages/wptelegram-login-js-translations.php:123
msgid "Avatar URL Meta Key"
msgstr "Мета-ключ URL-адреси аватара"
#: js/settings/services/fields.ts:14
-#: languages/wptelegram-login-js-translations.php:123
+#: languages/wptelegram-login-js-translations.php:126
msgid "Bot Token"
msgstr "Токен Бота"
#: js/settings/services/fields.ts:15
-#: languages/wptelegram-login-js-translations.php:126
+#: languages/wptelegram-login-js-translations.php:129
msgid "Bot Username"
msgstr "Користувацьке ім'я Бота"
#: js/settings/ui/ButtonOptions.tsx:28
-#: languages/wptelegram-login-js-translations.php:160
+#: languages/wptelegram-login-js-translations.php:163
msgid "Button Options"
msgstr "Параметри кнопки"
#: js/settings/ui/ButtonOptions.tsx:54
-#: languages/wptelegram-login-js-translations.php:163
+#: languages/wptelegram-login-js-translations.php:166
msgid "Display Telegram user profile photo beside button."
msgstr "Показувати фото профілю користувача Telegram біля кнопки."
#: js/settings/ui/ButtonOptions.tsx:75
#: js/settings/ui/ErrorMessageOptions.tsx:51
-#: languages/wptelegram-login-js-translations.php:167
+#: languages/wptelegram-login-js-translations.php:170
msgid "Leave empty for default."
msgstr "Залишити порожнім за замовчуванням."
#: js/settings/ui/ButtonOptions.tsx:90
-#: languages/wptelegram-login-js-translations.php:170
+#: languages/wptelegram-login-js-translations.php:173
#, fuzzy
msgid "Language for the login button."
msgstr "Хто може бачити кнопку входу."
#: js/settings/ui/ButtonOptions.tsx:111
-#: languages/wptelegram-login-js-translations.php:154
+#: languages/wptelegram-login-js-translations.php:157
msgid "Who can see the login button."
msgstr "Хто може бачити кнопку входу."
#: js/settings/ui/ButtonOptions.tsx:131
-#: languages/wptelegram-login-js-translations.php:157
+#: languages/wptelegram-login-js-translations.php:160
msgid "Hide the button on default WordPress login/register page."
msgstr "Приховати кнопку на сторінці входу/реєстрації WordPress за замовчуванням."
#: js/settings/ui/ErrorMessageOptions.tsx:21
-#: languages/wptelegram-login-js-translations.php:173
+#: languages/wptelegram-login-js-translations.php:176
msgid "Error Message"
msgstr ""
#: js/settings/ui/ErrorMessageOptions.tsx:29
-#: languages/wptelegram-login-js-translations.php:176
+#: languages/wptelegram-login-js-translations.php:179
msgid "Display an error message if Telegram is blocked by user's ISP."
msgstr "Показувати повідомлення про помилку, якщо Telegram заблокований провайдером користувача."
#: js/settings/ui/Instructions.tsx:16
-#: languages/wptelegram-login-js-translations.php:188
+#: languages/wptelegram-login-js-translations.php:191
msgid "Note:"
msgstr ""
#: js/settings/ui/Instructions.tsx:18
-#: languages/wptelegram-login-js-translations.php:191
+#: languages/wptelegram-login-js-translations.php:194
msgid "You can use the same bot for all the WP Telegram plugins."
msgstr ""
#. 1 command name, 2 bot name
#. translators: 1 command name, 2 bot name
#: js/settings/ui/Instructions.tsx:27
-#: languages/wptelegram-login-js-translations.php:195
+#: languages/wptelegram-login-js-translations.php:198
msgid "Create a Bot by sending %1$s command to %2$s."
msgstr "Створіть Бота, відправивши команду %1$s до %2$s."
#. %s bot name
#. translators: %s bot name
#: js/settings/ui/Instructions.tsx:48
-#: languages/wptelegram-login-js-translations.php:199
+#: languages/wptelegram-login-js-translations.php:202
msgid "After completing the steps %s will provide you the Bot Token."
msgstr "Після виконання кроків %s надасть вам Токен Бота."
#: js/settings/ui/Instructions.tsx:54
-#: languages/wptelegram-login-js-translations.php:202
+#: languages/wptelegram-login-js-translations.php:205
msgid "Copy the token and paste into the Bot Token field below."
msgstr "Скопіюйте Токен і вставте в поле Токен Бота нижче."
#. %s application name
#. translators: %s application name
#: js/settings/ui/Instructions.tsx:58
-#: languages/wptelegram-login-js-translations.php:206
+#: languages/wptelegram-login-js-translations.php:209
msgid "For ease, use %s"
msgstr "Для зручності використовуйте %s"
#: js/settings/ui/Instructions.tsx:64
-#: languages/wptelegram-login-js-translations.php:209
+#: languages/wptelegram-login-js-translations.php:212
msgid "Telegram Desktop"
msgstr ""
#. 1 command name, 2 bot name, 3 site url
#. translators: 1 command name, 2 bot name, 3 site url
#: js/settings/ui/Instructions.tsx:74
-#: languages/wptelegram-login-js-translations.php:213
+#: languages/wptelegram-login-js-translations.php:216
msgid "Send %1$s command to %2$s, select your bot and then send %3$s"
msgstr "Надішліть команду %1$s до %2$s, виберіть свого Бота і відправте %3$s"
#: js/settings/ui/Instructions.tsx:101
-#: languages/wptelegram-login-js-translations.php:179
+#: languages/wptelegram-login-js-translations.php:182
msgid "Test your bot token below and fill in the bot username if not filled automatically."
msgstr "Перевірте свій Токен Бота нижче та заповніть користувацьке ім'я Бота, якщо воно не заповнилось автоматично."
#: js/settings/ui/Instructions.tsx:105
-#: languages/wptelegram-login-js-translations.php:182
+#: languages/wptelegram-login-js-translations.php:185
msgid "Hit %s below"
msgstr "Натисніть %s нижче"
#: ../../packages/js/shared-ui/form/submit/submit-button.tsx:12
#: js/settings/ui/Instructions.tsx:105
-#: languages/wptelegram-login-js-translations.php:57
+#: languages/wptelegram-login-js-translations.php:60
msgid "Save Changes"
msgstr "Зберегти зміни"
#: js/settings/ui/Instructions.tsx:106
-#: languages/wptelegram-login-js-translations.php:185
+#: languages/wptelegram-login-js-translations.php:188
msgid "That's it. You are ready to rock :)"
msgstr "Це воно. Ви готові запалювати :)"
#: js/settings/ui/LoginOptions.tsx:19
-#: languages/wptelegram-login-js-translations.php:228
+#: languages/wptelegram-login-js-translations.php:231
msgid "Homepage"
msgstr "Домашня сторінка"
#: js/settings/ui/LoginOptions.tsx:20
-#: languages/wptelegram-login-js-translations.php:231
+#: languages/wptelegram-login-js-translations.php:234
msgid "Current page"
msgstr "Поточна сторінка"
#: js/settings/ui/LoginOptions.tsx:41
-#: languages/wptelegram-login-js-translations.php:234
+#: languages/wptelegram-login-js-translations.php:237
msgid "Login Options"
msgstr "Параметри входу"
#: js/settings/ui/LoginOptions.tsx:49
-#: languages/wptelegram-login-js-translations.php:237
+#: languages/wptelegram-login-js-translations.php:240
msgid "If enabled, only the existing users who have connected their Telegram will be able to login."
msgstr "Якщо встановлено прапорець, лише існуючі користувачі, які підключили Telegram, зможуть увійти."
#: js/settings/ui/LoginOptions.tsx:70
-#: languages/wptelegram-login-js-translations.php:240
+#: languages/wptelegram-login-js-translations.php:243
msgid "The default role to assign for the new users."
msgstr "Роль за замовчуванням для нових користувачів."
#: js/settings/ui/LoginOptions.tsx:91
-#: languages/wptelegram-login-js-translations.php:243
+#: languages/wptelegram-login-js-translations.php:246
msgid "Redirect location after login."
msgstr "Місце перенаправлення після входу."
#: js/settings/ui/LoginOptions.tsx:126
-#: languages/wptelegram-login-js-translations.php:216
+#: languages/wptelegram-login-js-translations.php:219
msgid "The user meta key to be used to save Telegram photo URL."
msgstr "Мета-ключ користувача, який використовується для збереження URL-адреси фото Telegram."
#: js/settings/ui/LoginOptions.tsx:148
-#: languages/wptelegram-login-js-translations.php:219
+#: languages/wptelegram-login-js-translations.php:222
msgid "If enabled, a random email address will be generated for new user accounts."
msgstr ""
#: js/settings/ui/LoginOptions.tsx:150
-#: languages/wptelegram-login-js-translations.php:222
+#: languages/wptelegram-login-js-translations.php:225
msgid "Useful when you want the users to be able to receive private notifications."
msgstr ""
#: js/settings/ui/TelegramOptions.tsx:24
-#: languages/wptelegram-login-js-translations.php:255
+#: languages/wptelegram-login-js-translations.php:258
msgid "Telegram Options"
msgstr "Параметри Telegram "
#: js/settings/ui/TelegramOptions.tsx:40
-#: languages/wptelegram-login-js-translations.php:258
+#: languages/wptelegram-login-js-translations.php:261
msgid "Use %s above to set automatically."
msgstr "Використовуйте %s вище для автоматичного встановлення."
#: ../../packages/js/shared-ui/form/use-bot-token-test.tsx:67
#: js/settings/ui/TelegramOptions.tsx:41
-#: languages/wptelegram-login-js-translations.php:67
+#: languages/wptelegram-login-js-translations.php:70
msgid "Test Token"
msgstr "Перевірити Токен"
#. 1, 2 Menu names
#. translators: 1, 2 Menu names
#: js/settings/ui/WidgetInfoCard.tsx:19
-#: languages/wptelegram-login-js-translations.php:262
+#: languages/wptelegram-login-js-translations.php:265
msgid "Goto %1$s and click/drag %2$s and place it where you want it to be."
msgstr "Перейдіть на %1$s і натисніть/перетягніть %2$s та розмістіть його там, де ви хочете."
#: js/settings/ui/WidgetInfoCard.tsx:28
-#: languages/wptelegram-login-js-translations.php:265
+#: languages/wptelegram-login-js-translations.php:268
msgid "Appearance"
msgstr "Вигляд"
#: js/settings/ui/WidgetInfoCard.tsx:29
-#: languages/wptelegram-login-js-translations.php:268
+#: languages/wptelegram-login-js-translations.php:271
msgid "Widgets"
msgstr "Віджети"
#: js/settings/ui/WidgetInfoCard.tsx:37
-#: languages/wptelegram-login-js-translations.php:271
+#: languages/wptelegram-login-js-translations.php:274
msgid "Alternately, you can use the below shortcode or the block available in block editor."
msgstr "Крім того, ви можете скористатись шорткодом нижче або блоком, доступним у редакторі блоків."
#: js/settings/ui/WidgetInfoCard.tsx:41
-#: languages/wptelegram-login-js-translations.php:274
+#: languages/wptelegram-login-js-translations.php:277
msgid "Inside page or post content:"
msgstr "Всередині вмісту сторінки або публікації:"
#: js/settings/ui/WidgetInfoCard.tsx:49
-#: languages/wptelegram-login-js-translations.php:277
+#: languages/wptelegram-login-js-translations.php:280
msgid "Inside the theme templates"
msgstr "Всередині шаблонів тем"
#: js/settings/ui/WidgetInfoCard.tsx:57
-#: languages/wptelegram-login-js-translations.php:280
+#: languages/wptelegram-login-js-translations.php:283
msgid "or"
msgstr "або"
#: ../../packages/js/shared-ui/form/bot-token-field.tsx:45
-#: languages/wptelegram-login-js-translations.php:53
+#: languages/wptelegram-login-js-translations.php:56
msgid "Please read the instructions above."
msgstr "Будь ласка, прочитайте інструкції вище."
#. %s: plugin name
#. translators: %s: plugin name
#: ../../packages/js/shared-ui/components/plugin-info/plugin-info-card.tsx:57
-#: languages/wptelegram-login-js-translations.php:33
+#: languages/wptelegram-login-js-translations.php:36
msgid "Do you like %s?"
msgstr "Вам подобається %s?"
#: ../../packages/js/shared-ui/components/plugin-info/plugin-info-card.tsx:69
-#: languages/wptelegram-login-js-translations.php:36
+#: languages/wptelegram-login-js-translations.php:39
msgid "Write a review"
msgstr ""
#: ../../packages/js/shared-ui/components/plugin-info/plugin-info-card.tsx:85
-#: languages/wptelegram-login-js-translations.php:39
+#: languages/wptelegram-login-js-translations.php:42
msgid "Need help?"
msgstr "Потрібна допомога?"
#: ../../packages/js/shared-ui/form/test-result/render-test-result.tsx:39
-#: languages/wptelegram-login-js-translations.php:60
+#: languages/wptelegram-login-js-translations.php:63
msgid "Test Result:"
msgstr "Результати тесту:"
#. %s: social handle
#. translators: %s: social handle
#: ../../packages/js/shared-ui/components/wptg-social-icons.tsx:42
-#: languages/wptelegram-login-js-translations.php:46
+#: languages/wptelegram-login-js-translations.php:49
msgid "Follow %s"
msgstr "Слідкуйте за %s"
#. %s: channel name
#. translators: %s: channel name
#: ../../packages/js/shared-ui/components/wptg-social-icons.tsx:62
-#: languages/wptelegram-login-js-translations.php:50
+#: languages/wptelegram-login-js-translations.php:53
msgid "Join %s"
msgstr "Приєднуйтесь до %s"
#: ../../packages/js/shared-ui/components/widget-info/widget-info-card.tsx:24
-#: languages/wptelegram-login-js-translations.php:42
+#: languages/wptelegram-login-js-translations.php:45
msgid "Widget Info"
msgstr "Інформація віджета"
#: ../../packages/js/shared-ui/form/use-bot-token-test.tsx:66
-#: languages/wptelegram-login-js-translations.php:63
+#: languages/wptelegram-login-js-translations.php:66
msgid "Please wait…"
msgstr "Будь ласка, зачекайте..."
@@ -535,34 +535,34 @@ msgid "This is a test message"
msgstr ""
#: ../../packages/js/services/telegram/telegram-utils.ts:152
-#: languages/wptelegram-login-js-translations.php:20
+#: languages/wptelegram-login-js-translations.php:23
msgid "Success"
msgstr ""
#: ../../packages/js/services/use-display-feedback.ts:68
-#: languages/wptelegram-login-js-translations.php:23
+#: languages/wptelegram-login-js-translations.php:26
msgid "Lets fix these errors first."
msgstr ""
#: ../../packages/js/services/use-submit-form.ts:64
-#: languages/wptelegram-login-js-translations.php:26
+#: languages/wptelegram-login-js-translations.php:29
msgid "Changes saved successfully."
msgstr "Зміни успішно збережено."
#: ../../packages/js/utilities/fields.ts:35
#: js/settings/services/fields.ts:70
-#: languages/wptelegram-login-js-translations.php:71
+#: languages/wptelegram-login-js-translations.php:74
msgid "Invalid %s"
msgstr "Невірний %s"
#: ../../packages/js/utilities/fields.ts:39
#: js/settings/services/fields.ts:57
-#: languages/wptelegram-login-js-translations.php:75
+#: languages/wptelegram-login-js-translations.php:78
msgid "%s required."
msgstr "%s є обов'язковим."
#: ../../packages/js/utilities/fields.ts:42
-#: languages/wptelegram-login-js-translations.php:78
+#: languages/wptelegram-login-js-translations.php:81
msgid "Changes could not be saved."
msgstr "Не вдається зберегти зміни."
@@ -616,7 +616,7 @@ msgstr "Заголовок"
#: js/settings/ui/WidgetInfoCard.tsx:32
#: wptelegram-login.php
#: includes/Main.php:427
-#: languages/wptelegram-login-js-translations.php:117
+#: languages/wptelegram-login-js-translations.php:120
#: shared/widgets/Primary.php:28
#~ msgid "WP Telegram Login"
#~ msgstr "WP Telegram Вхід"
@@ -624,7 +624,7 @@ msgstr "Заголовок"
#. Description of the plugin
#: js/settings/ui/Sidebar.tsx:18
#: wptelegram-login.php
-#: languages/wptelegram-login-js-translations.php:246
+#: languages/wptelegram-login-js-translations.php:249
#~ msgid "Let the users login to your WordPress website with their Telegram and make it simple for them to get connected and let them receive their email notifications on Telegram."
#~ msgstr "Дозвольте користувачам увійти на ваш веб-сайт WordPress за допомогою Telegram, спростіть авторизацію та дозвольте отримувати сповіщення електронною поштою у Telegram."
@@ -658,15 +658,16 @@ msgid "WP Telegram"
msgstr ""
#: js/settings/ui/Sidebar.tsx:21
-#: languages/wptelegram-login-js-translations.php:249
+#: languages/wptelegram-login-js-translations.php:252
msgid "Join our public chat on Telegram"
msgstr ""
#: js/settings/ui/Sidebar.tsx:26
-#: languages/wptelegram-login-js-translations.php:252
+#: languages/wptelegram-login-js-translations.php:255
msgid "Support"
msgstr ""
#: ../../packages/js/services/telegram/telegram-utils.ts:133
+#: languages/wptelegram-login-js-translations.php:20
msgid "Message is empty"
msgstr ""
diff --git a/plugins/wptelegram-login/src/languages/wptelegram-login.pot b/plugins/wptelegram-login/src/languages/wptelegram-login.pot
index 0f4cbb43..4c88686d 100644
--- a/plugins/wptelegram-login/src/languages/wptelegram-login.pot
+++ b/plugins/wptelegram-login/src/languages/wptelegram-login.pot
@@ -2,14 +2,14 @@
# This file is distributed under the GPL-2.0+.
msgid ""
msgstr ""
-"Project-Id-Version: WP Telegram Login 1.11.2\n"
+"Project-Id-Version: WP Telegram Login 1.11.3\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wptelegram-login\n"
"Last-Translator: FULL NAME