Version Description
Download this release
Release Info
Developer | businessdirectoryplugin |
Plugin | Business Directory Plugin |
Version | 5.17.1 |
Comparing to | |
See all releases |
Code changes from version 5.17 to 5.17.1
- README.TXT +7 -2
- business-directory-plugin.php +1 -1
- includes/admin/helpers/tables/class-fees-table.php +17 -14
- includes/class-wpbdp.php +1 -1
- includes/licensing.php +7 -5
- languages/business-directory-plugin-ar.po +60 -60
- languages/business-directory-plugin-de_DE.po +60 -60
- languages/business-directory-plugin-en_US.po +60 -60
- languages/business-directory-plugin-fr_FR.po +60 -60
- languages/business-directory-plugin-it_IT.po +60 -60
- languages/business-directory-plugin-nl_NL.po +60 -60
- languages/business-directory-plugin-pl_PL.po +60 -60
- languages/business-directory-plugin-ru_RU.po +60 -60
- languages/business-directory-plugin-sv_SE.po +60 -60
- languages/business-directory-plugin.pot +61 -61
- themes/default/theme.json +1 -1
README.TXT
CHANGED
@@ -3,8 +3,8 @@ Contributors: businessdirectoryplugin
|
|
3 |
Tags: business directory, listings, directory plugin, staff directory, member directory, company directory, team directory, chamber of commerce business directory, church directory, address book, contact directory, local business directory, listings directory, link directory
|
4 |
Requires at least: 4.8
|
5 |
Requires PHP: 5.6
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 5.17
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
The best WordPress Business Directory Plugin. Build an easy team directory, member directory, staff directory, church directory, and more.
|
@@ -158,6 +158,11 @@ Yes it is. However, you cannot "network activate" the plugin (as this will share
|
|
158 |
This can be done under Plugins -> Add New as the Administrator user. Do not "network activate" as the "super admin".
|
159 |
|
160 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
161 |
= 5.17 =
|
162 |
* New: Simplify setting up plans. Now, there's no free vs paid mode. If paid plans are created, a gateway needs to be set up.
|
163 |
* Add more caching to speed up page loading.
|
3 |
Tags: business directory, listings, directory plugin, staff directory, member directory, company directory, team directory, chamber of commerce business directory, church directory, address book, contact directory, local business directory, listings directory, link directory
|
4 |
Requires at least: 4.8
|
5 |
Requires PHP: 5.6
|
6 |
+
Tested up to: 5.9
|
7 |
+
Stable tag: 5.17.1
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
The best WordPress Business Directory Plugin. Build an easy team directory, member directory, staff directory, church directory, and more.
|
158 |
This can be done under Plugins -> Add New as the Administrator user. Do not "network activate" as the "super admin".
|
159 |
|
160 |
== Changelog ==
|
161 |
+
= 5.17.1 =
|
162 |
+
* Fix: Hide the custom order column in the plans table if not using custom ordering.
|
163 |
+
* Fix: Allow manual enable/disable of default plan.
|
164 |
+
* Fix: PHP warning showing on license page on some sites.
|
165 |
+
|
166 |
= 5.17 =
|
167 |
* New: Simplify setting up plans. Now, there's no free vs paid mode. If paid plans are created, a gateway needs to be set up.
|
168 |
* Add more caching to speed up page loading.
|
business-directory-plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Business Directory Plugin
|
4 |
* Plugin URI: https://businessdirectoryplugin.com
|
5 |
* Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
|
6 |
-
* Version: 5.17
|
7 |
* Author: Business Directory Team
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: business-directory-plugin
|
3 |
* Plugin Name: Business Directory Plugin
|
4 |
* Plugin URI: https://businessdirectoryplugin.com
|
5 |
* Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
|
6 |
+
* Version: 5.17.1
|
7 |
* Author: Business Directory Team
|
8 |
* Author URI: https://businessdirectoryplugin.com
|
9 |
* Text Domain: business-directory-plugin
|
includes/admin/helpers/tables/class-fees-table.php
CHANGED
@@ -65,6 +65,10 @@ class WPBDP__Admin__Fees_Table extends WP_List_Table {
|
|
65 |
'images' => __( 'Images', 'business-directory-plugin' ),
|
66 |
'attributes' => _x( 'Attributes', 'fees admin', 'business-directory-plugin' ),
|
67 |
);
|
|
|
|
|
|
|
|
|
68 |
|
69 |
return $cols;
|
70 |
}
|
@@ -145,21 +149,20 @@ class WPBDP__Admin__Fees_Table extends WP_List_Table {
|
|
145 |
$admin_fees_url
|
146 |
);
|
147 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
if ( 'free' !== $fee->tag ) {
|
149 |
-
if ( $fee->enabled ) {
|
150 |
-
$actions['disable'] = sprintf(
|
151 |
-
'<a href="%s">%s</a>',
|
152 |
-
esc_url( $toggle_url ),
|
153 |
-
esc_html__( 'Disable', 'business-directory-plugin' )
|
154 |
-
);
|
155 |
-
} else {
|
156 |
-
$actions['enable'] = sprintf(
|
157 |
-
'<a href="%s">%s</a>',
|
158 |
-
esc_url( $toggle_url ),
|
159 |
-
esc_html__( 'Enable', 'business-directory-plugin' )
|
160 |
-
);
|
161 |
-
}
|
162 |
-
|
163 |
$actions['delete'] = sprintf(
|
164 |
'<a href="%s">%s</a>',
|
165 |
esc_url(
|
65 |
'images' => __( 'Images', 'business-directory-plugin' ),
|
66 |
'attributes' => _x( 'Attributes', 'fees admin', 'business-directory-plugin' ),
|
67 |
);
|
68 |
+
$current_order = wpbdp_get_option( 'fee-order' );
|
69 |
+
if ( 'custom' !== $current_order['method'] ) {
|
70 |
+
unset( $cols['order'] );
|
71 |
+
}
|
72 |
|
73 |
return $cols;
|
74 |
}
|
149 |
$admin_fees_url
|
150 |
);
|
151 |
|
152 |
+
if ( $fee->enabled ) {
|
153 |
+
$actions['disable'] = sprintf(
|
154 |
+
'<a href="%s">%s</a>',
|
155 |
+
esc_url( $toggle_url ),
|
156 |
+
esc_html__( 'Disable', 'business-directory-plugin' )
|
157 |
+
);
|
158 |
+
} else {
|
159 |
+
$actions['enable'] = sprintf(
|
160 |
+
'<a href="%s">%s</a>',
|
161 |
+
esc_url( $toggle_url ),
|
162 |
+
esc_html__( 'Enable', 'business-directory-plugin' )
|
163 |
+
);
|
164 |
+
}
|
165 |
if ( 'free' !== $fee->tag ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
$actions['delete'] = sprintf(
|
167 |
'<a href="%s">%s</a>',
|
168 |
esc_url(
|
includes/class-wpbdp.php
CHANGED
@@ -28,7 +28,7 @@ final class WPBDP {
|
|
28 |
}
|
29 |
|
30 |
private function setup_constants() {
|
31 |
-
define( 'WPBDP_VERSION', '5.17' );
|
32 |
|
33 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
|
34 |
define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
|
28 |
}
|
29 |
|
30 |
private function setup_constants() {
|
31 |
+
define( 'WPBDP_VERSION', '5.17.1' );
|
32 |
|
33 |
define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
|
34 |
define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
|
includes/licensing.php
CHANGED
@@ -47,7 +47,7 @@ class WPBDP_Licensing {
|
|
47 |
$pro_id = 'module-' . $this->premium_id();
|
48 |
$pro = ! empty( $this->modules_array( true ) );
|
49 |
|
50 |
-
$errors = get_option( 'wpbdp_licenses_errors' );
|
51 |
if ( $pro ) {
|
52 |
// Remove any other plugin errors since only the main one helps.
|
53 |
if ( isset( $errors[ $pro_id ] ) ) {
|
@@ -59,10 +59,12 @@ class WPBDP_Licensing {
|
|
59 |
}
|
60 |
}
|
61 |
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
|
|
|
|
66 |
}
|
67 |
}
|
68 |
|
47 |
$pro_id = 'module-' . $this->premium_id();
|
48 |
$pro = ! empty( $this->modules_array( true ) );
|
49 |
|
50 |
+
$errors = get_option( 'wpbdp_licenses_errors', array() );
|
51 |
if ( $pro ) {
|
52 |
// Remove any other plugin errors since only the main one helps.
|
53 |
if ( isset( $errors[ $pro_id ] ) ) {
|
59 |
}
|
60 |
}
|
61 |
|
62 |
+
if ( is_array( $errors ) ) {
|
63 |
+
// Remove an error if it's for a plugin that's deactivated.
|
64 |
+
foreach ( $errors as $k => $error ) {
|
65 |
+
if ( ! isset( $this->items[ $k ] ) ) {
|
66 |
+
unset( $errors[ $k ] );
|
67 |
+
}
|
68 |
}
|
69 |
}
|
70 |
|
languages/business-directory-plugin-ar.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-02-
|
9 |
"PO-Revision-Date: 2017-01-16 17:47-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -100,7 +100,7 @@ msgid "Form Fields"
|
|
100 |
msgstr "حقول الاستمارة"
|
101 |
|
102 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
103 |
-
#: includes/licensing.php:
|
104 |
#, fuzzy
|
105 |
msgid "Modules"
|
106 |
msgstr "(جميع الوحدات)"
|
@@ -437,7 +437,7 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
437 |
msgstr "لماذا قمت بحذف إضافة دليل الأعمال؟"
|
438 |
|
439 |
#: includes/admin/controllers/class-settings-admin.php:536
|
440 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
441 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
442 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
443 |
#: templates/admin/payments-note.tpl.php:14
|
@@ -495,7 +495,7 @@ msgid "Installed"
|
|
495 |
msgstr "تم التنصيب"
|
496 |
|
497 |
#: includes/admin/helpers/class-modules-list.php:187
|
498 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
499 |
#: templates/admin/themes-item.tpl.php:41
|
500 |
#, fuzzy
|
501 |
msgid "Active"
|
@@ -514,7 +514,7 @@ msgid "Activate"
|
|
514 |
msgstr "قم بالتفعيل"
|
515 |
|
516 |
#: includes/admin/helpers/class-modules-list.php:235
|
517 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
518 |
#, fuzzy
|
519 |
msgid "Upgrade Now"
|
520 |
msgstr "ترقية إلى %s"
|
@@ -553,41 +553,41 @@ msgstr "السعر"
|
|
553 |
msgid "Listings"
|
554 |
msgstr "الإعلانات"
|
555 |
|
556 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
557 |
#, fuzzy
|
558 |
msgid "Disable"
|
559 |
msgstr "تعطيل"
|
560 |
|
561 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
562 |
#, fuzzy
|
563 |
msgid "Enable"
|
564 |
msgstr "تفعيل"
|
565 |
|
566 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
567 |
msgid "ID: %s"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
571 |
#, fuzzy
|
572 |
msgid "Paid Plan"
|
573 |
msgstr "تم الدفع"
|
574 |
|
575 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
576 |
#, fuzzy
|
577 |
msgid "Free Plan"
|
578 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
579 |
|
580 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
581 |
#, fuzzy
|
582 |
msgid "%1$s for %2$s"
|
583 |
msgstr "%s (ex. %s)"
|
584 |
|
585 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
586 |
#, fuzzy
|
587 |
msgid "Disabled"
|
588 |
msgstr "معطل"
|
589 |
|
590 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
591 |
#: includes/helpers/functions/templates-ui.php:431
|
592 |
#, fuzzy
|
593 |
msgid "Default"
|
@@ -1875,73 +1875,73 @@ msgid "Manage Listings"
|
|
1875 |
msgstr "إدارة الإعلانات المدفوعة"
|
1876 |
|
1877 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1878 |
-
#: includes/licensing.php:
|
1879 |
msgid ""
|
1880 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1881 |
"get updates."
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: includes/licensing.php:
|
1885 |
#, fuzzy
|
1886 |
msgid "Licenses"
|
1887 |
msgstr "تراخيص"
|
1888 |
|
1889 |
-
#: includes/licensing.php:
|
1890 |
msgid "Build more powerful directories"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: includes/licensing.php:
|
1894 |
msgid ""
|
1895 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: includes/licensing.php:
|
1899 |
#, fuzzy
|
1900 |
msgid "Already purchased?"
|
1901 |
msgstr "مُركب مسبقا"
|
1902 |
|
1903 |
#. translators: %s: item type.
|
1904 |
-
#: includes/licensing.php:
|
1905 |
msgid "%s will not get updates until license is reauthorized."
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: includes/licensing.php:
|
1909 |
#, fuzzy
|
1910 |
msgid "Enter License Key here"
|
1911 |
msgstr "تجديد مفتاح الترخيص"
|
1912 |
|
1913 |
-
#: includes/licensing.php:
|
1914 |
#, fuzzy
|
1915 |
msgid "Authorize"
|
1916 |
msgstr "تفعيل Authorize.net؟"
|
1917 |
|
1918 |
-
#: includes/licensing.php:
|
1919 |
#, fuzzy
|
1920 |
msgid "Invalid item ID"
|
1921 |
msgstr "معرف حقل غير صالح"
|
1922 |
|
1923 |
-
#: includes/licensing.php:
|
1924 |
#, fuzzy
|
1925 |
msgid "No license key provided"
|
1926 |
msgstr "لم يتم تقديم أي مفتاح الترخيص"
|
1927 |
|
1928 |
-
#: includes/licensing.php:
|
1929 |
#, fuzzy
|
1930 |
msgid "License key is invalid"
|
1931 |
msgstr "مفتاح الترخيص غير صالح"
|
1932 |
|
1933 |
-
#: includes/licensing.php:
|
1934 |
#, fuzzy
|
1935 |
msgid "Deactivation failed"
|
1936 |
msgstr "فشل التعطيل"
|
1937 |
|
1938 |
-
#: includes/licensing.php:
|
1939 |
#, fuzzy
|
1940 |
msgid "The license key was revoked."
|
1941 |
msgstr "لم يتم تقديم أي مفتاح الترخيص"
|
1942 |
|
1943 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1944 |
-
#: includes/licensing.php:
|
1945 |
msgid ""
|
1946 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1947 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -1949,50 +1949,50 @@ msgid ""
|
|
1949 |
"with your report."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
-
#: includes/licensing.php:
|
1953 |
msgid ""
|
1954 |
"It was not possible to establish a connection with the Business Directory "
|
1955 |
"server. The connection failed with the following error:"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: includes/licensing.php:
|
1959 |
msgid ""
|
1960 |
"It was not possible to establish a connection with the Business Directory "
|
1961 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: includes/licensing.php:
|
1965 |
msgid ""
|
1966 |
"It looks like your server is not authorized to make outgoing requests to "
|
1967 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1968 |
"our IP address 52.0.78.177 to your allow list."
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: includes/licensing.php:
|
1972 |
#, fuzzy
|
1973 |
msgid "Business Directory license key is missing."
|
1974 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
1975 |
|
1976 |
-
#: includes/licensing.php:
|
1977 |
#, fuzzy
|
1978 |
msgid "Business Directory license key has expired"
|
1979 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
1980 |
|
1981 |
-
#: includes/licensing.php:
|
1982 |
#, fuzzy
|
1983 |
msgid "Could not verify Business Directory license."
|
1984 |
msgstr "المساعدة في تحسين دليل الأعمال"
|
1985 |
|
1986 |
-
#: includes/licensing.php:
|
1987 |
#, fuzzy
|
1988 |
msgid "Review license keys"
|
1989 |
msgstr "تجديد مفتاح الترخيص"
|
1990 |
|
1991 |
-
#: includes/licensing.php:
|
1992 |
msgid "Missing data. Please reload this page and try again."
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#: includes/licensing.php:
|
1996 |
#, fuzzy
|
1997 |
msgid "Please enter a license key."
|
1998 |
msgstr "يرجى إدخال بريد إلكتروني صحيح."
|
@@ -3862,29 +3862,29 @@ msgctxt "fees admin"
|
|
3862 |
msgid "Attributes"
|
3863 |
msgstr "سمات الحقل"
|
3864 |
|
3865 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3866 |
msgctxt "fees admin"
|
3867 |
msgid "Edit"
|
3868 |
msgstr "تحرير"
|
3869 |
|
3870 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3871 |
#, fuzzy
|
3872 |
msgctxt "fees admin"
|
3873 |
msgid "Variable"
|
3874 |
msgstr "تعطيل"
|
3875 |
|
3876 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3877 |
#, fuzzy
|
3878 |
msgctxt "fees admin"
|
3879 |
msgid "%1$s + %2$s per category"
|
3880 |
msgstr "Frais \"%s\" pour catégorie \"%s\""
|
3881 |
|
3882 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3883 |
msgctxt "fees admin"
|
3884 |
msgid "Forever"
|
3885 |
msgstr "دائما"
|
3886 |
|
3887 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3888 |
msgctxt "fees admin"
|
3889 |
msgid "%d day"
|
3890 |
msgid_plural "%d days"
|
@@ -3895,23 +3895,23 @@ msgstr[3] "%d أيام"
|
|
3895 |
msgstr[4] "%d يوم"
|
3896 |
msgstr[5] "%d يوم"
|
3897 |
|
3898 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3899 |
msgctxt "fees admin"
|
3900 |
msgid "All categories"
|
3901 |
msgstr "جميع التصنيفات"
|
3902 |
|
3903 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3904 |
msgctxt "fees admin"
|
3905 |
msgid "Sticky"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3909 |
#, fuzzy
|
3910 |
msgctxt "fees admin"
|
3911 |
msgid "Recurring"
|
3912 |
msgstr "(متكرر)"
|
3913 |
|
3914 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3915 |
#, fuzzy
|
3916 |
msgctxt "fees admin"
|
3917 |
msgid "Private"
|
@@ -6336,18 +6336,18 @@ msgctxt "settings"
|
|
6336 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6337 |
msgstr ""
|
6338 |
|
6339 |
-
#: includes/licensing.php:
|
6340 |
#, fuzzy
|
6341 |
msgctxt "settings"
|
6342 |
msgid "Themes"
|
6343 |
msgstr "القوالب"
|
6344 |
|
6345 |
-
#: includes/licensing.php:
|
6346 |
msgctxt "settings"
|
6347 |
msgid "Please wait..."
|
6348 |
msgstr ""
|
6349 |
|
6350 |
-
#: includes/licensing.php:
|
6351 |
#, fuzzy
|
6352 |
msgctxt "settings"
|
6353 |
msgid "Deauthorize"
|
@@ -8392,19 +8392,19 @@ msgctxt "default category name"
|
|
8392 |
msgid "General"
|
8393 |
msgstr "عام"
|
8394 |
|
8395 |
-
#: includes/licensing.php:
|
8396 |
msgctxt "licensing"
|
8397 |
msgid "Could not contact licensing server"
|
8398 |
msgstr "لا يمكن الاتصال بخادم الترخيص"
|
8399 |
|
8400 |
-
#: includes/licensing.php:
|
8401 |
msgctxt "licensing"
|
8402 |
msgid ""
|
8403 |
"It was not possible to establish a connection with Business Directory's "
|
8404 |
"server. cURL was not found in your system"
|
8405 |
msgstr ""
|
8406 |
|
8407 |
-
#: includes/licensing.php:
|
8408 |
msgctxt "licensing"
|
8409 |
msgid ""
|
8410 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8413,7 +8413,7 @@ msgid ""
|
|
8413 |
"1.0.1c)."
|
8414 |
msgstr ""
|
8415 |
|
8416 |
-
#: includes/licensing.php:
|
8417 |
msgctxt "licensing"
|
8418 |
msgid ""
|
8419 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8421,47 +8421,47 @@ msgid ""
|
|
8421 |
"services using the latest security standards."
|
8422 |
msgstr ""
|
8423 |
|
8424 |
-
#: includes/licensing.php:
|
8425 |
msgctxt "licensing"
|
8426 |
msgid ""
|
8427 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8428 |
"Include this message if necessary"
|
8429 |
msgstr ""
|
8430 |
|
8431 |
-
#: includes/licensing.php:
|
8432 |
msgctxt "licensing"
|
8433 |
msgid ""
|
8434 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8435 |
"Include this message if necessary."
|
8436 |
msgstr ""
|
8437 |
|
8438 |
-
#: includes/licensing.php:
|
8439 |
msgctxt "licensing"
|
8440 |
msgid "The server returned a 403 Forbidden error."
|
8441 |
msgstr ""
|
8442 |
|
8443 |
-
#: includes/licensing.php:
|
8444 |
msgctxt "licensing"
|
8445 |
msgid "Could not activate license: %s."
|
8446 |
msgstr "لا يمكن تفعيل الترخيص: %s."
|
8447 |
|
8448 |
-
#: includes/licensing.php:
|
8449 |
msgctxt "licensing"
|
8450 |
msgid "License activated"
|
8451 |
msgstr "تم تفعيل ترخيص"
|
8452 |
|
8453 |
-
#: includes/licensing.php:
|
8454 |
msgctxt "licensing"
|
8455 |
msgid "Could not deactivate license: %s."
|
8456 |
msgstr "لا يمكن إلغاء الترخيص: %s."
|
8457 |
|
8458 |
-
#: includes/licensing.php:
|
8459 |
msgctxt "licensing"
|
8460 |
msgid "License deactivated"
|
8461 |
msgstr "تم إلغاء تفعيل الترخيص"
|
8462 |
|
8463 |
#. translators: "<module-name>" version <version-number> is not...
|
8464 |
-
#: includes/licensing.php:
|
8465 |
msgctxt "deprecation"
|
8466 |
msgid ""
|
8467 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-03 21:01:26+00:00\n"
|
9 |
"PO-Revision-Date: 2017-01-16 17:47-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
100 |
msgstr "حقول الاستمارة"
|
101 |
|
102 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
103 |
+
#: includes/licensing.php:229
|
104 |
#, fuzzy
|
105 |
msgid "Modules"
|
106 |
msgstr "(جميع الوحدات)"
|
437 |
msgstr "لماذا قمت بحذف إضافة دليل الأعمال؟"
|
438 |
|
439 |
#: includes/admin/controllers/class-settings-admin.php:536
|
440 |
+
#: includes/admin/helpers/tables/class-fees-table.php:177
|
441 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
442 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
443 |
#: templates/admin/payments-note.tpl.php:14
|
495 |
msgstr "تم التنصيب"
|
496 |
|
497 |
#: includes/admin/helpers/class-modules-list.php:187
|
498 |
+
#: includes/admin/helpers/tables/class-fees-table.php:287
|
499 |
#: templates/admin/themes-item.tpl.php:41
|
500 |
#, fuzzy
|
501 |
msgid "Active"
|
514 |
msgstr "قم بالتفعيل"
|
515 |
|
516 |
#: includes/admin/helpers/class-modules-list.php:235
|
517 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:277
|
518 |
#, fuzzy
|
519 |
msgid "Upgrade Now"
|
520 |
msgstr "ترقية إلى %s"
|
553 |
msgid "Listings"
|
554 |
msgstr "الإعلانات"
|
555 |
|
556 |
+
#: includes/admin/helpers/tables/class-fees-table.php:156
|
557 |
#, fuzzy
|
558 |
msgid "Disable"
|
559 |
msgstr "تعطيل"
|
560 |
|
561 |
+
#: includes/admin/helpers/tables/class-fees-table.php:162
|
562 |
#, fuzzy
|
563 |
msgid "Enable"
|
564 |
msgstr "تفعيل"
|
565 |
|
566 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
567 |
msgid "ID: %s"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
571 |
#, fuzzy
|
572 |
msgid "Paid Plan"
|
573 |
msgstr "تم الدفع"
|
574 |
|
575 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
576 |
#, fuzzy
|
577 |
msgid "Free Plan"
|
578 |
msgstr "إنتقل إلى \"إدارة حقول\""
|
579 |
|
580 |
+
#: includes/admin/helpers/tables/class-fees-table.php:222
|
581 |
#, fuzzy
|
582 |
msgid "%1$s for %2$s"
|
583 |
msgstr "%s (ex. %s)"
|
584 |
|
585 |
+
#: includes/admin/helpers/tables/class-fees-table.php:285
|
586 |
#, fuzzy
|
587 |
msgid "Disabled"
|
588 |
msgstr "معطل"
|
589 |
|
590 |
+
#: includes/admin/helpers/tables/class-fees-table.php:291
|
591 |
#: includes/helpers/functions/templates-ui.php:431
|
592 |
#, fuzzy
|
593 |
msgid "Default"
|
1875 |
msgstr "إدارة الإعلانات المدفوعة"
|
1876 |
|
1877 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1878 |
+
#: includes/licensing.php:152
|
1879 |
msgid ""
|
1880 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1881 |
"get updates."
|
1882 |
msgstr ""
|
1883 |
|
1884 |
+
#: includes/licensing.php:205 includes/licensing.php:208
|
1885 |
#, fuzzy
|
1886 |
msgid "Licenses"
|
1887 |
msgstr "تراخيص"
|
1888 |
|
1889 |
+
#: includes/licensing.php:275
|
1890 |
msgid "Build more powerful directories"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
+
#: includes/licensing.php:276
|
1894 |
msgid ""
|
1895 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: includes/licensing.php:278
|
1899 |
#, fuzzy
|
1900 |
msgid "Already purchased?"
|
1901 |
msgstr "مُركب مسبقا"
|
1902 |
|
1903 |
#. translators: %s: item type.
|
1904 |
+
#: includes/licensing.php:296
|
1905 |
msgid "%s will not get updates until license is reauthorized."
|
1906 |
msgstr ""
|
1907 |
|
1908 |
+
#: includes/licensing.php:317
|
1909 |
#, fuzzy
|
1910 |
msgid "Enter License Key here"
|
1911 |
msgstr "تجديد مفتاح الترخيص"
|
1912 |
|
1913 |
+
#: includes/licensing.php:318
|
1914 |
#, fuzzy
|
1915 |
msgid "Authorize"
|
1916 |
msgstr "تفعيل Authorize.net؟"
|
1917 |
|
1918 |
+
#: includes/licensing.php:422
|
1919 |
#, fuzzy
|
1920 |
msgid "Invalid item ID"
|
1921 |
msgstr "معرف حقل غير صالح"
|
1922 |
|
1923 |
+
#: includes/licensing.php:435
|
1924 |
#, fuzzy
|
1925 |
msgid "No license key provided"
|
1926 |
msgstr "لم يتم تقديم أي مفتاح الترخيص"
|
1927 |
|
1928 |
+
#: includes/licensing.php:484 includes/licensing.php:522
|
1929 |
#, fuzzy
|
1930 |
msgid "License key is invalid"
|
1931 |
msgstr "مفتاح الترخيص غير صالح"
|
1932 |
|
1933 |
+
#: includes/licensing.php:488
|
1934 |
#, fuzzy
|
1935 |
msgid "Deactivation failed"
|
1936 |
msgstr "فشل التعطيل"
|
1937 |
|
1938 |
+
#: includes/licensing.php:533
|
1939 |
#, fuzzy
|
1940 |
msgid "The license key was revoked."
|
1941 |
msgstr "لم يتم تقديم أي مفتاح الترخيص"
|
1942 |
|
1943 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1944 |
+
#: includes/licensing.php:537
|
1945 |
msgid ""
|
1946 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1947 |
"%2$s and let them know your license is being reported as revoked by the "
|
1949 |
"with your report."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: includes/licensing.php:600
|
1953 |
msgid ""
|
1954 |
"It was not possible to establish a connection with the Business Directory "
|
1955 |
"server. The connection failed with the following error:"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
+
#: includes/licensing.php:613
|
1959 |
msgid ""
|
1960 |
"It was not possible to establish a connection with the Business Directory "
|
1961 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: includes/licensing.php:660
|
1965 |
msgid ""
|
1966 |
"It looks like your server is not authorized to make outgoing requests to "
|
1967 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1968 |
"our IP address 52.0.78.177 to your allow list."
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: includes/licensing.php:754
|
1972 |
#, fuzzy
|
1973 |
msgid "Business Directory license key is missing."
|
1974 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
1975 |
|
1976 |
+
#: includes/licensing.php:755
|
1977 |
#, fuzzy
|
1978 |
msgid "Business Directory license key has expired"
|
1979 |
msgstr "دليل الأعمال - مفتاح الترخيص منتهي"
|
1980 |
|
1981 |
+
#: includes/licensing.php:756
|
1982 |
#, fuzzy
|
1983 |
msgid "Could not verify Business Directory license."
|
1984 |
msgstr "المساعدة في تحسين دليل الأعمال"
|
1985 |
|
1986 |
+
#: includes/licensing.php:767
|
1987 |
#, fuzzy
|
1988 |
msgid "Review license keys"
|
1989 |
msgstr "تجديد مفتاح الترخيص"
|
1990 |
|
1991 |
+
#: includes/licensing.php:882
|
1992 |
msgid "Missing data. Please reload this page and try again."
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: includes/licensing.php:887
|
1996 |
#, fuzzy
|
1997 |
msgid "Please enter a license key."
|
1998 |
msgstr "يرجى إدخال بريد إلكتروني صحيح."
|
3862 |
msgid "Attributes"
|
3863 |
msgstr "سمات الحقل"
|
3864 |
|
3865 |
+
#: includes/admin/helpers/tables/class-fees-table.php:141
|
3866 |
msgctxt "fees admin"
|
3867 |
msgid "Edit"
|
3868 |
msgstr "تحرير"
|
3869 |
|
3870 |
+
#: includes/admin/helpers/tables/class-fees-table.php:210
|
3871 |
#, fuzzy
|
3872 |
msgctxt "fees admin"
|
3873 |
msgid "Variable"
|
3874 |
msgstr "تعطيل"
|
3875 |
|
3876 |
+
#: includes/admin/helpers/tables/class-fees-table.php:215
|
3877 |
#, fuzzy
|
3878 |
msgctxt "fees admin"
|
3879 |
msgid "%1$s + %2$s per category"
|
3880 |
msgstr "Frais \"%s\" pour catégorie \"%s\""
|
3881 |
|
3882 |
+
#: includes/admin/helpers/tables/class-fees-table.php:234
|
3883 |
msgctxt "fees admin"
|
3884 |
msgid "Forever"
|
3885 |
msgstr "دائما"
|
3886 |
|
3887 |
+
#: includes/admin/helpers/tables/class-fees-table.php:236
|
3888 |
msgctxt "fees admin"
|
3889 |
msgid "%d day"
|
3890 |
msgid_plural "%d days"
|
3895 |
msgstr[4] "%d يوم"
|
3896 |
msgstr[5] "%d يوم"
|
3897 |
|
3898 |
+
#: includes/admin/helpers/tables/class-fees-table.php:266
|
3899 |
msgctxt "fees admin"
|
3900 |
msgid "All categories"
|
3901 |
msgstr "جميع التصنيفات"
|
3902 |
|
3903 |
+
#: includes/admin/helpers/tables/class-fees-table.php:295
|
3904 |
msgctxt "fees admin"
|
3905 |
msgid "Sticky"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
3909 |
#, fuzzy
|
3910 |
msgctxt "fees admin"
|
3911 |
msgid "Recurring"
|
3912 |
msgstr "(متكرر)"
|
3913 |
|
3914 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
3915 |
#, fuzzy
|
3916 |
msgctxt "fees admin"
|
3917 |
msgid "Private"
|
6336 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6337 |
msgstr ""
|
6338 |
|
6339 |
+
#: includes/licensing.php:247
|
6340 |
#, fuzzy
|
6341 |
msgctxt "settings"
|
6342 |
msgid "Themes"
|
6343 |
msgstr "القوالب"
|
6344 |
|
6345 |
+
#: includes/licensing.php:318 includes/licensing.php:319
|
6346 |
msgctxt "settings"
|
6347 |
msgid "Please wait..."
|
6348 |
msgstr ""
|
6349 |
|
6350 |
+
#: includes/licensing.php:319
|
6351 |
#, fuzzy
|
6352 |
msgctxt "settings"
|
6353 |
msgid "Deauthorize"
|
8392 |
msgid "General"
|
8393 |
msgstr "عام"
|
8394 |
|
8395 |
+
#: includes/licensing.php:573
|
8396 |
msgctxt "licensing"
|
8397 |
msgid "Could not contact licensing server"
|
8398 |
msgstr "لا يمكن الاتصال بخادم الترخيص"
|
8399 |
|
8400 |
+
#: includes/licensing.php:586
|
8401 |
msgctxt "licensing"
|
8402 |
msgid ""
|
8403 |
"It was not possible to establish a connection with Business Directory's "
|
8404 |
"server. cURL was not found in your system"
|
8405 |
msgstr ""
|
8406 |
|
8407 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8408 |
msgctxt "licensing"
|
8409 |
msgid ""
|
8410 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8413 |
"1.0.1c)."
|
8414 |
msgstr ""
|
8415 |
|
8416 |
+
#: includes/licensing.php:590 includes/licensing.php:620
|
8417 |
msgctxt "licensing"
|
8418 |
msgid ""
|
8419 |
"Upgrading your system will not only allow you to communicate with Business "
|
8421 |
"services using the latest security standards."
|
8422 |
msgstr ""
|
8423 |
|
8424 |
+
#: includes/licensing.php:592
|
8425 |
msgctxt "licensing"
|
8426 |
msgid ""
|
8427 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8428 |
"Include this message if necessary"
|
8429 |
msgstr ""
|
8430 |
|
8431 |
+
#: includes/licensing.php:622
|
8432 |
msgctxt "licensing"
|
8433 |
msgid ""
|
8434 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8435 |
"Include this message if necessary."
|
8436 |
msgstr ""
|
8437 |
|
8438 |
+
#: includes/licensing.php:658
|
8439 |
msgctxt "licensing"
|
8440 |
msgid "The server returned a 403 Forbidden error."
|
8441 |
msgstr ""
|
8442 |
|
8443 |
+
#: includes/licensing.php:904
|
8444 |
msgctxt "licensing"
|
8445 |
msgid "Could not activate license: %s."
|
8446 |
msgstr "لا يمكن تفعيل الترخيص: %s."
|
8447 |
|
8448 |
+
#: includes/licensing.php:909
|
8449 |
msgctxt "licensing"
|
8450 |
msgid "License activated"
|
8451 |
msgstr "تم تفعيل ترخيص"
|
8452 |
|
8453 |
+
#: includes/licensing.php:941
|
8454 |
msgctxt "licensing"
|
8455 |
msgid "Could not deactivate license: %s."
|
8456 |
msgstr "لا يمكن إلغاء الترخيص: %s."
|
8457 |
|
8458 |
+
#: includes/licensing.php:943
|
8459 |
msgctxt "licensing"
|
8460 |
msgid "License deactivated"
|
8461 |
msgstr "تم إلغاء تفعيل الترخيص"
|
8462 |
|
8463 |
#. translators: "<module-name>" version <version-number> is not...
|
8464 |
+
#: includes/licensing.php:1183
|
8465 |
msgctxt "deprecation"
|
8466 |
msgid ""
|
8467 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
languages/business-directory-plugin-de_DE.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-02-
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
|
11 |
"Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
|
@@ -104,7 +104,7 @@ msgid "Form Fields"
|
|
104 |
msgstr "Formularfelder"
|
105 |
|
106 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
107 |
-
#: includes/licensing.php:
|
108 |
#, fuzzy
|
109 |
msgid "Modules"
|
110 |
msgstr "Installierte Module"
|
@@ -443,7 +443,7 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
443 |
msgstr "Warum löscht du die Branchenverzeichnis Erweiterung?"
|
444 |
|
445 |
#: includes/admin/controllers/class-settings-admin.php:536
|
446 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
447 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
448 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
449 |
#: templates/admin/payments-note.tpl.php:14
|
@@ -501,7 +501,7 @@ msgid "Installed"
|
|
501 |
msgstr "Installiert"
|
502 |
|
503 |
#: includes/admin/helpers/class-modules-list.php:187
|
504 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
505 |
#: templates/admin/themes-item.tpl.php:41
|
506 |
#, fuzzy
|
507 |
msgid "Active"
|
@@ -520,7 +520,7 @@ msgid "Activate"
|
|
520 |
msgstr "Aktiviere Lizenz"
|
521 |
|
522 |
#: includes/admin/helpers/class-modules-list.php:235
|
523 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
524 |
#, fuzzy
|
525 |
msgid "Upgrade Now"
|
526 |
msgstr "Aktualisieren auf %s"
|
@@ -561,41 +561,41 @@ msgstr "Preis"
|
|
561 |
msgid "Listings"
|
562 |
msgstr "Einträge"
|
563 |
|
564 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
565 |
#, fuzzy
|
566 |
msgid "Disable"
|
567 |
msgstr "Deaktivieren"
|
568 |
|
569 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
570 |
#, fuzzy
|
571 |
msgid "Enable"
|
572 |
msgstr "Aktivieren"
|
573 |
|
574 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
575 |
msgid "ID: %s"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
579 |
#, fuzzy
|
580 |
msgid "Paid Plan"
|
581 |
msgstr "Bezahlt"
|
582 |
|
583 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
584 |
#, fuzzy
|
585 |
msgid "Free Plan"
|
586 |
msgstr "zu \"Formularfelder verwalten\""
|
587 |
|
588 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
589 |
#, fuzzy
|
590 |
msgid "%1$s for %2$s"
|
591 |
msgstr "%s (admin: %s)"
|
592 |
|
593 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
594 |
#, fuzzy
|
595 |
msgid "Disabled"
|
596 |
msgstr "Inaktiv"
|
597 |
|
598 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
599 |
#: includes/helpers/functions/templates-ui.php:431
|
600 |
#, fuzzy
|
601 |
msgid "Default"
|
@@ -1855,73 +1855,73 @@ msgid "Manage Listings"
|
|
1855 |
msgstr "Bezahlte Einträge verwalten"
|
1856 |
|
1857 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1858 |
-
#: includes/licensing.php:
|
1859 |
msgid ""
|
1860 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1861 |
"get updates."
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: includes/licensing.php:
|
1865 |
#, fuzzy
|
1866 |
msgid "Licenses"
|
1867 |
msgstr "Lizenz"
|
1868 |
|
1869 |
-
#: includes/licensing.php:
|
1870 |
msgid "Build more powerful directories"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#: includes/licensing.php:
|
1874 |
msgid ""
|
1875 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: includes/licensing.php:
|
1879 |
#, fuzzy
|
1880 |
msgid "Already purchased?"
|
1881 |
msgstr "Bereits installiert"
|
1882 |
|
1883 |
#. translators: %s: item type.
|
1884 |
-
#: includes/licensing.php:
|
1885 |
msgid "%s will not get updates until license is reauthorized."
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: includes/licensing.php:
|
1889 |
#, fuzzy
|
1890 |
msgid "Enter License Key here"
|
1891 |
msgstr "Erneuere Lizenzschlüssel"
|
1892 |
|
1893 |
-
#: includes/licensing.php:
|
1894 |
#, fuzzy
|
1895 |
msgid "Authorize"
|
1896 |
msgstr "Aktiviere Lizenz"
|
1897 |
|
1898 |
-
#: includes/licensing.php:
|
1899 |
#, fuzzy
|
1900 |
msgid "Invalid item ID"
|
1901 |
msgstr "Ungültige Feld ID"
|
1902 |
|
1903 |
-
#: includes/licensing.php:
|
1904 |
#, fuzzy
|
1905 |
msgid "No license key provided"
|
1906 |
msgstr "Kein Lizenzschlüssel"
|
1907 |
|
1908 |
-
#: includes/licensing.php:
|
1909 |
#, fuzzy
|
1910 |
msgid "License key is invalid"
|
1911 |
msgstr "Lizenzschlüssel ungültig "
|
1912 |
|
1913 |
-
#: includes/licensing.php:
|
1914 |
#, fuzzy
|
1915 |
msgid "Deactivation failed"
|
1916 |
msgstr "Deaktivierung fehlgeschlagen"
|
1917 |
|
1918 |
-
#: includes/licensing.php:
|
1919 |
#, fuzzy
|
1920 |
msgid "The license key was revoked."
|
1921 |
msgstr "Kein Lizenzschlüssel"
|
1922 |
|
1923 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1924 |
-
#: includes/licensing.php:
|
1925 |
msgid ""
|
1926 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1927 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -1929,50 +1929,50 @@ msgid ""
|
|
1929 |
"with your report."
|
1930 |
msgstr ""
|
1931 |
|
1932 |
-
#: includes/licensing.php:
|
1933 |
msgid ""
|
1934 |
"It was not possible to establish a connection with the Business Directory "
|
1935 |
"server. The connection failed with the following error:"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: includes/licensing.php:
|
1939 |
msgid ""
|
1940 |
"It was not possible to establish a connection with the Business Directory "
|
1941 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
-
#: includes/licensing.php:
|
1945 |
msgid ""
|
1946 |
"It looks like your server is not authorized to make outgoing requests to "
|
1947 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1948 |
"our IP address 52.0.78.177 to your allow list."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: includes/licensing.php:
|
1952 |
#, fuzzy
|
1953 |
msgid "Business Directory license key is missing."
|
1954 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
1955 |
|
1956 |
-
#: includes/licensing.php:
|
1957 |
#, fuzzy
|
1958 |
msgid "Business Directory license key has expired"
|
1959 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
1960 |
|
1961 |
-
#: includes/licensing.php:
|
1962 |
#, fuzzy
|
1963 |
msgid "Could not verify Business Directory license."
|
1964 |
msgstr "Hilf Business Directory zu unterstützen"
|
1965 |
|
1966 |
-
#: includes/licensing.php:
|
1967 |
#, fuzzy
|
1968 |
msgid "Review license keys"
|
1969 |
msgstr "Erneuere Lizenzschlüssel"
|
1970 |
|
1971 |
-
#: includes/licensing.php:
|
1972 |
msgid "Missing data. Please reload this page and try again."
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: includes/licensing.php:
|
1976 |
#, fuzzy
|
1977 |
msgid "Please enter a license key."
|
1978 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
@@ -3854,52 +3854,52 @@ msgctxt "fees admin"
|
|
3854 |
msgid "Attributes"
|
3855 |
msgstr "Feld Attribute"
|
3856 |
|
3857 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3858 |
msgctxt "fees admin"
|
3859 |
msgid "Edit"
|
3860 |
msgstr "Bearbeiten"
|
3861 |
|
3862 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3863 |
#, fuzzy
|
3864 |
msgctxt "fees admin"
|
3865 |
msgid "Variable"
|
3866 |
msgstr "Deaktivieren"
|
3867 |
|
3868 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3869 |
#, fuzzy
|
3870 |
msgctxt "fees admin"
|
3871 |
msgid "%1$s + %2$s per category"
|
3872 |
msgstr "Preis \"%s\" für Kategorie \"%s\""
|
3873 |
|
3874 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3875 |
msgctxt "fees admin"
|
3876 |
msgid "Forever"
|
3877 |
msgstr "Für immer"
|
3878 |
|
3879 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3880 |
msgctxt "fees admin"
|
3881 |
msgid "%d day"
|
3882 |
msgid_plural "%d days"
|
3883 |
msgstr[0] "%d Tag"
|
3884 |
msgstr[1] "%d Tage"
|
3885 |
|
3886 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3887 |
msgctxt "fees admin"
|
3888 |
msgid "All categories"
|
3889 |
msgstr "Alle Kategorien"
|
3890 |
|
3891 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3892 |
msgctxt "fees admin"
|
3893 |
msgid "Sticky"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3897 |
#, fuzzy
|
3898 |
msgctxt "fees admin"
|
3899 |
msgid "Recurring"
|
3900 |
msgstr "(wiederkehrend)"
|
3901 |
|
3902 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3903 |
#, fuzzy
|
3904 |
msgctxt "fees admin"
|
3905 |
msgid "Private"
|
@@ -6292,18 +6292,18 @@ msgctxt "settings"
|
|
6292 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6293 |
msgstr ""
|
6294 |
|
6295 |
-
#: includes/licensing.php:
|
6296 |
#, fuzzy
|
6297 |
msgctxt "settings"
|
6298 |
msgid "Themes"
|
6299 |
msgstr "Preise Verwalten"
|
6300 |
|
6301 |
-
#: includes/licensing.php:
|
6302 |
msgctxt "settings"
|
6303 |
msgid "Please wait..."
|
6304 |
msgstr ""
|
6305 |
|
6306 |
-
#: includes/licensing.php:
|
6307 |
#, fuzzy
|
6308 |
msgctxt "settings"
|
6309 |
msgid "Deauthorize"
|
@@ -8372,19 +8372,19 @@ msgctxt "default category name"
|
|
8372 |
msgid "General"
|
8373 |
msgstr "Allgemein"
|
8374 |
|
8375 |
-
#: includes/licensing.php:
|
8376 |
msgctxt "licensing"
|
8377 |
msgid "Could not contact licensing server"
|
8378 |
msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
|
8379 |
|
8380 |
-
#: includes/licensing.php:
|
8381 |
msgctxt "licensing"
|
8382 |
msgid ""
|
8383 |
"It was not possible to establish a connection with Business Directory's "
|
8384 |
"server. cURL was not found in your system"
|
8385 |
msgstr ""
|
8386 |
|
8387 |
-
#: includes/licensing.php:
|
8388 |
msgctxt "licensing"
|
8389 |
msgid ""
|
8390 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8393,7 +8393,7 @@ msgid ""
|
|
8393 |
"1.0.1c)."
|
8394 |
msgstr ""
|
8395 |
|
8396 |
-
#: includes/licensing.php:
|
8397 |
msgctxt "licensing"
|
8398 |
msgid ""
|
8399 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8401,47 +8401,47 @@ msgid ""
|
|
8401 |
"services using the latest security standards."
|
8402 |
msgstr ""
|
8403 |
|
8404 |
-
#: includes/licensing.php:
|
8405 |
msgctxt "licensing"
|
8406 |
msgid ""
|
8407 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8408 |
"Include this message if necessary"
|
8409 |
msgstr ""
|
8410 |
|
8411 |
-
#: includes/licensing.php:
|
8412 |
msgctxt "licensing"
|
8413 |
msgid ""
|
8414 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8415 |
"Include this message if necessary."
|
8416 |
msgstr ""
|
8417 |
|
8418 |
-
#: includes/licensing.php:
|
8419 |
msgctxt "licensing"
|
8420 |
msgid "The server returned a 403 Forbidden error."
|
8421 |
msgstr ""
|
8422 |
|
8423 |
-
#: includes/licensing.php:
|
8424 |
msgctxt "licensing"
|
8425 |
msgid "Could not activate license: %s."
|
8426 |
msgstr "Konnte Lizenz nicht aktivieren: %s"
|
8427 |
|
8428 |
-
#: includes/licensing.php:
|
8429 |
msgctxt "licensing"
|
8430 |
msgid "License activated"
|
8431 |
msgstr "Lizenz aktiviert"
|
8432 |
|
8433 |
-
#: includes/licensing.php:
|
8434 |
msgctxt "licensing"
|
8435 |
msgid "Could not deactivate license: %s."
|
8436 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
8437 |
|
8438 |
-
#: includes/licensing.php:
|
8439 |
msgctxt "licensing"
|
8440 |
msgid "License deactivated"
|
8441 |
msgstr "Lizenz deaktiviert"
|
8442 |
|
8443 |
#. translators: "<module-name>" version <version-number> is not...
|
8444 |
-
#: includes/licensing.php:
|
8445 |
msgctxt "deprecation"
|
8446 |
msgid ""
|
8447 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-03 21:01:26+00:00\n"
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
|
11 |
"Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
|
104 |
msgstr "Formularfelder"
|
105 |
|
106 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
107 |
+
#: includes/licensing.php:229
|
108 |
#, fuzzy
|
109 |
msgid "Modules"
|
110 |
msgstr "Installierte Module"
|
443 |
msgstr "Warum löscht du die Branchenverzeichnis Erweiterung?"
|
444 |
|
445 |
#: includes/admin/controllers/class-settings-admin.php:536
|
446 |
+
#: includes/admin/helpers/tables/class-fees-table.php:177
|
447 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
448 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
449 |
#: templates/admin/payments-note.tpl.php:14
|
501 |
msgstr "Installiert"
|
502 |
|
503 |
#: includes/admin/helpers/class-modules-list.php:187
|
504 |
+
#: includes/admin/helpers/tables/class-fees-table.php:287
|
505 |
#: templates/admin/themes-item.tpl.php:41
|
506 |
#, fuzzy
|
507 |
msgid "Active"
|
520 |
msgstr "Aktiviere Lizenz"
|
521 |
|
522 |
#: includes/admin/helpers/class-modules-list.php:235
|
523 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:277
|
524 |
#, fuzzy
|
525 |
msgid "Upgrade Now"
|
526 |
msgstr "Aktualisieren auf %s"
|
561 |
msgid "Listings"
|
562 |
msgstr "Einträge"
|
563 |
|
564 |
+
#: includes/admin/helpers/tables/class-fees-table.php:156
|
565 |
#, fuzzy
|
566 |
msgid "Disable"
|
567 |
msgstr "Deaktivieren"
|
568 |
|
569 |
+
#: includes/admin/helpers/tables/class-fees-table.php:162
|
570 |
#, fuzzy
|
571 |
msgid "Enable"
|
572 |
msgstr "Aktivieren"
|
573 |
|
574 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
575 |
msgid "ID: %s"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
579 |
#, fuzzy
|
580 |
msgid "Paid Plan"
|
581 |
msgstr "Bezahlt"
|
582 |
|
583 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
584 |
#, fuzzy
|
585 |
msgid "Free Plan"
|
586 |
msgstr "zu \"Formularfelder verwalten\""
|
587 |
|
588 |
+
#: includes/admin/helpers/tables/class-fees-table.php:222
|
589 |
#, fuzzy
|
590 |
msgid "%1$s for %2$s"
|
591 |
msgstr "%s (admin: %s)"
|
592 |
|
593 |
+
#: includes/admin/helpers/tables/class-fees-table.php:285
|
594 |
#, fuzzy
|
595 |
msgid "Disabled"
|
596 |
msgstr "Inaktiv"
|
597 |
|
598 |
+
#: includes/admin/helpers/tables/class-fees-table.php:291
|
599 |
#: includes/helpers/functions/templates-ui.php:431
|
600 |
#, fuzzy
|
601 |
msgid "Default"
|
1855 |
msgstr "Bezahlte Einträge verwalten"
|
1856 |
|
1857 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1858 |
+
#: includes/licensing.php:152
|
1859 |
msgid ""
|
1860 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1861 |
"get updates."
|
1862 |
msgstr ""
|
1863 |
|
1864 |
+
#: includes/licensing.php:205 includes/licensing.php:208
|
1865 |
#, fuzzy
|
1866 |
msgid "Licenses"
|
1867 |
msgstr "Lizenz"
|
1868 |
|
1869 |
+
#: includes/licensing.php:275
|
1870 |
msgid "Build more powerful directories"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
+
#: includes/licensing.php:276
|
1874 |
msgid ""
|
1875 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: includes/licensing.php:278
|
1879 |
#, fuzzy
|
1880 |
msgid "Already purchased?"
|
1881 |
msgstr "Bereits installiert"
|
1882 |
|
1883 |
#. translators: %s: item type.
|
1884 |
+
#: includes/licensing.php:296
|
1885 |
msgid "%s will not get updates until license is reauthorized."
|
1886 |
msgstr ""
|
1887 |
|
1888 |
+
#: includes/licensing.php:317
|
1889 |
#, fuzzy
|
1890 |
msgid "Enter License Key here"
|
1891 |
msgstr "Erneuere Lizenzschlüssel"
|
1892 |
|
1893 |
+
#: includes/licensing.php:318
|
1894 |
#, fuzzy
|
1895 |
msgid "Authorize"
|
1896 |
msgstr "Aktiviere Lizenz"
|
1897 |
|
1898 |
+
#: includes/licensing.php:422
|
1899 |
#, fuzzy
|
1900 |
msgid "Invalid item ID"
|
1901 |
msgstr "Ungültige Feld ID"
|
1902 |
|
1903 |
+
#: includes/licensing.php:435
|
1904 |
#, fuzzy
|
1905 |
msgid "No license key provided"
|
1906 |
msgstr "Kein Lizenzschlüssel"
|
1907 |
|
1908 |
+
#: includes/licensing.php:484 includes/licensing.php:522
|
1909 |
#, fuzzy
|
1910 |
msgid "License key is invalid"
|
1911 |
msgstr "Lizenzschlüssel ungültig "
|
1912 |
|
1913 |
+
#: includes/licensing.php:488
|
1914 |
#, fuzzy
|
1915 |
msgid "Deactivation failed"
|
1916 |
msgstr "Deaktivierung fehlgeschlagen"
|
1917 |
|
1918 |
+
#: includes/licensing.php:533
|
1919 |
#, fuzzy
|
1920 |
msgid "The license key was revoked."
|
1921 |
msgstr "Kein Lizenzschlüssel"
|
1922 |
|
1923 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1924 |
+
#: includes/licensing.php:537
|
1925 |
msgid ""
|
1926 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1927 |
"%2$s and let them know your license is being reported as revoked by the "
|
1929 |
"with your report."
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: includes/licensing.php:600
|
1933 |
msgid ""
|
1934 |
"It was not possible to establish a connection with the Business Directory "
|
1935 |
"server. The connection failed with the following error:"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: includes/licensing.php:613
|
1939 |
msgid ""
|
1940 |
"It was not possible to establish a connection with the Business Directory "
|
1941 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
+
#: includes/licensing.php:660
|
1945 |
msgid ""
|
1946 |
"It looks like your server is not authorized to make outgoing requests to "
|
1947 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1948 |
"our IP address 52.0.78.177 to your allow list."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: includes/licensing.php:754
|
1952 |
#, fuzzy
|
1953 |
msgid "Business Directory license key is missing."
|
1954 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
1955 |
|
1956 |
+
#: includes/licensing.php:755
|
1957 |
#, fuzzy
|
1958 |
msgid "Business Directory license key has expired"
|
1959 |
msgstr "Branchenverzeichnis - Lizenzschlüssel abgelaufen"
|
1960 |
|
1961 |
+
#: includes/licensing.php:756
|
1962 |
#, fuzzy
|
1963 |
msgid "Could not verify Business Directory license."
|
1964 |
msgstr "Hilf Business Directory zu unterstützen"
|
1965 |
|
1966 |
+
#: includes/licensing.php:767
|
1967 |
#, fuzzy
|
1968 |
msgid "Review license keys"
|
1969 |
msgstr "Erneuere Lizenzschlüssel"
|
1970 |
|
1971 |
+
#: includes/licensing.php:882
|
1972 |
msgid "Missing data. Please reload this page and try again."
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: includes/licensing.php:887
|
1976 |
#, fuzzy
|
1977 |
msgid "Please enter a license key."
|
1978 |
msgstr "Bitte eine gültige E-mailadresse eingeben."
|
3854 |
msgid "Attributes"
|
3855 |
msgstr "Feld Attribute"
|
3856 |
|
3857 |
+
#: includes/admin/helpers/tables/class-fees-table.php:141
|
3858 |
msgctxt "fees admin"
|
3859 |
msgid "Edit"
|
3860 |
msgstr "Bearbeiten"
|
3861 |
|
3862 |
+
#: includes/admin/helpers/tables/class-fees-table.php:210
|
3863 |
#, fuzzy
|
3864 |
msgctxt "fees admin"
|
3865 |
msgid "Variable"
|
3866 |
msgstr "Deaktivieren"
|
3867 |
|
3868 |
+
#: includes/admin/helpers/tables/class-fees-table.php:215
|
3869 |
#, fuzzy
|
3870 |
msgctxt "fees admin"
|
3871 |
msgid "%1$s + %2$s per category"
|
3872 |
msgstr "Preis \"%s\" für Kategorie \"%s\""
|
3873 |
|
3874 |
+
#: includes/admin/helpers/tables/class-fees-table.php:234
|
3875 |
msgctxt "fees admin"
|
3876 |
msgid "Forever"
|
3877 |
msgstr "Für immer"
|
3878 |
|
3879 |
+
#: includes/admin/helpers/tables/class-fees-table.php:236
|
3880 |
msgctxt "fees admin"
|
3881 |
msgid "%d day"
|
3882 |
msgid_plural "%d days"
|
3883 |
msgstr[0] "%d Tag"
|
3884 |
msgstr[1] "%d Tage"
|
3885 |
|
3886 |
+
#: includes/admin/helpers/tables/class-fees-table.php:266
|
3887 |
msgctxt "fees admin"
|
3888 |
msgid "All categories"
|
3889 |
msgstr "Alle Kategorien"
|
3890 |
|
3891 |
+
#: includes/admin/helpers/tables/class-fees-table.php:295
|
3892 |
msgctxt "fees admin"
|
3893 |
msgid "Sticky"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
3897 |
#, fuzzy
|
3898 |
msgctxt "fees admin"
|
3899 |
msgid "Recurring"
|
3900 |
msgstr "(wiederkehrend)"
|
3901 |
|
3902 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
3903 |
#, fuzzy
|
3904 |
msgctxt "fees admin"
|
3905 |
msgid "Private"
|
6292 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6293 |
msgstr ""
|
6294 |
|
6295 |
+
#: includes/licensing.php:247
|
6296 |
#, fuzzy
|
6297 |
msgctxt "settings"
|
6298 |
msgid "Themes"
|
6299 |
msgstr "Preise Verwalten"
|
6300 |
|
6301 |
+
#: includes/licensing.php:318 includes/licensing.php:319
|
6302 |
msgctxt "settings"
|
6303 |
msgid "Please wait..."
|
6304 |
msgstr ""
|
6305 |
|
6306 |
+
#: includes/licensing.php:319
|
6307 |
#, fuzzy
|
6308 |
msgctxt "settings"
|
6309 |
msgid "Deauthorize"
|
8372 |
msgid "General"
|
8373 |
msgstr "Allgemein"
|
8374 |
|
8375 |
+
#: includes/licensing.php:573
|
8376 |
msgctxt "licensing"
|
8377 |
msgid "Could not contact licensing server"
|
8378 |
msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
|
8379 |
|
8380 |
+
#: includes/licensing.php:586
|
8381 |
msgctxt "licensing"
|
8382 |
msgid ""
|
8383 |
"It was not possible to establish a connection with Business Directory's "
|
8384 |
"server. cURL was not found in your system"
|
8385 |
msgstr ""
|
8386 |
|
8387 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8388 |
msgctxt "licensing"
|
8389 |
msgid ""
|
8390 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8393 |
"1.0.1c)."
|
8394 |
msgstr ""
|
8395 |
|
8396 |
+
#: includes/licensing.php:590 includes/licensing.php:620
|
8397 |
msgctxt "licensing"
|
8398 |
msgid ""
|
8399 |
"Upgrading your system will not only allow you to communicate with Business "
|
8401 |
"services using the latest security standards."
|
8402 |
msgstr ""
|
8403 |
|
8404 |
+
#: includes/licensing.php:592
|
8405 |
msgctxt "licensing"
|
8406 |
msgid ""
|
8407 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8408 |
"Include this message if necessary"
|
8409 |
msgstr ""
|
8410 |
|
8411 |
+
#: includes/licensing.php:622
|
8412 |
msgctxt "licensing"
|
8413 |
msgid ""
|
8414 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8415 |
"Include this message if necessary."
|
8416 |
msgstr ""
|
8417 |
|
8418 |
+
#: includes/licensing.php:658
|
8419 |
msgctxt "licensing"
|
8420 |
msgid "The server returned a 403 Forbidden error."
|
8421 |
msgstr ""
|
8422 |
|
8423 |
+
#: includes/licensing.php:904
|
8424 |
msgctxt "licensing"
|
8425 |
msgid "Could not activate license: %s."
|
8426 |
msgstr "Konnte Lizenz nicht aktivieren: %s"
|
8427 |
|
8428 |
+
#: includes/licensing.php:909
|
8429 |
msgctxt "licensing"
|
8430 |
msgid "License activated"
|
8431 |
msgstr "Lizenz aktiviert"
|
8432 |
|
8433 |
+
#: includes/licensing.php:941
|
8434 |
msgctxt "licensing"
|
8435 |
msgid "Could not deactivate license: %s."
|
8436 |
msgstr "Konnte Lizenz nicht deaktivieren: %s"
|
8437 |
|
8438 |
+
#: includes/licensing.php:943
|
8439 |
msgctxt "licensing"
|
8440 |
msgid "License deactivated"
|
8441 |
msgstr "Lizenz deaktiviert"
|
8442 |
|
8443 |
#. translators: "<module-name>" version <version-number> is not...
|
8444 |
+
#: includes/licensing.php:1183
|
8445 |
msgctxt "deprecation"
|
8446 |
msgid ""
|
8447 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
languages/business-directory-plugin-en_US.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-02-
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -85,7 +85,7 @@ msgid "Form Fields"
|
|
85 |
msgstr ""
|
86 |
|
87 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
88 |
-
#: includes/licensing.php:
|
89 |
msgid "Modules"
|
90 |
msgstr ""
|
91 |
|
@@ -369,7 +369,7 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
369 |
msgstr ""
|
370 |
|
371 |
#: includes/admin/controllers/class-settings-admin.php:536
|
372 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
373 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
374 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
375 |
#: templates/admin/payments-note.tpl.php:14
|
@@ -419,7 +419,7 @@ msgid "Installed"
|
|
419 |
msgstr ""
|
420 |
|
421 |
#: includes/admin/helpers/class-modules-list.php:187
|
422 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
423 |
#: templates/admin/themes-item.tpl.php:41
|
424 |
msgid "Active"
|
425 |
msgstr ""
|
@@ -435,7 +435,7 @@ msgid "Activate"
|
|
435 |
msgstr ""
|
436 |
|
437 |
#: includes/admin/helpers/class-modules-list.php:235
|
438 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
439 |
msgid "Upgrade Now"
|
440 |
msgstr ""
|
441 |
|
@@ -467,35 +467,35 @@ msgstr ""
|
|
467 |
msgid "Listings"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
471 |
msgid "Disable"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
475 |
msgid "Enable"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
479 |
msgid "ID: %s"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
483 |
msgid "Paid Plan"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
487 |
msgid "Free Plan"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
491 |
msgid "%1$s for %2$s"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
495 |
msgid "Disabled"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
499 |
#: includes/helpers/functions/templates-ui.php:431
|
500 |
msgid "Default"
|
501 |
msgstr ""
|
@@ -1588,64 +1588,64 @@ msgid "Manage Listings"
|
|
1588 |
msgstr ""
|
1589 |
|
1590 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1591 |
-
#: includes/licensing.php:
|
1592 |
msgid ""
|
1593 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1594 |
"get updates."
|
1595 |
msgstr ""
|
1596 |
|
1597 |
-
#: includes/licensing.php:
|
1598 |
msgid "Licenses"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: includes/licensing.php:
|
1602 |
msgid "Build more powerful directories"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: includes/licensing.php:
|
1606 |
msgid ""
|
1607 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: includes/licensing.php:
|
1611 |
msgid "Already purchased?"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
#. translators: %s: item type.
|
1615 |
-
#: includes/licensing.php:
|
1616 |
msgid "%s will not get updates until license is reauthorized."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: includes/licensing.php:
|
1620 |
msgid "Enter License Key here"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: includes/licensing.php:
|
1624 |
msgid "Authorize"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: includes/licensing.php:
|
1628 |
msgid "Invalid item ID"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: includes/licensing.php:
|
1632 |
msgid "No license key provided"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: includes/licensing.php:
|
1636 |
msgid "License key is invalid"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
#: includes/licensing.php:
|
1640 |
msgid "Deactivation failed"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: includes/licensing.php:
|
1644 |
msgid "The license key was revoked."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1648 |
-
#: includes/licensing.php:
|
1649 |
msgid ""
|
1650 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1651 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -1653,46 +1653,46 @@ msgid ""
|
|
1653 |
"with your report."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: includes/licensing.php:
|
1657 |
msgid ""
|
1658 |
"It was not possible to establish a connection with the Business Directory "
|
1659 |
"server. The connection failed with the following error:"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: includes/licensing.php:
|
1663 |
msgid ""
|
1664 |
"It was not possible to establish a connection with the Business Directory "
|
1665 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#: includes/licensing.php:
|
1669 |
msgid ""
|
1670 |
"It looks like your server is not authorized to make outgoing requests to "
|
1671 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1672 |
"our IP address 52.0.78.177 to your allow list."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: includes/licensing.php:
|
1676 |
msgid "Business Directory license key is missing."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: includes/licensing.php:
|
1680 |
msgid "Business Directory license key has expired"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
-
#: includes/licensing.php:
|
1684 |
msgid "Could not verify Business Directory license."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
-
#: includes/licensing.php:
|
1688 |
msgid "Review license keys"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
-
#: includes/licensing.php:
|
1692 |
msgid "Missing data. Please reload this page and try again."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
-
#: includes/licensing.php:
|
1696 |
msgid "Please enter a license key."
|
1697 |
msgstr ""
|
1698 |
|
@@ -3291,49 +3291,49 @@ msgctxt "fees admin"
|
|
3291 |
msgid "Attributes"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3295 |
msgctxt "fees admin"
|
3296 |
msgid "Edit"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3300 |
msgctxt "fees admin"
|
3301 |
msgid "Variable"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3305 |
msgctxt "fees admin"
|
3306 |
msgid "%1$s + %2$s per category"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3310 |
msgctxt "fees admin"
|
3311 |
msgid "Forever"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3315 |
msgctxt "fees admin"
|
3316 |
msgid "%d day"
|
3317 |
msgid_plural "%d days"
|
3318 |
msgstr[0] ""
|
3319 |
msgstr[1] ""
|
3320 |
|
3321 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3322 |
msgctxt "fees admin"
|
3323 |
msgid "All categories"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3327 |
msgctxt "fees admin"
|
3328 |
msgid "Sticky"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3332 |
msgctxt "fees admin"
|
3333 |
msgid "Recurring"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3337 |
msgctxt "fees admin"
|
3338 |
msgid "Private"
|
3339 |
msgstr ""
|
@@ -5468,17 +5468,17 @@ msgctxt "settings"
|
|
5468 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
5469 |
msgstr ""
|
5470 |
|
5471 |
-
#: includes/licensing.php:
|
5472 |
msgctxt "settings"
|
5473 |
msgid "Themes"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
-
#: includes/licensing.php:
|
5477 |
msgctxt "settings"
|
5478 |
msgid "Please wait..."
|
5479 |
msgstr ""
|
5480 |
|
5481 |
-
#: includes/licensing.php:
|
5482 |
msgctxt "settings"
|
5483 |
msgid "Deauthorize"
|
5484 |
msgstr ""
|
@@ -7338,19 +7338,19 @@ msgctxt "default category name"
|
|
7338 |
msgid "General"
|
7339 |
msgstr ""
|
7340 |
|
7341 |
-
#: includes/licensing.php:
|
7342 |
msgctxt "licensing"
|
7343 |
msgid "Could not contact licensing server"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
-
#: includes/licensing.php:
|
7347 |
msgctxt "licensing"
|
7348 |
msgid ""
|
7349 |
"It was not possible to establish a connection with Business Directory's "
|
7350 |
"server. cURL was not found in your system"
|
7351 |
msgstr ""
|
7352 |
|
7353 |
-
#: includes/licensing.php:
|
7354 |
msgctxt "licensing"
|
7355 |
msgid ""
|
7356 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -7359,7 +7359,7 @@ msgid ""
|
|
7359 |
"1.0.1c)."
|
7360 |
msgstr ""
|
7361 |
|
7362 |
-
#: includes/licensing.php:
|
7363 |
msgctxt "licensing"
|
7364 |
msgid ""
|
7365 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -7367,47 +7367,47 @@ msgid ""
|
|
7367 |
"services using the latest security standards."
|
7368 |
msgstr ""
|
7369 |
|
7370 |
-
#: includes/licensing.php:
|
7371 |
msgctxt "licensing"
|
7372 |
msgid ""
|
7373 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7374 |
"Include this message if necessary"
|
7375 |
msgstr ""
|
7376 |
|
7377 |
-
#: includes/licensing.php:
|
7378 |
msgctxt "licensing"
|
7379 |
msgid ""
|
7380 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7381 |
"Include this message if necessary."
|
7382 |
msgstr ""
|
7383 |
|
7384 |
-
#: includes/licensing.php:
|
7385 |
msgctxt "licensing"
|
7386 |
msgid "The server returned a 403 Forbidden error."
|
7387 |
msgstr ""
|
7388 |
|
7389 |
-
#: includes/licensing.php:
|
7390 |
msgctxt "licensing"
|
7391 |
msgid "Could not activate license: %s."
|
7392 |
msgstr ""
|
7393 |
|
7394 |
-
#: includes/licensing.php:
|
7395 |
msgctxt "licensing"
|
7396 |
msgid "License activated"
|
7397 |
msgstr ""
|
7398 |
|
7399 |
-
#: includes/licensing.php:
|
7400 |
msgctxt "licensing"
|
7401 |
msgid "Could not deactivate license: %s."
|
7402 |
msgstr ""
|
7403 |
|
7404 |
-
#: includes/licensing.php:
|
7405 |
msgctxt "licensing"
|
7406 |
msgid "License deactivated"
|
7407 |
msgstr ""
|
7408 |
|
7409 |
#. translators: "<module-name>" version <version-number> is not...
|
7410 |
-
#: includes/licensing.php:
|
7411 |
msgctxt "deprecation"
|
7412 |
msgid ""
|
7413 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-03 21:01:26+00:00\n"
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
85 |
msgstr ""
|
86 |
|
87 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
88 |
+
#: includes/licensing.php:229
|
89 |
msgid "Modules"
|
90 |
msgstr ""
|
91 |
|
369 |
msgstr ""
|
370 |
|
371 |
#: includes/admin/controllers/class-settings-admin.php:536
|
372 |
+
#: includes/admin/helpers/tables/class-fees-table.php:177
|
373 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
374 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
375 |
#: templates/admin/payments-note.tpl.php:14
|
419 |
msgstr ""
|
420 |
|
421 |
#: includes/admin/helpers/class-modules-list.php:187
|
422 |
+
#: includes/admin/helpers/tables/class-fees-table.php:287
|
423 |
#: templates/admin/themes-item.tpl.php:41
|
424 |
msgid "Active"
|
425 |
msgstr ""
|
435 |
msgstr ""
|
436 |
|
437 |
#: includes/admin/helpers/class-modules-list.php:235
|
438 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:277
|
439 |
msgid "Upgrade Now"
|
440 |
msgstr ""
|
441 |
|
467 |
msgid "Listings"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/admin/helpers/tables/class-fees-table.php:156
|
471 |
msgid "Disable"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: includes/admin/helpers/tables/class-fees-table.php:162
|
475 |
msgid "Enable"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
479 |
msgid "ID: %s"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
483 |
msgid "Paid Plan"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
487 |
msgid "Free Plan"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: includes/admin/helpers/tables/class-fees-table.php:222
|
491 |
msgid "%1$s for %2$s"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: includes/admin/helpers/tables/class-fees-table.php:285
|
495 |
msgid "Disabled"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: includes/admin/helpers/tables/class-fees-table.php:291
|
499 |
#: includes/helpers/functions/templates-ui.php:431
|
500 |
msgid "Default"
|
501 |
msgstr ""
|
1588 |
msgstr ""
|
1589 |
|
1590 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1591 |
+
#: includes/licensing.php:152
|
1592 |
msgid ""
|
1593 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1594 |
"get updates."
|
1595 |
msgstr ""
|
1596 |
|
1597 |
+
#: includes/licensing.php:205 includes/licensing.php:208
|
1598 |
msgid "Licenses"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#: includes/licensing.php:275
|
1602 |
msgid "Build more powerful directories"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: includes/licensing.php:276
|
1606 |
msgid ""
|
1607 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: includes/licensing.php:278
|
1611 |
msgid "Already purchased?"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
#. translators: %s: item type.
|
1615 |
+
#: includes/licensing.php:296
|
1616 |
msgid "%s will not get updates until license is reauthorized."
|
1617 |
msgstr ""
|
1618 |
|
1619 |
+
#: includes/licensing.php:317
|
1620 |
msgid "Enter License Key here"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#: includes/licensing.php:318
|
1624 |
msgid "Authorize"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: includes/licensing.php:422
|
1628 |
msgid "Invalid item ID"
|
1629 |
msgstr ""
|
1630 |
|
1631 |
+
#: includes/licensing.php:435
|
1632 |
msgid "No license key provided"
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: includes/licensing.php:484 includes/licensing.php:522
|
1636 |
msgid "License key is invalid"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#: includes/licensing.php:488
|
1640 |
msgid "Deactivation failed"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: includes/licensing.php:533
|
1644 |
msgid "The license key was revoked."
|
1645 |
msgstr ""
|
1646 |
|
1647 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1648 |
+
#: includes/licensing.php:537
|
1649 |
msgid ""
|
1650 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1651 |
"%2$s and let them know your license is being reported as revoked by the "
|
1653 |
"with your report."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: includes/licensing.php:600
|
1657 |
msgid ""
|
1658 |
"It was not possible to establish a connection with the Business Directory "
|
1659 |
"server. The connection failed with the following error:"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: includes/licensing.php:613
|
1663 |
msgid ""
|
1664 |
"It was not possible to establish a connection with the Business Directory "
|
1665 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1666 |
msgstr ""
|
1667 |
|
1668 |
+
#: includes/licensing.php:660
|
1669 |
msgid ""
|
1670 |
"It looks like your server is not authorized to make outgoing requests to "
|
1671 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1672 |
"our IP address 52.0.78.177 to your allow list."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: includes/licensing.php:754
|
1676 |
msgid "Business Directory license key is missing."
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: includes/licensing.php:755
|
1680 |
msgid "Business Directory license key has expired"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: includes/licensing.php:756
|
1684 |
msgid "Could not verify Business Directory license."
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: includes/licensing.php:767
|
1688 |
msgid "Review license keys"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: includes/licensing.php:882
|
1692 |
msgid "Missing data. Please reload this page and try again."
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: includes/licensing.php:887
|
1696 |
msgid "Please enter a license key."
|
1697 |
msgstr ""
|
1698 |
|
3291 |
msgid "Attributes"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
+
#: includes/admin/helpers/tables/class-fees-table.php:141
|
3295 |
msgctxt "fees admin"
|
3296 |
msgid "Edit"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
+
#: includes/admin/helpers/tables/class-fees-table.php:210
|
3300 |
msgctxt "fees admin"
|
3301 |
msgid "Variable"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
+
#: includes/admin/helpers/tables/class-fees-table.php:215
|
3305 |
msgctxt "fees admin"
|
3306 |
msgid "%1$s + %2$s per category"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: includes/admin/helpers/tables/class-fees-table.php:234
|
3310 |
msgctxt "fees admin"
|
3311 |
msgid "Forever"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: includes/admin/helpers/tables/class-fees-table.php:236
|
3315 |
msgctxt "fees admin"
|
3316 |
msgid "%d day"
|
3317 |
msgid_plural "%d days"
|
3318 |
msgstr[0] ""
|
3319 |
msgstr[1] ""
|
3320 |
|
3321 |
+
#: includes/admin/helpers/tables/class-fees-table.php:266
|
3322 |
msgctxt "fees admin"
|
3323 |
msgid "All categories"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: includes/admin/helpers/tables/class-fees-table.php:295
|
3327 |
msgctxt "fees admin"
|
3328 |
msgid "Sticky"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
3332 |
msgctxt "fees admin"
|
3333 |
msgid "Recurring"
|
3334 |
msgstr ""
|
3335 |
|
3336 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
3337 |
msgctxt "fees admin"
|
3338 |
msgid "Private"
|
3339 |
msgstr ""
|
5468 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: includes/licensing.php:247
|
5472 |
msgctxt "settings"
|
5473 |
msgid "Themes"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: includes/licensing.php:318 includes/licensing.php:319
|
5477 |
msgctxt "settings"
|
5478 |
msgid "Please wait..."
|
5479 |
msgstr ""
|
5480 |
|
5481 |
+
#: includes/licensing.php:319
|
5482 |
msgctxt "settings"
|
5483 |
msgid "Deauthorize"
|
5484 |
msgstr ""
|
7338 |
msgid "General"
|
7339 |
msgstr ""
|
7340 |
|
7341 |
+
#: includes/licensing.php:573
|
7342 |
msgctxt "licensing"
|
7343 |
msgid "Could not contact licensing server"
|
7344 |
msgstr ""
|
7345 |
|
7346 |
+
#: includes/licensing.php:586
|
7347 |
msgctxt "licensing"
|
7348 |
msgid ""
|
7349 |
"It was not possible to establish a connection with Business Directory's "
|
7350 |
"server. cURL was not found in your system"
|
7351 |
msgstr ""
|
7352 |
|
7353 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
7354 |
msgctxt "licensing"
|
7355 |
msgid ""
|
7356 |
"To ensure the security of our systems and adhere to industry best practices, "
|
7359 |
"1.0.1c)."
|
7360 |
msgstr ""
|
7361 |
|
7362 |
+
#: includes/licensing.php:590 includes/licensing.php:620
|
7363 |
msgctxt "licensing"
|
7364 |
msgid ""
|
7365 |
"Upgrading your system will not only allow you to communicate with Business "
|
7367 |
"services using the latest security standards."
|
7368 |
msgstr ""
|
7369 |
|
7370 |
+
#: includes/licensing.php:592
|
7371 |
msgctxt "licensing"
|
7372 |
msgid ""
|
7373 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7374 |
"Include this message if necessary"
|
7375 |
msgstr ""
|
7376 |
|
7377 |
+
#: includes/licensing.php:622
|
7378 |
msgctxt "licensing"
|
7379 |
msgid ""
|
7380 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7381 |
"Include this message if necessary."
|
7382 |
msgstr ""
|
7383 |
|
7384 |
+
#: includes/licensing.php:658
|
7385 |
msgctxt "licensing"
|
7386 |
msgid "The server returned a 403 Forbidden error."
|
7387 |
msgstr ""
|
7388 |
|
7389 |
+
#: includes/licensing.php:904
|
7390 |
msgctxt "licensing"
|
7391 |
msgid "Could not activate license: %s."
|
7392 |
msgstr ""
|
7393 |
|
7394 |
+
#: includes/licensing.php:909
|
7395 |
msgctxt "licensing"
|
7396 |
msgid "License activated"
|
7397 |
msgstr ""
|
7398 |
|
7399 |
+
#: includes/licensing.php:941
|
7400 |
msgctxt "licensing"
|
7401 |
msgid "Could not deactivate license: %s."
|
7402 |
msgstr ""
|
7403 |
|
7404 |
+
#: includes/licensing.php:943
|
7405 |
msgctxt "licensing"
|
7406 |
msgid "License deactivated"
|
7407 |
msgstr ""
|
7408 |
|
7409 |
#. translators: "<module-name>" version <version-number> is not...
|
7410 |
+
#: includes/licensing.php:1183
|
7411 |
msgctxt "deprecation"
|
7412 |
msgid ""
|
7413 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
languages/business-directory-plugin-fr_FR.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-02-
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -103,7 +103,7 @@ msgid "Form Fields"
|
|
103 |
msgstr "champ de formulaires"
|
104 |
|
105 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
106 |
-
#: includes/licensing.php:
|
107 |
#, fuzzy
|
108 |
msgid "Modules"
|
109 |
msgstr "Tous les (modules installés)"
|
@@ -440,7 +440,7 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
440 |
msgstr "Pourquoi avez-vous désinstallé le plugin Business Directory?"
|
441 |
|
442 |
#: includes/admin/controllers/class-settings-admin.php:536
|
443 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
444 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
445 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
446 |
#: templates/admin/payments-note.tpl.php:14
|
@@ -498,7 +498,7 @@ msgid "Installed"
|
|
498 |
msgstr "Installé"
|
499 |
|
500 |
#: includes/admin/helpers/class-modules-list.php:187
|
501 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
502 |
#: templates/admin/themes-item.tpl.php:41
|
503 |
#, fuzzy
|
504 |
msgid "Active"
|
@@ -517,7 +517,7 @@ msgid "Activate"
|
|
517 |
msgstr "Activer"
|
518 |
|
519 |
#: includes/admin/helpers/class-modules-list.php:235
|
520 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
521 |
#, fuzzy
|
522 |
msgid "Upgrade Now"
|
523 |
msgstr "Mettre à jour vers %s"
|
@@ -558,41 +558,41 @@ msgstr "Prix"
|
|
558 |
msgid "Listings"
|
559 |
msgstr "Listes"
|
560 |
|
561 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
562 |
#, fuzzy
|
563 |
msgid "Disable"
|
564 |
msgstr "Effacer les Frais"
|
565 |
|
566 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
567 |
#, fuzzy
|
568 |
msgid "Enable"
|
569 |
msgstr "Activer"
|
570 |
|
571 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
572 |
msgid "ID: %s"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
576 |
#, fuzzy
|
577 |
msgid "Paid Plan"
|
578 |
msgstr "Payé"
|
579 |
|
580 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
581 |
#, fuzzy
|
582 |
msgid "Free Plan"
|
583 |
msgstr "Plan tarifaire"
|
584 |
|
585 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
586 |
#, fuzzy
|
587 |
msgid "%1$s for %2$s"
|
588 |
msgstr "%s (ex. %s)"
|
589 |
|
590 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
591 |
#, fuzzy
|
592 |
msgid "Disabled"
|
593 |
msgstr "Effacer les Frais"
|
594 |
|
595 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
596 |
#: includes/helpers/functions/templates-ui.php:431
|
597 |
#, fuzzy
|
598 |
msgid "Default"
|
@@ -1893,72 +1893,72 @@ msgid "Manage Listings"
|
|
1893 |
msgstr "Gérer annonces payées"
|
1894 |
|
1895 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1896 |
-
#: includes/licensing.php:
|
1897 |
msgid ""
|
1898 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1899 |
"get updates."
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: includes/licensing.php:
|
1903 |
msgid "Licenses"
|
1904 |
msgstr "Licences"
|
1905 |
|
1906 |
-
#: includes/licensing.php:
|
1907 |
msgid "Build more powerful directories"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
-
#: includes/licensing.php:
|
1911 |
msgid ""
|
1912 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1913 |
msgstr ""
|
1914 |
|
1915 |
-
#: includes/licensing.php:
|
1916 |
#, fuzzy
|
1917 |
msgid "Already purchased?"
|
1918 |
msgstr "Déjà installé."
|
1919 |
|
1920 |
#. translators: %s: item type.
|
1921 |
-
#: includes/licensing.php:
|
1922 |
msgid "%s will not get updates until license is reauthorized."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: includes/licensing.php:
|
1926 |
#, fuzzy
|
1927 |
msgid "Enter License Key here"
|
1928 |
msgstr "Entrer la clé de licence"
|
1929 |
|
1930 |
-
#: includes/licensing.php:
|
1931 |
#, fuzzy
|
1932 |
msgid "Authorize"
|
1933 |
msgstr "Activer Authorize.net"
|
1934 |
|
1935 |
-
#: includes/licensing.php:
|
1936 |
#, fuzzy
|
1937 |
msgid "Invalid item ID"
|
1938 |
msgstr "ID d'élément non valide"
|
1939 |
|
1940 |
-
#: includes/licensing.php:
|
1941 |
#, fuzzy
|
1942 |
msgid "No license key provided"
|
1943 |
msgstr "Aucune clé de licence fournie"
|
1944 |
|
1945 |
-
#: includes/licensing.php:
|
1946 |
#, fuzzy
|
1947 |
msgid "License key is invalid"
|
1948 |
msgstr "La clé de licence est invalide"
|
1949 |
|
1950 |
-
#: includes/licensing.php:
|
1951 |
#, fuzzy
|
1952 |
msgid "Deactivation failed"
|
1953 |
msgstr "La désactivation a échoué"
|
1954 |
|
1955 |
-
#: includes/licensing.php:
|
1956 |
#, fuzzy
|
1957 |
msgid "The license key was revoked."
|
1958 |
msgstr "Aucune clé de licence fournie"
|
1959 |
|
1960 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1961 |
-
#: includes/licensing.php:
|
1962 |
#, fuzzy
|
1963 |
msgid ""
|
1964 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
@@ -1971,7 +1971,7 @@ msgstr ""
|
|
1971 |
"technique</support-link> et demandez-leur d'ajouter votre adresse IP <ip-"
|
1972 |
"address> à la liste blanche."
|
1973 |
|
1974 |
-
#: includes/licensing.php:
|
1975 |
#, fuzzy
|
1976 |
msgid ""
|
1977 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1980,7 +1980,7 @@ msgstr ""
|
|
1980 |
"Il n'a pas été possible d'établir une connexion avec le serveur de Business "
|
1981 |
"Directory. La connexion a échoué avec l'erreur suivante:"
|
1982 |
|
1983 |
-
#: includes/licensing.php:
|
1984 |
#, fuzzy
|
1985 |
msgid ""
|
1986 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1990,7 +1990,7 @@ msgstr ""
|
|
1990 |
"Directory. Un problème est survenu lors de l'établissement de liaison SSL / "
|
1991 |
"TLS:"
|
1992 |
|
1993 |
-
#: includes/licensing.php:
|
1994 |
#, fuzzy
|
1995 |
msgid ""
|
1996 |
"It looks like your server is not authorized to make outgoing requests to "
|
@@ -2001,31 +2001,31 @@ msgstr ""
|
|
2001 |
"aux serveurs de Business Directory. Contactez le support technique et "
|
2002 |
"demandez-leur d'ajouter votre adresse IP <ip-address> à la liste blanche."
|
2003 |
|
2004 |
-
#: includes/licensing.php:
|
2005 |
#, fuzzy
|
2006 |
msgid "Business Directory license key is missing."
|
2007 |
msgstr "Business Directory - Clé de licence expirée"
|
2008 |
|
2009 |
-
#: includes/licensing.php:
|
2010 |
#, fuzzy
|
2011 |
msgid "Business Directory license key has expired"
|
2012 |
msgstr "Business Directory - Clé de licence expirée"
|
2013 |
|
2014 |
-
#: includes/licensing.php:
|
2015 |
#, fuzzy
|
2016 |
msgid "Could not verify Business Directory license."
|
2017 |
msgstr "Aider à améliorer Business Directory"
|
2018 |
|
2019 |
-
#: includes/licensing.php:
|
2020 |
#, fuzzy
|
2021 |
msgid "Review license keys"
|
2022 |
msgstr "Renouveller la clé de licence"
|
2023 |
|
2024 |
-
#: includes/licensing.php:
|
2025 |
msgid "Missing data. Please reload this page and try again."
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: includes/licensing.php:
|
2029 |
#, fuzzy
|
2030 |
msgid "Please enter a license key."
|
2031 |
msgstr "S'il vous plaît entrer une clé de licence."
|
@@ -3942,50 +3942,50 @@ msgctxt "fees admin"
|
|
3942 |
msgid "Attributes"
|
3943 |
msgstr "Attributs"
|
3944 |
|
3945 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3946 |
msgctxt "fees admin"
|
3947 |
msgid "Edit"
|
3948 |
msgstr "Editer"
|
3949 |
|
3950 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3951 |
msgctxt "fees admin"
|
3952 |
msgid "Variable"
|
3953 |
msgstr "Variable"
|
3954 |
|
3955 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3956 |
#, fuzzy
|
3957 |
msgctxt "fees admin"
|
3958 |
msgid "%1$s + %2$s per category"
|
3959 |
msgstr "%s + %s par catégorie"
|
3960 |
|
3961 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3962 |
msgctxt "fees admin"
|
3963 |
msgid "Forever"
|
3964 |
msgstr "Pour toujours"
|
3965 |
|
3966 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3967 |
msgctxt "fees admin"
|
3968 |
msgid "%d day"
|
3969 |
msgid_plural "%d days"
|
3970 |
msgstr[0] "%d jour"
|
3971 |
msgstr[1] "%d jours"
|
3972 |
|
3973 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3974 |
msgctxt "fees admin"
|
3975 |
msgid "All categories"
|
3976 |
msgstr "Toutes catégories"
|
3977 |
|
3978 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3979 |
msgctxt "fees admin"
|
3980 |
msgid "Sticky"
|
3981 |
msgstr "Premium"
|
3982 |
|
3983 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3984 |
msgctxt "fees admin"
|
3985 |
msgid "Recurring"
|
3986 |
msgstr "Récurrent"
|
3987 |
|
3988 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3989 |
#, fuzzy
|
3990 |
msgctxt "fees admin"
|
3991 |
msgid "Private"
|
@@ -6278,17 +6278,17 @@ msgctxt "settings"
|
|
6278 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6279 |
msgstr "L'élément \"%s\" est déjà utilisé pour une autre taxinomie."
|
6280 |
|
6281 |
-
#: includes/licensing.php:
|
6282 |
msgctxt "settings"
|
6283 |
msgid "Themes"
|
6284 |
msgstr "Thèmes"
|
6285 |
|
6286 |
-
#: includes/licensing.php:
|
6287 |
msgctxt "settings"
|
6288 |
msgid "Please wait..."
|
6289 |
msgstr "Veuillez attendre..."
|
6290 |
|
6291 |
-
#: includes/licensing.php:
|
6292 |
#, fuzzy
|
6293 |
msgctxt "settings"
|
6294 |
msgid "Deauthorize"
|
@@ -8354,12 +8354,12 @@ msgctxt "default category name"
|
|
8354 |
msgid "General"
|
8355 |
msgstr "Général"
|
8356 |
|
8357 |
-
#: includes/licensing.php:
|
8358 |
msgctxt "licensing"
|
8359 |
msgid "Could not contact licensing server"
|
8360 |
msgstr "Impossible de contacter le serveur de licences"
|
8361 |
|
8362 |
-
#: includes/licensing.php:
|
8363 |
#, fuzzy
|
8364 |
msgctxt "licensing"
|
8365 |
msgid ""
|
@@ -8370,7 +8370,7 @@ msgstr ""
|
|
8370 |
"Directory. Un problème est survenu lors de l'établissement de liaison SSL / "
|
8371 |
"TLS:"
|
8372 |
|
8373 |
-
#: includes/licensing.php:
|
8374 |
msgctxt "licensing"
|
8375 |
msgid ""
|
8376 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8383,7 +8383,7 @@ msgstr ""
|
|
8383 |
"version d'OpenSSL qui supporte TLSv1.2 (la version minimale avec le support "
|
8384 |
"est OpenSSL 1.0.1c)."
|
8385 |
|
8386 |
-
#: includes/licensing.php:
|
8387 |
msgctxt "licensing"
|
8388 |
msgid ""
|
8389 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8395,7 +8395,7 @@ msgstr ""
|
|
8395 |
"votre site Web à pouvoir interagir avec les services en utilisant les "
|
8396 |
"dernières normes de sécurité."
|
8397 |
|
8398 |
-
#: includes/licensing.php:
|
8399 |
#, fuzzy
|
8400 |
msgctxt "licensing"
|
8401 |
msgid ""
|
@@ -8405,7 +8405,7 @@ msgstr ""
|
|
8405 |
"Veuillez contacter votre fournisseur d'hébergement et demandez-lui de mettre "
|
8406 |
"à jour votre hébergement. Incluez ce message si nécessaire."
|
8407 |
|
8408 |
-
#: includes/licensing.php:
|
8409 |
#, fuzzy
|
8410 |
msgctxt "licensing"
|
8411 |
msgid ""
|
@@ -8415,33 +8415,33 @@ msgstr ""
|
|
8415 |
"Veuillez contacter votre fournisseur d'hébergement et demandez-lui de mettre "
|
8416 |
"à jour votre hébergement. Incluez ce message si nécessaire."
|
8417 |
|
8418 |
-
#: includes/licensing.php:
|
8419 |
msgctxt "licensing"
|
8420 |
msgid "The server returned a 403 Forbidden error."
|
8421 |
msgstr "Le serveur a renvoyé une erreur 403 Forbidden."
|
8422 |
|
8423 |
-
#: includes/licensing.php:
|
8424 |
msgctxt "licensing"
|
8425 |
msgid "Could not activate license: %s."
|
8426 |
msgstr "Impossible d'activer la licence: %s."
|
8427 |
|
8428 |
-
#: includes/licensing.php:
|
8429 |
msgctxt "licensing"
|
8430 |
msgid "License activated"
|
8431 |
msgstr "Licence activée"
|
8432 |
|
8433 |
-
#: includes/licensing.php:
|
8434 |
msgctxt "licensing"
|
8435 |
msgid "Could not deactivate license: %s."
|
8436 |
msgstr "Impossible de désactiver la licence: %s."
|
8437 |
|
8438 |
-
#: includes/licensing.php:
|
8439 |
msgctxt "licensing"
|
8440 |
msgid "License deactivated"
|
8441 |
msgstr "Licence désactivée"
|
8442 |
|
8443 |
#. translators: "<module-name>" version <version-number> is not...
|
8444 |
-
#: includes/licensing.php:
|
8445 |
#, fuzzy
|
8446 |
msgctxt "deprecation"
|
8447 |
msgid ""
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-03 21:01:26+00:00\n"
|
9 |
"PO-Revision-Date: 2020-06-17 15:32-0500\n"
|
10 |
"Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
|
11 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
103 |
msgstr "champ de formulaires"
|
104 |
|
105 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
106 |
+
#: includes/licensing.php:229
|
107 |
#, fuzzy
|
108 |
msgid "Modules"
|
109 |
msgstr "Tous les (modules installés)"
|
440 |
msgstr "Pourquoi avez-vous désinstallé le plugin Business Directory?"
|
441 |
|
442 |
#: includes/admin/controllers/class-settings-admin.php:536
|
443 |
+
#: includes/admin/helpers/tables/class-fees-table.php:177
|
444 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
445 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
446 |
#: templates/admin/payments-note.tpl.php:14
|
498 |
msgstr "Installé"
|
499 |
|
500 |
#: includes/admin/helpers/class-modules-list.php:187
|
501 |
+
#: includes/admin/helpers/tables/class-fees-table.php:287
|
502 |
#: templates/admin/themes-item.tpl.php:41
|
503 |
#, fuzzy
|
504 |
msgid "Active"
|
517 |
msgstr "Activer"
|
518 |
|
519 |
#: includes/admin/helpers/class-modules-list.php:235
|
520 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:277
|
521 |
#, fuzzy
|
522 |
msgid "Upgrade Now"
|
523 |
msgstr "Mettre à jour vers %s"
|
558 |
msgid "Listings"
|
559 |
msgstr "Listes"
|
560 |
|
561 |
+
#: includes/admin/helpers/tables/class-fees-table.php:156
|
562 |
#, fuzzy
|
563 |
msgid "Disable"
|
564 |
msgstr "Effacer les Frais"
|
565 |
|
566 |
+
#: includes/admin/helpers/tables/class-fees-table.php:162
|
567 |
#, fuzzy
|
568 |
msgid "Enable"
|
569 |
msgstr "Activer"
|
570 |
|
571 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
572 |
msgid "ID: %s"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
576 |
#, fuzzy
|
577 |
msgid "Paid Plan"
|
578 |
msgstr "Payé"
|
579 |
|
580 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
581 |
#, fuzzy
|
582 |
msgid "Free Plan"
|
583 |
msgstr "Plan tarifaire"
|
584 |
|
585 |
+
#: includes/admin/helpers/tables/class-fees-table.php:222
|
586 |
#, fuzzy
|
587 |
msgid "%1$s for %2$s"
|
588 |
msgstr "%s (ex. %s)"
|
589 |
|
590 |
+
#: includes/admin/helpers/tables/class-fees-table.php:285
|
591 |
#, fuzzy
|
592 |
msgid "Disabled"
|
593 |
msgstr "Effacer les Frais"
|
594 |
|
595 |
+
#: includes/admin/helpers/tables/class-fees-table.php:291
|
596 |
#: includes/helpers/functions/templates-ui.php:431
|
597 |
#, fuzzy
|
598 |
msgid "Default"
|
1893 |
msgstr "Gérer annonces payées"
|
1894 |
|
1895 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1896 |
+
#: includes/licensing.php:152
|
1897 |
msgid ""
|
1898 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1899 |
"get updates."
|
1900 |
msgstr ""
|
1901 |
|
1902 |
+
#: includes/licensing.php:205 includes/licensing.php:208
|
1903 |
msgid "Licenses"
|
1904 |
msgstr "Licences"
|
1905 |
|
1906 |
+
#: includes/licensing.php:275
|
1907 |
msgid "Build more powerful directories"
|
1908 |
msgstr ""
|
1909 |
|
1910 |
+
#: includes/licensing.php:276
|
1911 |
msgid ""
|
1912 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: includes/licensing.php:278
|
1916 |
#, fuzzy
|
1917 |
msgid "Already purchased?"
|
1918 |
msgstr "Déjà installé."
|
1919 |
|
1920 |
#. translators: %s: item type.
|
1921 |
+
#: includes/licensing.php:296
|
1922 |
msgid "%s will not get updates until license is reauthorized."
|
1923 |
msgstr ""
|
1924 |
|
1925 |
+
#: includes/licensing.php:317
|
1926 |
#, fuzzy
|
1927 |
msgid "Enter License Key here"
|
1928 |
msgstr "Entrer la clé de licence"
|
1929 |
|
1930 |
+
#: includes/licensing.php:318
|
1931 |
#, fuzzy
|
1932 |
msgid "Authorize"
|
1933 |
msgstr "Activer Authorize.net"
|
1934 |
|
1935 |
+
#: includes/licensing.php:422
|
1936 |
#, fuzzy
|
1937 |
msgid "Invalid item ID"
|
1938 |
msgstr "ID d'élément non valide"
|
1939 |
|
1940 |
+
#: includes/licensing.php:435
|
1941 |
#, fuzzy
|
1942 |
msgid "No license key provided"
|
1943 |
msgstr "Aucune clé de licence fournie"
|
1944 |
|
1945 |
+
#: includes/licensing.php:484 includes/licensing.php:522
|
1946 |
#, fuzzy
|
1947 |
msgid "License key is invalid"
|
1948 |
msgstr "La clé de licence est invalide"
|
1949 |
|
1950 |
+
#: includes/licensing.php:488
|
1951 |
#, fuzzy
|
1952 |
msgid "Deactivation failed"
|
1953 |
msgstr "La désactivation a échoué"
|
1954 |
|
1955 |
+
#: includes/licensing.php:533
|
1956 |
#, fuzzy
|
1957 |
msgid "The license key was revoked."
|
1958 |
msgstr "Aucune clé de licence fournie"
|
1959 |
|
1960 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1961 |
+
#: includes/licensing.php:537
|
1962 |
#, fuzzy
|
1963 |
msgid ""
|
1964 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1971 |
"technique</support-link> et demandez-leur d'ajouter votre adresse IP <ip-"
|
1972 |
"address> à la liste blanche."
|
1973 |
|
1974 |
+
#: includes/licensing.php:600
|
1975 |
#, fuzzy
|
1976 |
msgid ""
|
1977 |
"It was not possible to establish a connection with the Business Directory "
|
1980 |
"Il n'a pas été possible d'établir une connexion avec le serveur de Business "
|
1981 |
"Directory. La connexion a échoué avec l'erreur suivante:"
|
1982 |
|
1983 |
+
#: includes/licensing.php:613
|
1984 |
#, fuzzy
|
1985 |
msgid ""
|
1986 |
"It was not possible to establish a connection with the Business Directory "
|
1990 |
"Directory. Un problème est survenu lors de l'établissement de liaison SSL / "
|
1991 |
"TLS:"
|
1992 |
|
1993 |
+
#: includes/licensing.php:660
|
1994 |
#, fuzzy
|
1995 |
msgid ""
|
1996 |
"It looks like your server is not authorized to make outgoing requests to "
|
2001 |
"aux serveurs de Business Directory. Contactez le support technique et "
|
2002 |
"demandez-leur d'ajouter votre adresse IP <ip-address> à la liste blanche."
|
2003 |
|
2004 |
+
#: includes/licensing.php:754
|
2005 |
#, fuzzy
|
2006 |
msgid "Business Directory license key is missing."
|
2007 |
msgstr "Business Directory - Clé de licence expirée"
|
2008 |
|
2009 |
+
#: includes/licensing.php:755
|
2010 |
#, fuzzy
|
2011 |
msgid "Business Directory license key has expired"
|
2012 |
msgstr "Business Directory - Clé de licence expirée"
|
2013 |
|
2014 |
+
#: includes/licensing.php:756
|
2015 |
#, fuzzy
|
2016 |
msgid "Could not verify Business Directory license."
|
2017 |
msgstr "Aider à améliorer Business Directory"
|
2018 |
|
2019 |
+
#: includes/licensing.php:767
|
2020 |
#, fuzzy
|
2021 |
msgid "Review license keys"
|
2022 |
msgstr "Renouveller la clé de licence"
|
2023 |
|
2024 |
+
#: includes/licensing.php:882
|
2025 |
msgid "Missing data. Please reload this page and try again."
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: includes/licensing.php:887
|
2029 |
#, fuzzy
|
2030 |
msgid "Please enter a license key."
|
2031 |
msgstr "S'il vous plaît entrer une clé de licence."
|
3942 |
msgid "Attributes"
|
3943 |
msgstr "Attributs"
|
3944 |
|
3945 |
+
#: includes/admin/helpers/tables/class-fees-table.php:141
|
3946 |
msgctxt "fees admin"
|
3947 |
msgid "Edit"
|
3948 |
msgstr "Editer"
|
3949 |
|
3950 |
+
#: includes/admin/helpers/tables/class-fees-table.php:210
|
3951 |
msgctxt "fees admin"
|
3952 |
msgid "Variable"
|
3953 |
msgstr "Variable"
|
3954 |
|
3955 |
+
#: includes/admin/helpers/tables/class-fees-table.php:215
|
3956 |
#, fuzzy
|
3957 |
msgctxt "fees admin"
|
3958 |
msgid "%1$s + %2$s per category"
|
3959 |
msgstr "%s + %s par catégorie"
|
3960 |
|
3961 |
+
#: includes/admin/helpers/tables/class-fees-table.php:234
|
3962 |
msgctxt "fees admin"
|
3963 |
msgid "Forever"
|
3964 |
msgstr "Pour toujours"
|
3965 |
|
3966 |
+
#: includes/admin/helpers/tables/class-fees-table.php:236
|
3967 |
msgctxt "fees admin"
|
3968 |
msgid "%d day"
|
3969 |
msgid_plural "%d days"
|
3970 |
msgstr[0] "%d jour"
|
3971 |
msgstr[1] "%d jours"
|
3972 |
|
3973 |
+
#: includes/admin/helpers/tables/class-fees-table.php:266
|
3974 |
msgctxt "fees admin"
|
3975 |
msgid "All categories"
|
3976 |
msgstr "Toutes catégories"
|
3977 |
|
3978 |
+
#: includes/admin/helpers/tables/class-fees-table.php:295
|
3979 |
msgctxt "fees admin"
|
3980 |
msgid "Sticky"
|
3981 |
msgstr "Premium"
|
3982 |
|
3983 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
3984 |
msgctxt "fees admin"
|
3985 |
msgid "Recurring"
|
3986 |
msgstr "Récurrent"
|
3987 |
|
3988 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
3989 |
#, fuzzy
|
3990 |
msgctxt "fees admin"
|
3991 |
msgid "Private"
|
6278 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6279 |
msgstr "L'élément \"%s\" est déjà utilisé pour une autre taxinomie."
|
6280 |
|
6281 |
+
#: includes/licensing.php:247
|
6282 |
msgctxt "settings"
|
6283 |
msgid "Themes"
|
6284 |
msgstr "Thèmes"
|
6285 |
|
6286 |
+
#: includes/licensing.php:318 includes/licensing.php:319
|
6287 |
msgctxt "settings"
|
6288 |
msgid "Please wait..."
|
6289 |
msgstr "Veuillez attendre..."
|
6290 |
|
6291 |
+
#: includes/licensing.php:319
|
6292 |
#, fuzzy
|
6293 |
msgctxt "settings"
|
6294 |
msgid "Deauthorize"
|
8354 |
msgid "General"
|
8355 |
msgstr "Général"
|
8356 |
|
8357 |
+
#: includes/licensing.php:573
|
8358 |
msgctxt "licensing"
|
8359 |
msgid "Could not contact licensing server"
|
8360 |
msgstr "Impossible de contacter le serveur de licences"
|
8361 |
|
8362 |
+
#: includes/licensing.php:586
|
8363 |
#, fuzzy
|
8364 |
msgctxt "licensing"
|
8365 |
msgid ""
|
8370 |
"Directory. Un problème est survenu lors de l'établissement de liaison SSL / "
|
8371 |
"TLS:"
|
8372 |
|
8373 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8374 |
msgctxt "licensing"
|
8375 |
msgid ""
|
8376 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8383 |
"version d'OpenSSL qui supporte TLSv1.2 (la version minimale avec le support "
|
8384 |
"est OpenSSL 1.0.1c)."
|
8385 |
|
8386 |
+
#: includes/licensing.php:590 includes/licensing.php:620
|
8387 |
msgctxt "licensing"
|
8388 |
msgid ""
|
8389 |
"Upgrading your system will not only allow you to communicate with Business "
|
8395 |
"votre site Web à pouvoir interagir avec les services en utilisant les "
|
8396 |
"dernières normes de sécurité."
|
8397 |
|
8398 |
+
#: includes/licensing.php:592
|
8399 |
#, fuzzy
|
8400 |
msgctxt "licensing"
|
8401 |
msgid ""
|
8405 |
"Veuillez contacter votre fournisseur d'hébergement et demandez-lui de mettre "
|
8406 |
"à jour votre hébergement. Incluez ce message si nécessaire."
|
8407 |
|
8408 |
+
#: includes/licensing.php:622
|
8409 |
#, fuzzy
|
8410 |
msgctxt "licensing"
|
8411 |
msgid ""
|
8415 |
"Veuillez contacter votre fournisseur d'hébergement et demandez-lui de mettre "
|
8416 |
"à jour votre hébergement. Incluez ce message si nécessaire."
|
8417 |
|
8418 |
+
#: includes/licensing.php:658
|
8419 |
msgctxt "licensing"
|
8420 |
msgid "The server returned a 403 Forbidden error."
|
8421 |
msgstr "Le serveur a renvoyé une erreur 403 Forbidden."
|
8422 |
|
8423 |
+
#: includes/licensing.php:904
|
8424 |
msgctxt "licensing"
|
8425 |
msgid "Could not activate license: %s."
|
8426 |
msgstr "Impossible d'activer la licence: %s."
|
8427 |
|
8428 |
+
#: includes/licensing.php:909
|
8429 |
msgctxt "licensing"
|
8430 |
msgid "License activated"
|
8431 |
msgstr "Licence activée"
|
8432 |
|
8433 |
+
#: includes/licensing.php:941
|
8434 |
msgctxt "licensing"
|
8435 |
msgid "Could not deactivate license: %s."
|
8436 |
msgstr "Impossible de désactiver la licence: %s."
|
8437 |
|
8438 |
+
#: includes/licensing.php:943
|
8439 |
msgctxt "licensing"
|
8440 |
msgid "License deactivated"
|
8441 |
msgstr "Licence désactivée"
|
8442 |
|
8443 |
#. translators: "<module-name>" version <version-number> is not...
|
8444 |
+
#: includes/licensing.php:1183
|
8445 |
#, fuzzy
|
8446 |
msgctxt "deprecation"
|
8447 |
msgid ""
|
languages/business-directory-plugin-it_IT.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2022-02-
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
@@ -112,7 +112,7 @@ msgid "Form Fields"
|
|
112 |
msgstr "campi del modulo"
|
113 |
|
114 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
115 |
-
#: includes/licensing.php:
|
116 |
#, fuzzy
|
117 |
msgid "Modules"
|
118 |
msgstr "(Tutti i moduli)"
|
@@ -444,7 +444,7 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
444 |
msgstr "Perché stai eliminando Business Directory Plugin?"
|
445 |
|
446 |
#: includes/admin/controllers/class-settings-admin.php:536
|
447 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
448 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
449 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
450 |
#: templates/admin/payments-note.tpl.php:14
|
@@ -502,7 +502,7 @@ msgid "Installed"
|
|
502 |
msgstr "Installato"
|
503 |
|
504 |
#: includes/admin/helpers/class-modules-list.php:187
|
505 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
506 |
#: templates/admin/themes-item.tpl.php:41
|
507 |
#, fuzzy
|
508 |
msgid "Active"
|
@@ -521,7 +521,7 @@ msgid "Activate"
|
|
521 |
msgstr "Attiva"
|
522 |
|
523 |
#: includes/admin/helpers/class-modules-list.php:235
|
524 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
525 |
msgid "Upgrade Now"
|
526 |
msgstr ""
|
527 |
|
@@ -560,41 +560,41 @@ msgstr "Prezzi"
|
|
560 |
msgid "Listings"
|
561 |
msgstr "Annunci"
|
562 |
|
563 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
564 |
#, fuzzy
|
565 |
msgid "Disable"
|
566 |
msgstr "Disabilita"
|
567 |
|
568 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
569 |
#, fuzzy
|
570 |
msgid "Enable"
|
571 |
msgstr "Abilita"
|
572 |
|
573 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
574 |
msgid "ID: %s"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
578 |
#, fuzzy
|
579 |
msgid "Paid Plan"
|
580 |
msgstr "Pagato come amministratore"
|
581 |
|
582 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
583 |
#, fuzzy
|
584 |
msgid "Free Plan"
|
585 |
msgstr "Piano tariffario"
|
586 |
|
587 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
588 |
#, fuzzy
|
589 |
msgid "%1$s for %2$s"
|
590 |
msgstr "%s (esempio %s)"
|
591 |
|
592 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
593 |
#, fuzzy
|
594 |
msgid "Disabled"
|
595 |
msgstr "Disabilitato"
|
596 |
|
597 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
598 |
#: includes/helpers/functions/templates-ui.php:431
|
599 |
#, fuzzy
|
600 |
msgid "Default"
|
@@ -1896,72 +1896,72 @@ msgid "Manage Listings"
|
|
1896 |
msgstr "Gestione delle Donazioni ricevute"
|
1897 |
|
1898 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1899 |
-
#: includes/licensing.php:
|
1900 |
msgid ""
|
1901 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1902 |
"get updates."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: includes/licensing.php:
|
1906 |
msgid "Licenses"
|
1907 |
msgstr "Licenze"
|
1908 |
|
1909 |
-
#: includes/licensing.php:
|
1910 |
msgid "Build more powerful directories"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: includes/licensing.php:
|
1914 |
msgid ""
|
1915 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#: includes/licensing.php:
|
1919 |
#, fuzzy
|
1920 |
msgid "Already purchased?"
|
1921 |
msgstr "Già installato."
|
1922 |
|
1923 |
#. translators: %s: item type.
|
1924 |
-
#: includes/licensing.php:
|
1925 |
msgid "%s will not get updates until license is reauthorized."
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: includes/licensing.php:
|
1929 |
#, fuzzy
|
1930 |
msgid "Enter License Key here"
|
1931 |
msgstr "Inserisci qui il codice di licenza"
|
1932 |
|
1933 |
-
#: includes/licensing.php:
|
1934 |
#, fuzzy
|
1935 |
msgid "Authorize"
|
1936 |
msgstr "Carta di Credito"
|
1937 |
|
1938 |
-
#: includes/licensing.php:
|
1939 |
#, fuzzy
|
1940 |
msgid "Invalid item ID"
|
1941 |
msgstr "ID articolo non valido"
|
1942 |
|
1943 |
-
#: includes/licensing.php:
|
1944 |
#, fuzzy
|
1945 |
msgid "No license key provided"
|
1946 |
msgstr "Nessuna chiave di licenza fornita"
|
1947 |
|
1948 |
-
#: includes/licensing.php:
|
1949 |
#, fuzzy
|
1950 |
msgid "License key is invalid"
|
1951 |
msgstr "La chiave di licenza non è valida"
|
1952 |
|
1953 |
-
#: includes/licensing.php:
|
1954 |
#, fuzzy
|
1955 |
msgid "Deactivation failed"
|
1956 |
msgstr "Disattivazione fallita"
|
1957 |
|
1958 |
-
#: includes/licensing.php:
|
1959 |
#, fuzzy
|
1960 |
msgid "The license key was revoked."
|
1961 |
msgstr "La chiave di licenza è stata revocata."
|
1962 |
|
1963 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1964 |
-
#: includes/licensing.php:
|
1965 |
#, fuzzy
|
1966 |
msgid ""
|
1967 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
@@ -1973,7 +1973,7 @@ msgstr ""
|
|
1973 |
"Business Directory</support-link> e fate loro sapere che la vostra licenza è "
|
1974 |
"stata segnalata come revocata dal software di licenza."
|
1975 |
|
1976 |
-
#: includes/licensing.php:
|
1977 |
#, fuzzy
|
1978 |
msgid ""
|
1979 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1982,7 +1982,7 @@ msgstr ""
|
|
1982 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
1983 |
"Directory. Il collegamento non è riuscito con il seguente errore:"
|
1984 |
|
1985 |
-
#: includes/licensing.php:
|
1986 |
#, fuzzy
|
1987 |
msgid ""
|
1988 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1991,7 +1991,7 @@ msgstr ""
|
|
1991 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
1992 |
"Directory. Si è verificato un problema nella stretta di mano SSL/TSL:"
|
1993 |
|
1994 |
-
#: includes/licensing.php:
|
1995 |
#, fuzzy
|
1996 |
msgid ""
|
1997 |
"It looks like your server is not authorized to make outgoing requests to "
|
@@ -2003,31 +2003,31 @@ msgstr ""
|
|
2003 |
"support-link> e chiedi loro di aggiungere il tuo indirizzo IP <ip-"
|
2004 |
"address>alla whitelist."
|
2005 |
|
2006 |
-
#: includes/licensing.php:
|
2007 |
#, fuzzy
|
2008 |
msgid "Business Directory license key is missing."
|
2009 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2010 |
|
2011 |
-
#: includes/licensing.php:
|
2012 |
#, fuzzy
|
2013 |
msgid "Business Directory license key has expired"
|
2014 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2015 |
|
2016 |
-
#: includes/licensing.php:
|
2017 |
#, fuzzy
|
2018 |
msgid "Could not verify Business Directory license."
|
2019 |
msgstr "Aiuta a migliorare la directory aziendale"
|
2020 |
|
2021 |
-
#: includes/licensing.php:
|
2022 |
#, fuzzy
|
2023 |
msgid "Review license keys"
|
2024 |
msgstr "Rivedere le mie chiavi di licenza"
|
2025 |
|
2026 |
-
#: includes/licensing.php:
|
2027 |
msgid "Missing data. Please reload this page and try again."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: includes/licensing.php:
|
2031 |
#, fuzzy
|
2032 |
msgid "Please enter a license key."
|
2033 |
msgstr "Per favore inserisci una chiave di licenza."
|
@@ -3977,49 +3977,49 @@ msgctxt "fees admin"
|
|
3977 |
msgid "Attributes"
|
3978 |
msgstr "Attributi"
|
3979 |
|
3980 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3981 |
msgctxt "fees admin"
|
3982 |
msgid "Edit"
|
3983 |
msgstr "Modifica"
|
3984 |
|
3985 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3986 |
msgctxt "fees admin"
|
3987 |
msgid "Variable"
|
3988 |
msgstr "Variabile"
|
3989 |
|
3990 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3991 |
msgctxt "fees admin"
|
3992 |
msgid "%1$s + %2$s per category"
|
3993 |
msgstr "%1$s + %2$s per categoria"
|
3994 |
|
3995 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3996 |
msgctxt "fees admin"
|
3997 |
msgid "Forever"
|
3998 |
msgstr "Per sempre"
|
3999 |
|
4000 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4001 |
msgctxt "fees admin"
|
4002 |
msgid "%d day"
|
4003 |
msgid_plural "%d days"
|
4004 |
msgstr[0] "%d giorno"
|
4005 |
msgstr[1] "%d giorni"
|
4006 |
|
4007 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4008 |
msgctxt "fees admin"
|
4009 |
msgid "All categories"
|
4010 |
msgstr "Tutte le categorie"
|
4011 |
|
4012 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4013 |
msgctxt "fees admin"
|
4014 |
msgid "Sticky"
|
4015 |
msgstr "Sticky"
|
4016 |
|
4017 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4018 |
msgctxt "fees admin"
|
4019 |
msgid "Recurring"
|
4020 |
msgstr "Ricorrente"
|
4021 |
|
4022 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4023 |
msgctxt "fees admin"
|
4024 |
msgid "Private"
|
4025 |
msgstr "Privato"
|
@@ -6306,17 +6306,17 @@ msgctxt "settings"
|
|
6306 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6307 |
msgstr "Lo slug \"%s\" è già in uso per un'altra tassonomia."
|
6308 |
|
6309 |
-
#: includes/licensing.php:
|
6310 |
msgctxt "settings"
|
6311 |
msgid "Themes"
|
6312 |
msgstr "Temi"
|
6313 |
|
6314 |
-
#: includes/licensing.php:
|
6315 |
msgctxt "settings"
|
6316 |
msgid "Please wait..."
|
6317 |
msgstr "Attendi..."
|
6318 |
|
6319 |
-
#: includes/licensing.php:
|
6320 |
#, fuzzy
|
6321 |
msgctxt "settings"
|
6322 |
msgid "Deauthorize"
|
@@ -8367,12 +8367,12 @@ msgctxt "default category name"
|
|
8367 |
msgid "General"
|
8368 |
msgstr "Generale"
|
8369 |
|
8370 |
-
#: includes/licensing.php:
|
8371 |
msgctxt "licensing"
|
8372 |
msgid "Could not contact licensing server"
|
8373 |
msgstr "Impossibile contattare il server di licenza"
|
8374 |
|
8375 |
-
#: includes/licensing.php:
|
8376 |
msgctxt "licensing"
|
8377 |
msgid ""
|
8378 |
"It was not possible to establish a connection with Business Directory's "
|
@@ -8381,7 +8381,7 @@ msgstr ""
|
|
8381 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
8382 |
"Directory. cURL non è stato trovato nel sistema."
|
8383 |
|
8384 |
-
#: includes/licensing.php:
|
8385 |
msgctxt "licensing"
|
8386 |
msgid ""
|
8387 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8394,7 +8394,7 @@ msgstr ""
|
|
8394 |
"recente di cURL e una versione di OpenSSL che supporta TLSv1.2 (la versione "
|
8395 |
"minima con supporto è OpenSSL 1.0.1.1c)."
|
8396 |
|
8397 |
-
#: includes/licensing.php:
|
8398 |
msgctxt "licensing"
|
8399 |
msgid ""
|
8400 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8406,7 +8406,7 @@ msgstr ""
|
|
8406 |
"sito web a interagire con i servizi utilizzando i più recenti standard di "
|
8407 |
"sicurezza."
|
8408 |
|
8409 |
-
#: includes/licensing.php:
|
8410 |
msgctxt "licensing"
|
8411 |
msgid ""
|
8412 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
@@ -8415,7 +8415,7 @@ msgstr ""
|
|
8415 |
"Contatta il tuo fornitore di hosting e chiedi loro di aggiornare il tuo "
|
8416 |
"sistema. Includere questo messaggio se necessario"
|
8417 |
|
8418 |
-
#: includes/licensing.php:
|
8419 |
msgctxt "licensing"
|
8420 |
msgid ""
|
8421 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
@@ -8424,33 +8424,33 @@ msgstr ""
|
|
8424 |
"Contatta il tuo fornitore di hosting e chiedi loro di aggiornare il tuo "
|
8425 |
"sistema. Includere questo messaggio se necessario."
|
8426 |
|
8427 |
-
#: includes/licensing.php:
|
8428 |
msgctxt "licensing"
|
8429 |
msgid "The server returned a 403 Forbidden error."
|
8430 |
msgstr "Il server ha restituito un errore 403 Forbidden error."
|
8431 |
|
8432 |
-
#: includes/licensing.php:
|
8433 |
msgctxt "licensing"
|
8434 |
msgid "Could not activate license: %s."
|
8435 |
msgstr "Impossibile attivare la licenza: %s."
|
8436 |
|
8437 |
-
#: includes/licensing.php:
|
8438 |
msgctxt "licensing"
|
8439 |
msgid "License activated"
|
8440 |
msgstr "Licenza attivata"
|
8441 |
|
8442 |
-
#: includes/licensing.php:
|
8443 |
msgctxt "licensing"
|
8444 |
msgid "Could not deactivate license: %s."
|
8445 |
msgstr "Impossibile disattivare la licenza: %s."
|
8446 |
|
8447 |
-
#: includes/licensing.php:
|
8448 |
msgctxt "licensing"
|
8449 |
msgid "License deactivated"
|
8450 |
msgstr "Licenza disattivata"
|
8451 |
|
8452 |
#. translators: "<module-name>" version <version-number> is not...
|
8453 |
-
#: includes/licensing.php:
|
8454 |
msgctxt "deprecation"
|
8455 |
msgid ""
|
8456 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2022-02-03 21:01:26+00:00\n"
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
112 |
msgstr "campi del modulo"
|
113 |
|
114 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
115 |
+
#: includes/licensing.php:229
|
116 |
#, fuzzy
|
117 |
msgid "Modules"
|
118 |
msgstr "(Tutti i moduli)"
|
444 |
msgstr "Perché stai eliminando Business Directory Plugin?"
|
445 |
|
446 |
#: includes/admin/controllers/class-settings-admin.php:536
|
447 |
+
#: includes/admin/helpers/tables/class-fees-table.php:177
|
448 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
449 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
450 |
#: templates/admin/payments-note.tpl.php:14
|
502 |
msgstr "Installato"
|
503 |
|
504 |
#: includes/admin/helpers/class-modules-list.php:187
|
505 |
+
#: includes/admin/helpers/tables/class-fees-table.php:287
|
506 |
#: templates/admin/themes-item.tpl.php:41
|
507 |
#, fuzzy
|
508 |
msgid "Active"
|
521 |
msgstr "Attiva"
|
522 |
|
523 |
#: includes/admin/helpers/class-modules-list.php:235
|
524 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:277
|
525 |
msgid "Upgrade Now"
|
526 |
msgstr ""
|
527 |
|
560 |
msgid "Listings"
|
561 |
msgstr "Annunci"
|
562 |
|
563 |
+
#: includes/admin/helpers/tables/class-fees-table.php:156
|
564 |
#, fuzzy
|
565 |
msgid "Disable"
|
566 |
msgstr "Disabilita"
|
567 |
|
568 |
+
#: includes/admin/helpers/tables/class-fees-table.php:162
|
569 |
#, fuzzy
|
570 |
msgid "Enable"
|
571 |
msgstr "Abilita"
|
572 |
|
573 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
574 |
msgid "ID: %s"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
578 |
#, fuzzy
|
579 |
msgid "Paid Plan"
|
580 |
msgstr "Pagato come amministratore"
|
581 |
|
582 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
583 |
#, fuzzy
|
584 |
msgid "Free Plan"
|
585 |
msgstr "Piano tariffario"
|
586 |
|
587 |
+
#: includes/admin/helpers/tables/class-fees-table.php:222
|
588 |
#, fuzzy
|
589 |
msgid "%1$s for %2$s"
|
590 |
msgstr "%s (esempio %s)"
|
591 |
|
592 |
+
#: includes/admin/helpers/tables/class-fees-table.php:285
|
593 |
#, fuzzy
|
594 |
msgid "Disabled"
|
595 |
msgstr "Disabilitato"
|
596 |
|
597 |
+
#: includes/admin/helpers/tables/class-fees-table.php:291
|
598 |
#: includes/helpers/functions/templates-ui.php:431
|
599 |
#, fuzzy
|
600 |
msgid "Default"
|
1896 |
msgstr "Gestione delle Donazioni ricevute"
|
1897 |
|
1898 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1899 |
+
#: includes/licensing.php:152
|
1900 |
msgid ""
|
1901 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1902 |
"get updates."
|
1903 |
msgstr ""
|
1904 |
|
1905 |
+
#: includes/licensing.php:205 includes/licensing.php:208
|
1906 |
msgid "Licenses"
|
1907 |
msgstr "Licenze"
|
1908 |
|
1909 |
+
#: includes/licensing.php:275
|
1910 |
msgid "Build more powerful directories"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
+
#: includes/licensing.php:276
|
1914 |
msgid ""
|
1915 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1916 |
msgstr ""
|
1917 |
|
1918 |
+
#: includes/licensing.php:278
|
1919 |
#, fuzzy
|
1920 |
msgid "Already purchased?"
|
1921 |
msgstr "Già installato."
|
1922 |
|
1923 |
#. translators: %s: item type.
|
1924 |
+
#: includes/licensing.php:296
|
1925 |
msgid "%s will not get updates until license is reauthorized."
|
1926 |
msgstr ""
|
1927 |
|
1928 |
+
#: includes/licensing.php:317
|
1929 |
#, fuzzy
|
1930 |
msgid "Enter License Key here"
|
1931 |
msgstr "Inserisci qui il codice di licenza"
|
1932 |
|
1933 |
+
#: includes/licensing.php:318
|
1934 |
#, fuzzy
|
1935 |
msgid "Authorize"
|
1936 |
msgstr "Carta di Credito"
|
1937 |
|
1938 |
+
#: includes/licensing.php:422
|
1939 |
#, fuzzy
|
1940 |
msgid "Invalid item ID"
|
1941 |
msgstr "ID articolo non valido"
|
1942 |
|
1943 |
+
#: includes/licensing.php:435
|
1944 |
#, fuzzy
|
1945 |
msgid "No license key provided"
|
1946 |
msgstr "Nessuna chiave di licenza fornita"
|
1947 |
|
1948 |
+
#: includes/licensing.php:484 includes/licensing.php:522
|
1949 |
#, fuzzy
|
1950 |
msgid "License key is invalid"
|
1951 |
msgstr "La chiave di licenza non è valida"
|
1952 |
|
1953 |
+
#: includes/licensing.php:488
|
1954 |
#, fuzzy
|
1955 |
msgid "Deactivation failed"
|
1956 |
msgstr "Disattivazione fallita"
|
1957 |
|
1958 |
+
#: includes/licensing.php:533
|
1959 |
#, fuzzy
|
1960 |
msgid "The license key was revoked."
|
1961 |
msgstr "La chiave di licenza è stata revocata."
|
1962 |
|
1963 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1964 |
+
#: includes/licensing.php:537
|
1965 |
#, fuzzy
|
1966 |
msgid ""
|
1967 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1973 |
"Business Directory</support-link> e fate loro sapere che la vostra licenza è "
|
1974 |
"stata segnalata come revocata dal software di licenza."
|
1975 |
|
1976 |
+
#: includes/licensing.php:600
|
1977 |
#, fuzzy
|
1978 |
msgid ""
|
1979 |
"It was not possible to establish a connection with the Business Directory "
|
1982 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
1983 |
"Directory. Il collegamento non è riuscito con il seguente errore:"
|
1984 |
|
1985 |
+
#: includes/licensing.php:613
|
1986 |
#, fuzzy
|
1987 |
msgid ""
|
1988 |
"It was not possible to establish a connection with the Business Directory "
|
1991 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
1992 |
"Directory. Si è verificato un problema nella stretta di mano SSL/TSL:"
|
1993 |
|
1994 |
+
#: includes/licensing.php:660
|
1995 |
#, fuzzy
|
1996 |
msgid ""
|
1997 |
"It looks like your server is not authorized to make outgoing requests to "
|
2003 |
"support-link> e chiedi loro di aggiungere il tuo indirizzo IP <ip-"
|
2004 |
"address>alla whitelist."
|
2005 |
|
2006 |
+
#: includes/licensing.php:754
|
2007 |
#, fuzzy
|
2008 |
msgid "Business Directory license key is missing."
|
2009 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2010 |
|
2011 |
+
#: includes/licensing.php:755
|
2012 |
#, fuzzy
|
2013 |
msgid "Business Directory license key has expired"
|
2014 |
msgstr "Business Directory - Chiave di licenza scaduta"
|
2015 |
|
2016 |
+
#: includes/licensing.php:756
|
2017 |
#, fuzzy
|
2018 |
msgid "Could not verify Business Directory license."
|
2019 |
msgstr "Aiuta a migliorare la directory aziendale"
|
2020 |
|
2021 |
+
#: includes/licensing.php:767
|
2022 |
#, fuzzy
|
2023 |
msgid "Review license keys"
|
2024 |
msgstr "Rivedere le mie chiavi di licenza"
|
2025 |
|
2026 |
+
#: includes/licensing.php:882
|
2027 |
msgid "Missing data. Please reload this page and try again."
|
2028 |
msgstr ""
|
2029 |
|
2030 |
+
#: includes/licensing.php:887
|
2031 |
#, fuzzy
|
2032 |
msgid "Please enter a license key."
|
2033 |
msgstr "Per favore inserisci una chiave di licenza."
|
3977 |
msgid "Attributes"
|
3978 |
msgstr "Attributi"
|
3979 |
|
3980 |
+
#: includes/admin/helpers/tables/class-fees-table.php:141
|
3981 |
msgctxt "fees admin"
|
3982 |
msgid "Edit"
|
3983 |
msgstr "Modifica"
|
3984 |
|
3985 |
+
#: includes/admin/helpers/tables/class-fees-table.php:210
|
3986 |
msgctxt "fees admin"
|
3987 |
msgid "Variable"
|
3988 |
msgstr "Variabile"
|
3989 |
|
3990 |
+
#: includes/admin/helpers/tables/class-fees-table.php:215
|
3991 |
msgctxt "fees admin"
|
3992 |
msgid "%1$s + %2$s per category"
|
3993 |
msgstr "%1$s + %2$s per categoria"
|
3994 |
|
3995 |
+
#: includes/admin/helpers/tables/class-fees-table.php:234
|
3996 |
msgctxt "fees admin"
|
3997 |
msgid "Forever"
|
3998 |
msgstr "Per sempre"
|
3999 |
|
4000 |
+
#: includes/admin/helpers/tables/class-fees-table.php:236
|
4001 |
msgctxt "fees admin"
|
4002 |
msgid "%d day"
|
4003 |
msgid_plural "%d days"
|
4004 |
msgstr[0] "%d giorno"
|
4005 |
msgstr[1] "%d giorni"
|
4006 |
|
4007 |
+
#: includes/admin/helpers/tables/class-fees-table.php:266
|
4008 |
msgctxt "fees admin"
|
4009 |
msgid "All categories"
|
4010 |
msgstr "Tutte le categorie"
|
4011 |
|
4012 |
+
#: includes/admin/helpers/tables/class-fees-table.php:295
|
4013 |
msgctxt "fees admin"
|
4014 |
msgid "Sticky"
|
4015 |
msgstr "Sticky"
|
4016 |
|
4017 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
4018 |
msgctxt "fees admin"
|
4019 |
msgid "Recurring"
|
4020 |
msgstr "Ricorrente"
|
4021 |
|
4022 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
4023 |
msgctxt "fees admin"
|
4024 |
msgid "Private"
|
4025 |
msgstr "Privato"
|
6306 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6307 |
msgstr "Lo slug \"%s\" è già in uso per un'altra tassonomia."
|
6308 |
|
6309 |
+
#: includes/licensing.php:247
|
6310 |
msgctxt "settings"
|
6311 |
msgid "Themes"
|
6312 |
msgstr "Temi"
|
6313 |
|
6314 |
+
#: includes/licensing.php:318 includes/licensing.php:319
|
6315 |
msgctxt "settings"
|
6316 |
msgid "Please wait..."
|
6317 |
msgstr "Attendi..."
|
6318 |
|
6319 |
+
#: includes/licensing.php:319
|
6320 |
#, fuzzy
|
6321 |
msgctxt "settings"
|
6322 |
msgid "Deauthorize"
|
8367 |
msgid "General"
|
8368 |
msgstr "Generale"
|
8369 |
|
8370 |
+
#: includes/licensing.php:573
|
8371 |
msgctxt "licensing"
|
8372 |
msgid "Could not contact licensing server"
|
8373 |
msgstr "Impossibile contattare il server di licenza"
|
8374 |
|
8375 |
+
#: includes/licensing.php:586
|
8376 |
msgctxt "licensing"
|
8377 |
msgid ""
|
8378 |
"It was not possible to establish a connection with Business Directory's "
|
8381 |
"Non è stato possibile stabilire una connessione con il server di Business "
|
8382 |
"Directory. cURL non è stato trovato nel sistema."
|
8383 |
|
8384 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8385 |
msgctxt "licensing"
|
8386 |
msgid ""
|
8387 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8394 |
"recente di cURL e una versione di OpenSSL che supporta TLSv1.2 (la versione "
|
8395 |
"minima con supporto è OpenSSL 1.0.1.1c)."
|
8396 |
|
8397 |
+
#: includes/licensing.php:590 includes/licensing.php:620
|
8398 |
msgctxt "licensing"
|
8399 |
msgid ""
|
8400 |
"Upgrading your system will not only allow you to communicate with Business "
|
8406 |
"sito web a interagire con i servizi utilizzando i più recenti standard di "
|
8407 |
"sicurezza."
|
8408 |
|
8409 |
+
#: includes/licensing.php:592
|
8410 |
msgctxt "licensing"
|
8411 |
msgid ""
|
8412 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8415 |
"Contatta il tuo fornitore di hosting e chiedi loro di aggiornare il tuo "
|
8416 |
"sistema. Includere questo messaggio se necessario"
|
8417 |
|
8418 |
+
#: includes/licensing.php:622
|
8419 |
msgctxt "licensing"
|
8420 |
msgid ""
|
8421 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8424 |
"Contatta il tuo fornitore di hosting e chiedi loro di aggiornare il tuo "
|
8425 |
"sistema. Includere questo messaggio se necessario."
|
8426 |
|
8427 |
+
#: includes/licensing.php:658
|
8428 |
msgctxt "licensing"
|
8429 |
msgid "The server returned a 403 Forbidden error."
|
8430 |
msgstr "Il server ha restituito un errore 403 Forbidden error."
|
8431 |
|
8432 |
+
#: includes/licensing.php:904
|
8433 |
msgctxt "licensing"
|
8434 |
msgid "Could not activate license: %s."
|
8435 |
msgstr "Impossibile attivare la licenza: %s."
|
8436 |
|
8437 |
+
#: includes/licensing.php:909
|
8438 |
msgctxt "licensing"
|
8439 |
msgid "License activated"
|
8440 |
msgstr "Licenza attivata"
|
8441 |
|
8442 |
+
#: includes/licensing.php:941
|
8443 |
msgctxt "licensing"
|
8444 |
msgid "Could not deactivate license: %s."
|
8445 |
msgstr "Impossibile disattivare la licenza: %s."
|
8446 |
|
8447 |
+
#: includes/licensing.php:943
|
8448 |
msgctxt "licensing"
|
8449 |
msgid "License deactivated"
|
8450 |
msgstr "Licenza disattivata"
|
8451 |
|
8452 |
#. translators: "<module-name>" version <version-number> is not...
|
8453 |
+
#: includes/licensing.php:1183
|
8454 |
msgctxt "deprecation"
|
8455 |
msgid ""
|
8456 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
languages/business-directory-plugin-nl_NL.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2022-02-
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: admin <info@nederlofcentrum.nl>\n"
|
9 |
"Language-Team: Dutch\n"
|
@@ -90,7 +90,7 @@ msgid "Form Fields"
|
|
90 |
msgstr "Formulier velden"
|
91 |
|
92 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
93 |
-
#: includes/licensing.php:
|
94 |
msgid "Modules"
|
95 |
msgstr ""
|
96 |
|
@@ -410,7 +410,7 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
410 |
msgstr "Business Directory instellingen"
|
411 |
|
412 |
#: includes/admin/controllers/class-settings-admin.php:536
|
413 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
414 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
415 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
416 |
#: templates/admin/payments-note.tpl.php:14
|
@@ -466,7 +466,7 @@ msgid "Installed"
|
|
466 |
msgstr "Geinstalleerd: %s"
|
467 |
|
468 |
#: includes/admin/helpers/class-modules-list.php:187
|
469 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
470 |
#: templates/admin/themes-item.tpl.php:41
|
471 |
#, fuzzy
|
472 |
msgid "Active"
|
@@ -485,7 +485,7 @@ msgid "Activate"
|
|
485 |
msgstr "Actief"
|
486 |
|
487 |
#: includes/admin/helpers/class-modules-list.php:235
|
488 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
489 |
#, fuzzy
|
490 |
msgid "Upgrade Now"
|
491 |
msgstr "Opwaarderen tot %s"
|
@@ -521,40 +521,40 @@ msgstr ""
|
|
521 |
msgid "Listings"
|
522 |
msgstr "Registraties"
|
523 |
|
524 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
525 |
#, fuzzy
|
526 |
msgid "Disable"
|
527 |
msgstr "Uitzetten"
|
528 |
|
529 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
530 |
#, fuzzy
|
531 |
msgid "Enable"
|
532 |
msgstr "Aanzetten"
|
533 |
|
534 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
535 |
msgid "ID: %s"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
539 |
#, fuzzy
|
540 |
msgid "Paid Plan"
|
541 |
msgstr "Betaald"
|
542 |
|
543 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
544 |
#, fuzzy
|
545 |
msgid "Free Plan"
|
546 |
msgstr "Ga naar \"instellen formulier velden\""
|
547 |
|
548 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
549 |
msgid "%1$s for %2$s"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
553 |
#, fuzzy
|
554 |
msgid "Disabled"
|
555 |
msgstr "Uitgezet"
|
556 |
|
557 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
558 |
#: includes/helpers/functions/templates-ui.php:431
|
559 |
#, fuzzy
|
560 |
msgid "Default"
|
@@ -1775,68 +1775,68 @@ msgid "Manage Listings"
|
|
1775 |
msgstr "Opties beheren"
|
1776 |
|
1777 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1778 |
-
#: includes/licensing.php:
|
1779 |
msgid ""
|
1780 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1781 |
"get updates."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#: includes/licensing.php:
|
1785 |
msgid "Licenses"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: includes/licensing.php:
|
1789 |
msgid "Build more powerful directories"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: includes/licensing.php:
|
1793 |
msgid ""
|
1794 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: includes/licensing.php:
|
1798 |
msgid "Already purchased?"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
#. translators: %s: item type.
|
1802 |
-
#: includes/licensing.php:
|
1803 |
msgid "%s will not get updates until license is reauthorized."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: includes/licensing.php:
|
1807 |
#, fuzzy
|
1808 |
msgid "Enter License Key here"
|
1809 |
msgstr "Beelden bij de registratie"
|
1810 |
|
1811 |
-
#: includes/licensing.php:
|
1812 |
#, fuzzy
|
1813 |
msgid "Authorize"
|
1814 |
msgstr "Auteur"
|
1815 |
|
1816 |
-
#: includes/licensing.php:
|
1817 |
msgid "Invalid item ID"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
-
#: includes/licensing.php:
|
1821 |
msgid "No license key provided"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
-
#: includes/licensing.php:
|
1825 |
#, fuzzy
|
1826 |
msgid "License key is invalid"
|
1827 |
msgstr "Beelden bij de registratie"
|
1828 |
|
1829 |
-
#: includes/licensing.php:
|
1830 |
#, fuzzy
|
1831 |
msgid "Deactivation failed"
|
1832 |
msgstr "Actief"
|
1833 |
|
1834 |
-
#: includes/licensing.php:
|
1835 |
msgid "The license key was revoked."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1839 |
-
#: includes/licensing.php:
|
1840 |
msgid ""
|
1841 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1842 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -1844,49 +1844,49 @@ msgid ""
|
|
1844 |
"with your report."
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: includes/licensing.php:
|
1848 |
msgid ""
|
1849 |
"It was not possible to establish a connection with the Business Directory "
|
1850 |
"server. The connection failed with the following error:"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: includes/licensing.php:
|
1854 |
msgid ""
|
1855 |
"It was not possible to establish a connection with the Business Directory "
|
1856 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: includes/licensing.php:
|
1860 |
msgid ""
|
1861 |
"It looks like your server is not authorized to make outgoing requests to "
|
1862 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1863 |
"our IP address 52.0.78.177 to your allow list."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/licensing.php:
|
1867 |
#, fuzzy
|
1868 |
msgid "Business Directory license key is missing."
|
1869 |
msgstr "Business Directory - Zoeken"
|
1870 |
|
1871 |
-
#: includes/licensing.php:
|
1872 |
#, fuzzy
|
1873 |
msgid "Business Directory license key has expired"
|
1874 |
msgstr "Business Directory - Zoeken"
|
1875 |
|
1876 |
-
#: includes/licensing.php:
|
1877 |
#, fuzzy
|
1878 |
msgid "Could not verify Business Directory license."
|
1879 |
msgstr "Business Directory instellingen"
|
1880 |
|
1881 |
-
#: includes/licensing.php:
|
1882 |
msgid "Review license keys"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#: includes/licensing.php:
|
1886 |
msgid "Missing data. Please reload this page and try again."
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: includes/licensing.php:
|
1890 |
msgid "Please enter a license key."
|
1891 |
msgstr ""
|
1892 |
|
@@ -3629,51 +3629,51 @@ msgctxt "fees admin"
|
|
3629 |
msgid "Attributes"
|
3630 |
msgstr "Veld attributen"
|
3631 |
|
3632 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3633 |
msgctxt "fees admin"
|
3634 |
msgid "Edit"
|
3635 |
msgstr "Bewerk"
|
3636 |
|
3637 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3638 |
#, fuzzy
|
3639 |
msgctxt "fees admin"
|
3640 |
msgid "Variable"
|
3641 |
msgstr "Uitzetten"
|
3642 |
|
3643 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3644 |
#, fuzzy
|
3645 |
msgctxt "fees admin"
|
3646 |
msgid "%1$s + %2$s per category"
|
3647 |
msgstr "Categorie selectie"
|
3648 |
|
3649 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3650 |
msgctxt "fees admin"
|
3651 |
msgid "Forever"
|
3652 |
msgstr "Altijd"
|
3653 |
|
3654 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3655 |
msgctxt "fees admin"
|
3656 |
msgid "%d day"
|
3657 |
msgid_plural "%d days"
|
3658 |
msgstr[0] "%d dag"
|
3659 |
msgstr[1] "%d dagen"
|
3660 |
|
3661 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3662 |
msgctxt "fees admin"
|
3663 |
msgid "All categories"
|
3664 |
msgstr "Alle categorieën"
|
3665 |
|
3666 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3667 |
msgctxt "fees admin"
|
3668 |
msgid "Sticky"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3672 |
msgctxt "fees admin"
|
3673 |
msgid "Recurring"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3677 |
#, fuzzy
|
3678 |
msgctxt "fees admin"
|
3679 |
msgid "Private"
|
@@ -6000,18 +6000,18 @@ msgctxt "settings"
|
|
6000 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6001 |
msgstr ""
|
6002 |
|
6003 |
-
#: includes/licensing.php:
|
6004 |
#, fuzzy
|
6005 |
msgctxt "settings"
|
6006 |
msgid "Themes"
|
6007 |
msgstr "Thema's"
|
6008 |
|
6009 |
-
#: includes/licensing.php:
|
6010 |
msgctxt "settings"
|
6011 |
msgid "Please wait..."
|
6012 |
msgstr ""
|
6013 |
|
6014 |
-
#: includes/licensing.php:
|
6015 |
#, fuzzy
|
6016 |
msgctxt "settings"
|
6017 |
msgid "Deauthorize"
|
@@ -7944,19 +7944,19 @@ msgctxt "default category name"
|
|
7944 |
msgid "General"
|
7945 |
msgstr "Algemeen"
|
7946 |
|
7947 |
-
#: includes/licensing.php:
|
7948 |
msgctxt "licensing"
|
7949 |
msgid "Could not contact licensing server"
|
7950 |
msgstr ""
|
7951 |
|
7952 |
-
#: includes/licensing.php:
|
7953 |
msgctxt "licensing"
|
7954 |
msgid ""
|
7955 |
"It was not possible to establish a connection with Business Directory's "
|
7956 |
"server. cURL was not found in your system"
|
7957 |
msgstr ""
|
7958 |
|
7959 |
-
#: includes/licensing.php:
|
7960 |
msgctxt "licensing"
|
7961 |
msgid ""
|
7962 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -7965,7 +7965,7 @@ msgid ""
|
|
7965 |
"1.0.1c)."
|
7966 |
msgstr ""
|
7967 |
|
7968 |
-
#: includes/licensing.php:
|
7969 |
msgctxt "licensing"
|
7970 |
msgid ""
|
7971 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -7973,47 +7973,47 @@ msgid ""
|
|
7973 |
"services using the latest security standards."
|
7974 |
msgstr ""
|
7975 |
|
7976 |
-
#: includes/licensing.php:
|
7977 |
msgctxt "licensing"
|
7978 |
msgid ""
|
7979 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7980 |
"Include this message if necessary"
|
7981 |
msgstr ""
|
7982 |
|
7983 |
-
#: includes/licensing.php:
|
7984 |
msgctxt "licensing"
|
7985 |
msgid ""
|
7986 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7987 |
"Include this message if necessary."
|
7988 |
msgstr ""
|
7989 |
|
7990 |
-
#: includes/licensing.php:
|
7991 |
msgctxt "licensing"
|
7992 |
msgid "The server returned a 403 Forbidden error."
|
7993 |
msgstr ""
|
7994 |
|
7995 |
-
#: includes/licensing.php:
|
7996 |
msgctxt "licensing"
|
7997 |
msgid "Could not activate license: %s."
|
7998 |
msgstr ""
|
7999 |
|
8000 |
-
#: includes/licensing.php:
|
8001 |
msgctxt "licensing"
|
8002 |
msgid "License activated"
|
8003 |
msgstr ""
|
8004 |
|
8005 |
-
#: includes/licensing.php:
|
8006 |
msgctxt "licensing"
|
8007 |
msgid "Could not deactivate license: %s."
|
8008 |
msgstr ""
|
8009 |
|
8010 |
-
#: includes/licensing.php:
|
8011 |
msgctxt "licensing"
|
8012 |
msgid "License deactivated"
|
8013 |
msgstr ""
|
8014 |
|
8015 |
#. translators: "<module-name>" version <version-number> is not...
|
8016 |
-
#: includes/licensing.php:
|
8017 |
msgctxt "deprecation"
|
8018 |
msgid ""
|
8019 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2022-02-03 21:01:26+00:00\n"
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: admin <info@nederlofcentrum.nl>\n"
|
9 |
"Language-Team: Dutch\n"
|
90 |
msgstr "Formulier velden"
|
91 |
|
92 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
93 |
+
#: includes/licensing.php:229
|
94 |
msgid "Modules"
|
95 |
msgstr ""
|
96 |
|
410 |
msgstr "Business Directory instellingen"
|
411 |
|
412 |
#: includes/admin/controllers/class-settings-admin.php:536
|
413 |
+
#: includes/admin/helpers/tables/class-fees-table.php:177
|
414 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
415 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
416 |
#: templates/admin/payments-note.tpl.php:14
|
466 |
msgstr "Geinstalleerd: %s"
|
467 |
|
468 |
#: includes/admin/helpers/class-modules-list.php:187
|
469 |
+
#: includes/admin/helpers/tables/class-fees-table.php:287
|
470 |
#: templates/admin/themes-item.tpl.php:41
|
471 |
#, fuzzy
|
472 |
msgid "Active"
|
485 |
msgstr "Actief"
|
486 |
|
487 |
#: includes/admin/helpers/class-modules-list.php:235
|
488 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:277
|
489 |
#, fuzzy
|
490 |
msgid "Upgrade Now"
|
491 |
msgstr "Opwaarderen tot %s"
|
521 |
msgid "Listings"
|
522 |
msgstr "Registraties"
|
523 |
|
524 |
+
#: includes/admin/helpers/tables/class-fees-table.php:156
|
525 |
#, fuzzy
|
526 |
msgid "Disable"
|
527 |
msgstr "Uitzetten"
|
528 |
|
529 |
+
#: includes/admin/helpers/tables/class-fees-table.php:162
|
530 |
#, fuzzy
|
531 |
msgid "Enable"
|
532 |
msgstr "Aanzetten"
|
533 |
|
534 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
535 |
msgid "ID: %s"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
539 |
#, fuzzy
|
540 |
msgid "Paid Plan"
|
541 |
msgstr "Betaald"
|
542 |
|
543 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
544 |
#, fuzzy
|
545 |
msgid "Free Plan"
|
546 |
msgstr "Ga naar \"instellen formulier velden\""
|
547 |
|
548 |
+
#: includes/admin/helpers/tables/class-fees-table.php:222
|
549 |
msgid "%1$s for %2$s"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: includes/admin/helpers/tables/class-fees-table.php:285
|
553 |
#, fuzzy
|
554 |
msgid "Disabled"
|
555 |
msgstr "Uitgezet"
|
556 |
|
557 |
+
#: includes/admin/helpers/tables/class-fees-table.php:291
|
558 |
#: includes/helpers/functions/templates-ui.php:431
|
559 |
#, fuzzy
|
560 |
msgid "Default"
|
1775 |
msgstr "Opties beheren"
|
1776 |
|
1777 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1778 |
+
#: includes/licensing.php:152
|
1779 |
msgid ""
|
1780 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1781 |
"get updates."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
+
#: includes/licensing.php:205 includes/licensing.php:208
|
1785 |
msgid "Licenses"
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: includes/licensing.php:275
|
1789 |
msgid "Build more powerful directories"
|
1790 |
msgstr ""
|
1791 |
|
1792 |
+
#: includes/licensing.php:276
|
1793 |
msgid ""
|
1794 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: includes/licensing.php:278
|
1798 |
msgid "Already purchased?"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
#. translators: %s: item type.
|
1802 |
+
#: includes/licensing.php:296
|
1803 |
msgid "%s will not get updates until license is reauthorized."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: includes/licensing.php:317
|
1807 |
#, fuzzy
|
1808 |
msgid "Enter License Key here"
|
1809 |
msgstr "Beelden bij de registratie"
|
1810 |
|
1811 |
+
#: includes/licensing.php:318
|
1812 |
#, fuzzy
|
1813 |
msgid "Authorize"
|
1814 |
msgstr "Auteur"
|
1815 |
|
1816 |
+
#: includes/licensing.php:422
|
1817 |
msgid "Invalid item ID"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: includes/licensing.php:435
|
1821 |
msgid "No license key provided"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: includes/licensing.php:484 includes/licensing.php:522
|
1825 |
#, fuzzy
|
1826 |
msgid "License key is invalid"
|
1827 |
msgstr "Beelden bij de registratie"
|
1828 |
|
1829 |
+
#: includes/licensing.php:488
|
1830 |
#, fuzzy
|
1831 |
msgid "Deactivation failed"
|
1832 |
msgstr "Actief"
|
1833 |
|
1834 |
+
#: includes/licensing.php:533
|
1835 |
msgid "The license key was revoked."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1839 |
+
#: includes/licensing.php:537
|
1840 |
msgid ""
|
1841 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1842 |
"%2$s and let them know your license is being reported as revoked by the "
|
1844 |
"with your report."
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: includes/licensing.php:600
|
1848 |
msgid ""
|
1849 |
"It was not possible to establish a connection with the Business Directory "
|
1850 |
"server. The connection failed with the following error:"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: includes/licensing.php:613
|
1854 |
msgid ""
|
1855 |
"It was not possible to establish a connection with the Business Directory "
|
1856 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: includes/licensing.php:660
|
1860 |
msgid ""
|
1861 |
"It looks like your server is not authorized to make outgoing requests to "
|
1862 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1863 |
"our IP address 52.0.78.177 to your allow list."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: includes/licensing.php:754
|
1867 |
#, fuzzy
|
1868 |
msgid "Business Directory license key is missing."
|
1869 |
msgstr "Business Directory - Zoeken"
|
1870 |
|
1871 |
+
#: includes/licensing.php:755
|
1872 |
#, fuzzy
|
1873 |
msgid "Business Directory license key has expired"
|
1874 |
msgstr "Business Directory - Zoeken"
|
1875 |
|
1876 |
+
#: includes/licensing.php:756
|
1877 |
#, fuzzy
|
1878 |
msgid "Could not verify Business Directory license."
|
1879 |
msgstr "Business Directory instellingen"
|
1880 |
|
1881 |
+
#: includes/licensing.php:767
|
1882 |
msgid "Review license keys"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
+
#: includes/licensing.php:882
|
1886 |
msgid "Missing data. Please reload this page and try again."
|
1887 |
msgstr ""
|
1888 |
|
1889 |
+
#: includes/licensing.php:887
|
1890 |
msgid "Please enter a license key."
|
1891 |
msgstr ""
|
1892 |
|
3629 |
msgid "Attributes"
|
3630 |
msgstr "Veld attributen"
|
3631 |
|
3632 |
+
#: includes/admin/helpers/tables/class-fees-table.php:141
|
3633 |
msgctxt "fees admin"
|
3634 |
msgid "Edit"
|
3635 |
msgstr "Bewerk"
|
3636 |
|
3637 |
+
#: includes/admin/helpers/tables/class-fees-table.php:210
|
3638 |
#, fuzzy
|
3639 |
msgctxt "fees admin"
|
3640 |
msgid "Variable"
|
3641 |
msgstr "Uitzetten"
|
3642 |
|
3643 |
+
#: includes/admin/helpers/tables/class-fees-table.php:215
|
3644 |
#, fuzzy
|
3645 |
msgctxt "fees admin"
|
3646 |
msgid "%1$s + %2$s per category"
|
3647 |
msgstr "Categorie selectie"
|
3648 |
|
3649 |
+
#: includes/admin/helpers/tables/class-fees-table.php:234
|
3650 |
msgctxt "fees admin"
|
3651 |
msgid "Forever"
|
3652 |
msgstr "Altijd"
|
3653 |
|
3654 |
+
#: includes/admin/helpers/tables/class-fees-table.php:236
|
3655 |
msgctxt "fees admin"
|
3656 |
msgid "%d day"
|
3657 |
msgid_plural "%d days"
|
3658 |
msgstr[0] "%d dag"
|
3659 |
msgstr[1] "%d dagen"
|
3660 |
|
3661 |
+
#: includes/admin/helpers/tables/class-fees-table.php:266
|
3662 |
msgctxt "fees admin"
|
3663 |
msgid "All categories"
|
3664 |
msgstr "Alle categorieën"
|
3665 |
|
3666 |
+
#: includes/admin/helpers/tables/class-fees-table.php:295
|
3667 |
msgctxt "fees admin"
|
3668 |
msgid "Sticky"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
3672 |
msgctxt "fees admin"
|
3673 |
msgid "Recurring"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
3677 |
#, fuzzy
|
3678 |
msgctxt "fees admin"
|
3679 |
msgid "Private"
|
6000 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6001 |
msgstr ""
|
6002 |
|
6003 |
+
#: includes/licensing.php:247
|
6004 |
#, fuzzy
|
6005 |
msgctxt "settings"
|
6006 |
msgid "Themes"
|
6007 |
msgstr "Thema's"
|
6008 |
|
6009 |
+
#: includes/licensing.php:318 includes/licensing.php:319
|
6010 |
msgctxt "settings"
|
6011 |
msgid "Please wait..."
|
6012 |
msgstr ""
|
6013 |
|
6014 |
+
#: includes/licensing.php:319
|
6015 |
#, fuzzy
|
6016 |
msgctxt "settings"
|
6017 |
msgid "Deauthorize"
|
7944 |
msgid "General"
|
7945 |
msgstr "Algemeen"
|
7946 |
|
7947 |
+
#: includes/licensing.php:573
|
7948 |
msgctxt "licensing"
|
7949 |
msgid "Could not contact licensing server"
|
7950 |
msgstr ""
|
7951 |
|
7952 |
+
#: includes/licensing.php:586
|
7953 |
msgctxt "licensing"
|
7954 |
msgid ""
|
7955 |
"It was not possible to establish a connection with Business Directory's "
|
7956 |
"server. cURL was not found in your system"
|
7957 |
msgstr ""
|
7958 |
|
7959 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
7960 |
msgctxt "licensing"
|
7961 |
msgid ""
|
7962 |
"To ensure the security of our systems and adhere to industry best practices, "
|
7965 |
"1.0.1c)."
|
7966 |
msgstr ""
|
7967 |
|
7968 |
+
#: includes/licensing.php:590 includes/licensing.php:620
|
7969 |
msgctxt "licensing"
|
7970 |
msgid ""
|
7971 |
"Upgrading your system will not only allow you to communicate with Business "
|
7973 |
"services using the latest security standards."
|
7974 |
msgstr ""
|
7975 |
|
7976 |
+
#: includes/licensing.php:592
|
7977 |
msgctxt "licensing"
|
7978 |
msgid ""
|
7979 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7980 |
"Include this message if necessary"
|
7981 |
msgstr ""
|
7982 |
|
7983 |
+
#: includes/licensing.php:622
|
7984 |
msgctxt "licensing"
|
7985 |
msgid ""
|
7986 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7987 |
"Include this message if necessary."
|
7988 |
msgstr ""
|
7989 |
|
7990 |
+
#: includes/licensing.php:658
|
7991 |
msgctxt "licensing"
|
7992 |
msgid "The server returned a 403 Forbidden error."
|
7993 |
msgstr ""
|
7994 |
|
7995 |
+
#: includes/licensing.php:904
|
7996 |
msgctxt "licensing"
|
7997 |
msgid "Could not activate license: %s."
|
7998 |
msgstr ""
|
7999 |
|
8000 |
+
#: includes/licensing.php:909
|
8001 |
msgctxt "licensing"
|
8002 |
msgid "License activated"
|
8003 |
msgstr ""
|
8004 |
|
8005 |
+
#: includes/licensing.php:941
|
8006 |
msgctxt "licensing"
|
8007 |
msgid "Could not deactivate license: %s."
|
8008 |
msgstr ""
|
8009 |
|
8010 |
+
#: includes/licensing.php:943
|
8011 |
msgctxt "licensing"
|
8012 |
msgid "License deactivated"
|
8013 |
msgstr ""
|
8014 |
|
8015 |
#. translators: "<module-name>" version <version-number> is not...
|
8016 |
+
#: includes/licensing.php:1183
|
8017 |
msgctxt "deprecation"
|
8018 |
msgid ""
|
8019 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
languages/business-directory-plugin-pl_PL.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2022-02-
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: HomeSupport <admin@homesupport.pl>\n"
|
9 |
"Language-Team: HomeSupport\n"
|
@@ -115,7 +115,7 @@ msgstr "Pola formularza"
|
|
115 |
|
116 |
# @ WPBDM
|
117 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
118 |
-
#: includes/licensing.php:
|
119 |
#, fuzzy
|
120 |
msgid "Modules"
|
121 |
msgstr "Zainstalowane moduły"
|
@@ -502,7 +502,7 @@ msgstr "Dla czego odinstalowujesz Katalog Firm?"
|
|
502 |
|
503 |
# @ WPBDM
|
504 |
#: includes/admin/controllers/class-settings-admin.php:536
|
505 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
506 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
507 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
508 |
#: templates/admin/payments-note.tpl.php:14
|
@@ -566,7 +566,7 @@ msgstr "Zainstalowane "
|
|
566 |
|
567 |
# @ WPBDM
|
568 |
#: includes/admin/helpers/class-modules-list.php:187
|
569 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
570 |
#: templates/admin/themes-item.tpl.php:41
|
571 |
#, fuzzy
|
572 |
msgid "Active"
|
@@ -588,7 +588,7 @@ msgstr "Aktywacja Licencji"
|
|
588 |
|
589 |
# @ WPBDM
|
590 |
#: includes/admin/helpers/class-modules-list.php:235
|
591 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
592 |
#, fuzzy
|
593 |
msgid "Upgrade Now"
|
594 |
msgstr "Podnieś status do %s"
|
@@ -631,46 +631,46 @@ msgstr "Cena"
|
|
631 |
msgid "Listings"
|
632 |
msgstr "Oferty"
|
633 |
|
634 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
635 |
msgid "Disable"
|
636 |
msgstr ""
|
637 |
|
638 |
# @ WPBDM
|
639 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
640 |
#, fuzzy
|
641 |
msgid "Enable"
|
642 |
msgstr "Włączyć pasek sortowania?"
|
643 |
|
644 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
645 |
msgid "ID: %s"
|
646 |
msgstr ""
|
647 |
|
648 |
# @ WPBDM
|
649 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
650 |
#, fuzzy
|
651 |
msgid "Paid Plan"
|
652 |
msgstr "Zapłacone"
|
653 |
|
654 |
# @ WPBDM
|
655 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
656 |
#, fuzzy
|
657 |
msgid "Free Plan"
|
658 |
msgstr "Przejdź do \"Zarządzanie polami formularza\""
|
659 |
|
660 |
# @ form-fields api
|
661 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
662 |
#, fuzzy
|
663 |
msgid "%1$s for %2$s"
|
664 |
msgstr "%s (bez %s)"
|
665 |
|
666 |
# @ WPBDM
|
667 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
668 |
#, fuzzy
|
669 |
msgid "Disabled"
|
670 |
msgstr "Abonament usunięty "
|
671 |
|
672 |
# @ WPBDM
|
673 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
674 |
#: includes/helpers/functions/templates-ui.php:431
|
675 |
#, fuzzy
|
676 |
msgid "Default"
|
@@ -2090,82 +2090,82 @@ msgid "Manage Listings"
|
|
2090 |
msgstr "Zarządzaj ofertami płatnymi"
|
2091 |
|
2092 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
2093 |
-
#: includes/licensing.php:
|
2094 |
msgid ""
|
2095 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
2096 |
"get updates."
|
2097 |
msgstr ""
|
2098 |
|
2099 |
# @ WPBDM
|
2100 |
-
#: includes/licensing.php:
|
2101 |
#, fuzzy
|
2102 |
msgid "Licenses"
|
2103 |
msgstr "Licencje"
|
2104 |
|
2105 |
-
#: includes/licensing.php:
|
2106 |
msgid "Build more powerful directories"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
-
#: includes/licensing.php:
|
2110 |
msgid ""
|
2111 |
"Add category images, maps, filter by location, payment gateways, and more."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
# @ WPBDM
|
2115 |
-
#: includes/licensing.php:
|
2116 |
#, fuzzy
|
2117 |
msgid "Already purchased?"
|
2118 |
msgstr "Już zainstalowano."
|
2119 |
|
2120 |
#. translators: %s: item type.
|
2121 |
-
#: includes/licensing.php:
|
2122 |
msgid "%s will not get updates until license is reauthorized."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
# @ WPBDM
|
2126 |
-
#: includes/licensing.php:
|
2127 |
#, fuzzy
|
2128 |
msgid "Enter License Key here"
|
2129 |
msgstr "Odśwież Klucz Licencji"
|
2130 |
|
2131 |
# @ authorize-net
|
2132 |
-
#: includes/licensing.php:
|
2133 |
#, fuzzy
|
2134 |
msgid "Authorize"
|
2135 |
msgstr "Aktywować Authorize.net?"
|
2136 |
|
2137 |
# @ WPBDM
|
2138 |
-
#: includes/licensing.php:
|
2139 |
#, fuzzy
|
2140 |
msgid "Invalid item ID"
|
2141 |
msgstr "Niewłaściwe ID Pola"
|
2142 |
|
2143 |
# @ WPBDM
|
2144 |
-
#: includes/licensing.php:
|
2145 |
#, fuzzy
|
2146 |
msgid "No license key provided"
|
2147 |
msgstr "Nie wprowadzono klucz licencji"
|
2148 |
|
2149 |
# @ WPBDM
|
2150 |
-
#: includes/licensing.php:
|
2151 |
#, fuzzy
|
2152 |
msgid "License key is invalid"
|
2153 |
msgstr "Niewłaściwy Klucz Licencji"
|
2154 |
|
2155 |
# @ WPBDM
|
2156 |
-
#: includes/licensing.php:
|
2157 |
#, fuzzy
|
2158 |
msgid "Deactivation failed"
|
2159 |
msgstr "Błąd Deaktywacji"
|
2160 |
|
2161 |
# @ WPBDM
|
2162 |
-
#: includes/licensing.php:
|
2163 |
#, fuzzy
|
2164 |
msgid "The license key was revoked."
|
2165 |
msgstr "Nie wprowadzono klucz licencji"
|
2166 |
|
2167 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
2168 |
-
#: includes/licensing.php:
|
2169 |
msgid ""
|
2170 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
2171 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -2173,19 +2173,19 @@ msgid ""
|
|
2173 |
"with your report."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#: includes/licensing.php:
|
2177 |
msgid ""
|
2178 |
"It was not possible to establish a connection with the Business Directory "
|
2179 |
"server. The connection failed with the following error:"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: includes/licensing.php:
|
2183 |
msgid ""
|
2184 |
"It was not possible to establish a connection with the Business Directory "
|
2185 |
"server. A problem occurred in the SSL/TSL handshake:"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: includes/licensing.php:
|
2189 |
msgid ""
|
2190 |
"It looks like your server is not authorized to make outgoing requests to "
|
2191 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
@@ -2193,35 +2193,35 @@ msgid ""
|
|
2193 |
msgstr ""
|
2194 |
|
2195 |
# @ WPBDM
|
2196 |
-
#: includes/licensing.php:
|
2197 |
#, fuzzy
|
2198 |
msgid "Business Directory license key is missing."
|
2199 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2200 |
|
2201 |
# @ WPBDM
|
2202 |
-
#: includes/licensing.php:
|
2203 |
#, fuzzy
|
2204 |
msgid "Business Directory license key has expired"
|
2205 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2206 |
|
2207 |
# @ WPBDM
|
2208 |
-
#: includes/licensing.php:
|
2209 |
#, fuzzy
|
2210 |
msgid "Could not verify Business Directory license."
|
2211 |
msgstr "Pomóż doskonalić Katalog Firm"
|
2212 |
|
2213 |
# @ WPBDM
|
2214 |
-
#: includes/licensing.php:
|
2215 |
#, fuzzy
|
2216 |
msgid "Review license keys"
|
2217 |
msgstr "Odśwież Klucz Licencji"
|
2218 |
|
2219 |
-
#: includes/licensing.php:
|
2220 |
msgid "Missing data. Please reload this page and try again."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
# @ WPBDM
|
2224 |
-
#: includes/licensing.php:
|
2225 |
#, fuzzy
|
2226 |
msgid "Please enter a license key."
|
2227 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
@@ -4333,31 +4333,31 @@ msgid "Attributes"
|
|
4333 |
msgstr "Atrybuty pola"
|
4334 |
|
4335 |
# @ WPBDM
|
4336 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4337 |
msgctxt "fees admin"
|
4338 |
msgid "Edit"
|
4339 |
msgstr "Edytuj"
|
4340 |
|
4341 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4342 |
msgctxt "fees admin"
|
4343 |
msgid "Variable"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
# @ WPBDM
|
4347 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4348 |
#, fuzzy
|
4349 |
msgctxt "fees admin"
|
4350 |
msgid "%1$s + %2$s per category"
|
4351 |
msgstr "Abonament \"%s\" dla kategorii \"%s\""
|
4352 |
|
4353 |
# @ WPBDM
|
4354 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4355 |
msgctxt "fees admin"
|
4356 |
msgid "Forever"
|
4357 |
msgstr "Na zawsze"
|
4358 |
|
4359 |
# @ WPBDM
|
4360 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4361 |
msgctxt "fees admin"
|
4362 |
msgid "%d day"
|
4363 |
msgid_plural "%d days"
|
@@ -4366,25 +4366,25 @@ msgstr[1] "%d dni"
|
|
4366 |
msgstr[2] "%d dni"
|
4367 |
|
4368 |
# @ WPBDM
|
4369 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4370 |
msgctxt "fees admin"
|
4371 |
msgid "All categories"
|
4372 |
msgstr "Wszystkie Kategorie"
|
4373 |
|
4374 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4375 |
msgctxt "fees admin"
|
4376 |
msgid "Sticky"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
# @ WPBDM
|
4380 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4381 |
#, fuzzy
|
4382 |
msgctxt "fees admin"
|
4383 |
msgid "Recurring"
|
4384 |
msgstr "(powtarzające się)"
|
4385 |
|
4386 |
# @ WPBDM
|
4387 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
4388 |
#, fuzzy
|
4389 |
msgctxt "fees admin"
|
4390 |
msgid "Private"
|
@@ -7064,18 +7064,18 @@ msgctxt "settings"
|
|
7064 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
7065 |
msgstr ""
|
7066 |
|
7067 |
-
#: includes/licensing.php:
|
7068 |
msgctxt "settings"
|
7069 |
msgid "Themes"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
-
#: includes/licensing.php:
|
7073 |
msgctxt "settings"
|
7074 |
msgid "Please wait..."
|
7075 |
msgstr ""
|
7076 |
|
7077 |
# @ authorize-net
|
7078 |
-
#: includes/licensing.php:
|
7079 |
#, fuzzy
|
7080 |
msgctxt "settings"
|
7081 |
msgid "Deauthorize"
|
@@ -9386,19 +9386,19 @@ msgid "General"
|
|
9386 |
msgstr "Główna"
|
9387 |
|
9388 |
# @ WPBDM
|
9389 |
-
#: includes/licensing.php:
|
9390 |
msgctxt "licensing"
|
9391 |
msgid "Could not contact licensing server"
|
9392 |
msgstr "Nie można połączyć z serwerem danych licencji"
|
9393 |
|
9394 |
-
#: includes/licensing.php:
|
9395 |
msgctxt "licensing"
|
9396 |
msgid ""
|
9397 |
"It was not possible to establish a connection with Business Directory's "
|
9398 |
"server. cURL was not found in your system"
|
9399 |
msgstr ""
|
9400 |
|
9401 |
-
#: includes/licensing.php:
|
9402 |
msgctxt "licensing"
|
9403 |
msgid ""
|
9404 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -9407,7 +9407,7 @@ msgid ""
|
|
9407 |
"1.0.1c)."
|
9408 |
msgstr ""
|
9409 |
|
9410 |
-
#: includes/licensing.php:
|
9411 |
msgctxt "licensing"
|
9412 |
msgid ""
|
9413 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -9415,51 +9415,51 @@ msgid ""
|
|
9415 |
"services using the latest security standards."
|
9416 |
msgstr ""
|
9417 |
|
9418 |
-
#: includes/licensing.php:
|
9419 |
msgctxt "licensing"
|
9420 |
msgid ""
|
9421 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
9422 |
"Include this message if necessary"
|
9423 |
msgstr ""
|
9424 |
|
9425 |
-
#: includes/licensing.php:
|
9426 |
msgctxt "licensing"
|
9427 |
msgid ""
|
9428 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
9429 |
"Include this message if necessary."
|
9430 |
msgstr ""
|
9431 |
|
9432 |
-
#: includes/licensing.php:
|
9433 |
msgctxt "licensing"
|
9434 |
msgid "The server returned a 403 Forbidden error."
|
9435 |
msgstr ""
|
9436 |
|
9437 |
# @ WPBDM
|
9438 |
-
#: includes/licensing.php:
|
9439 |
msgctxt "licensing"
|
9440 |
msgid "Could not activate license: %s."
|
9441 |
msgstr "Nie możemy aktywować Licencji: %s."
|
9442 |
|
9443 |
# @ WPBDM
|
9444 |
-
#: includes/licensing.php:
|
9445 |
msgctxt "licensing"
|
9446 |
msgid "License activated"
|
9447 |
msgstr "Licencja została aktywowana"
|
9448 |
|
9449 |
# @ WPBDM
|
9450 |
-
#: includes/licensing.php:
|
9451 |
msgctxt "licensing"
|
9452 |
msgid "Could not deactivate license: %s."
|
9453 |
msgstr "Nie możemy deaktywować Licencji: %s."
|
9454 |
|
9455 |
# @ WPBDM
|
9456 |
-
#: includes/licensing.php:
|
9457 |
msgctxt "licensing"
|
9458 |
msgid "License deactivated"
|
9459 |
msgstr "Licencja deaktywowana"
|
9460 |
|
9461 |
#. translators: "<module-name>" version <version-number> is not...
|
9462 |
-
#: includes/licensing.php:
|
9463 |
msgctxt "deprecation"
|
9464 |
msgid ""
|
9465 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2022-02-03 21:01:26+00:00\n"
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: HomeSupport <admin@homesupport.pl>\n"
|
9 |
"Language-Team: HomeSupport\n"
|
115 |
|
116 |
# @ WPBDM
|
117 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
118 |
+
#: includes/licensing.php:229
|
119 |
#, fuzzy
|
120 |
msgid "Modules"
|
121 |
msgstr "Zainstalowane moduły"
|
502 |
|
503 |
# @ WPBDM
|
504 |
#: includes/admin/controllers/class-settings-admin.php:536
|
505 |
+
#: includes/admin/helpers/tables/class-fees-table.php:177
|
506 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
507 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
508 |
#: templates/admin/payments-note.tpl.php:14
|
566 |
|
567 |
# @ WPBDM
|
568 |
#: includes/admin/helpers/class-modules-list.php:187
|
569 |
+
#: includes/admin/helpers/tables/class-fees-table.php:287
|
570 |
#: templates/admin/themes-item.tpl.php:41
|
571 |
#, fuzzy
|
572 |
msgid "Active"
|
588 |
|
589 |
# @ WPBDM
|
590 |
#: includes/admin/helpers/class-modules-list.php:235
|
591 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:277
|
592 |
#, fuzzy
|
593 |
msgid "Upgrade Now"
|
594 |
msgstr "Podnieś status do %s"
|
631 |
msgid "Listings"
|
632 |
msgstr "Oferty"
|
633 |
|
634 |
+
#: includes/admin/helpers/tables/class-fees-table.php:156
|
635 |
msgid "Disable"
|
636 |
msgstr ""
|
637 |
|
638 |
# @ WPBDM
|
639 |
+
#: includes/admin/helpers/tables/class-fees-table.php:162
|
640 |
#, fuzzy
|
641 |
msgid "Enable"
|
642 |
msgstr "Włączyć pasek sortowania?"
|
643 |
|
644 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
645 |
msgid "ID: %s"
|
646 |
msgstr ""
|
647 |
|
648 |
# @ WPBDM
|
649 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
650 |
#, fuzzy
|
651 |
msgid "Paid Plan"
|
652 |
msgstr "Zapłacone"
|
653 |
|
654 |
# @ WPBDM
|
655 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
656 |
#, fuzzy
|
657 |
msgid "Free Plan"
|
658 |
msgstr "Przejdź do \"Zarządzanie polami formularza\""
|
659 |
|
660 |
# @ form-fields api
|
661 |
+
#: includes/admin/helpers/tables/class-fees-table.php:222
|
662 |
#, fuzzy
|
663 |
msgid "%1$s for %2$s"
|
664 |
msgstr "%s (bez %s)"
|
665 |
|
666 |
# @ WPBDM
|
667 |
+
#: includes/admin/helpers/tables/class-fees-table.php:285
|
668 |
#, fuzzy
|
669 |
msgid "Disabled"
|
670 |
msgstr "Abonament usunięty "
|
671 |
|
672 |
# @ WPBDM
|
673 |
+
#: includes/admin/helpers/tables/class-fees-table.php:291
|
674 |
#: includes/helpers/functions/templates-ui.php:431
|
675 |
#, fuzzy
|
676 |
msgid "Default"
|
2090 |
msgstr "Zarządzaj ofertami płatnymi"
|
2091 |
|
2092 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
2093 |
+
#: includes/licensing.php:152
|
2094 |
msgid ""
|
2095 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
2096 |
"get updates."
|
2097 |
msgstr ""
|
2098 |
|
2099 |
# @ WPBDM
|
2100 |
+
#: includes/licensing.php:205 includes/licensing.php:208
|
2101 |
#, fuzzy
|
2102 |
msgid "Licenses"
|
2103 |
msgstr "Licencje"
|
2104 |
|
2105 |
+
#: includes/licensing.php:275
|
2106 |
msgid "Build more powerful directories"
|
2107 |
msgstr ""
|
2108 |
|
2109 |
+
#: includes/licensing.php:276
|
2110 |
msgid ""
|
2111 |
"Add category images, maps, filter by location, payment gateways, and more."
|
2112 |
msgstr ""
|
2113 |
|
2114 |
# @ WPBDM
|
2115 |
+
#: includes/licensing.php:278
|
2116 |
#, fuzzy
|
2117 |
msgid "Already purchased?"
|
2118 |
msgstr "Już zainstalowano."
|
2119 |
|
2120 |
#. translators: %s: item type.
|
2121 |
+
#: includes/licensing.php:296
|
2122 |
msgid "%s will not get updates until license is reauthorized."
|
2123 |
msgstr ""
|
2124 |
|
2125 |
# @ WPBDM
|
2126 |
+
#: includes/licensing.php:317
|
2127 |
#, fuzzy
|
2128 |
msgid "Enter License Key here"
|
2129 |
msgstr "Odśwież Klucz Licencji"
|
2130 |
|
2131 |
# @ authorize-net
|
2132 |
+
#: includes/licensing.php:318
|
2133 |
#, fuzzy
|
2134 |
msgid "Authorize"
|
2135 |
msgstr "Aktywować Authorize.net?"
|
2136 |
|
2137 |
# @ WPBDM
|
2138 |
+
#: includes/licensing.php:422
|
2139 |
#, fuzzy
|
2140 |
msgid "Invalid item ID"
|
2141 |
msgstr "Niewłaściwe ID Pola"
|
2142 |
|
2143 |
# @ WPBDM
|
2144 |
+
#: includes/licensing.php:435
|
2145 |
#, fuzzy
|
2146 |
msgid "No license key provided"
|
2147 |
msgstr "Nie wprowadzono klucz licencji"
|
2148 |
|
2149 |
# @ WPBDM
|
2150 |
+
#: includes/licensing.php:484 includes/licensing.php:522
|
2151 |
#, fuzzy
|
2152 |
msgid "License key is invalid"
|
2153 |
msgstr "Niewłaściwy Klucz Licencji"
|
2154 |
|
2155 |
# @ WPBDM
|
2156 |
+
#: includes/licensing.php:488
|
2157 |
#, fuzzy
|
2158 |
msgid "Deactivation failed"
|
2159 |
msgstr "Błąd Deaktywacji"
|
2160 |
|
2161 |
# @ WPBDM
|
2162 |
+
#: includes/licensing.php:533
|
2163 |
#, fuzzy
|
2164 |
msgid "The license key was revoked."
|
2165 |
msgstr "Nie wprowadzono klucz licencji"
|
2166 |
|
2167 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
2168 |
+
#: includes/licensing.php:537
|
2169 |
msgid ""
|
2170 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
2171 |
"%2$s and let them know your license is being reported as revoked by the "
|
2173 |
"with your report."
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: includes/licensing.php:600
|
2177 |
msgid ""
|
2178 |
"It was not possible to establish a connection with the Business Directory "
|
2179 |
"server. The connection failed with the following error:"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
+
#: includes/licensing.php:613
|
2183 |
msgid ""
|
2184 |
"It was not possible to establish a connection with the Business Directory "
|
2185 |
"server. A problem occurred in the SSL/TSL handshake:"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: includes/licensing.php:660
|
2189 |
msgid ""
|
2190 |
"It looks like your server is not authorized to make outgoing requests to "
|
2191 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
2193 |
msgstr ""
|
2194 |
|
2195 |
# @ WPBDM
|
2196 |
+
#: includes/licensing.php:754
|
2197 |
#, fuzzy
|
2198 |
msgid "Business Directory license key is missing."
|
2199 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2200 |
|
2201 |
# @ WPBDM
|
2202 |
+
#: includes/licensing.php:755
|
2203 |
#, fuzzy
|
2204 |
msgid "Business Directory license key has expired"
|
2205 |
msgstr "Katalog firm - wygasł Klucz Licencji"
|
2206 |
|
2207 |
# @ WPBDM
|
2208 |
+
#: includes/licensing.php:756
|
2209 |
#, fuzzy
|
2210 |
msgid "Could not verify Business Directory license."
|
2211 |
msgstr "Pomóż doskonalić Katalog Firm"
|
2212 |
|
2213 |
# @ WPBDM
|
2214 |
+
#: includes/licensing.php:767
|
2215 |
#, fuzzy
|
2216 |
msgid "Review license keys"
|
2217 |
msgstr "Odśwież Klucz Licencji"
|
2218 |
|
2219 |
+
#: includes/licensing.php:882
|
2220 |
msgid "Missing data. Please reload this page and try again."
|
2221 |
msgstr ""
|
2222 |
|
2223 |
# @ WPBDM
|
2224 |
+
#: includes/licensing.php:887
|
2225 |
#, fuzzy
|
2226 |
msgid "Please enter a license key."
|
2227 |
msgstr "Proszę wprowadzić poprawny adres e-mail."
|
4333 |
msgstr "Atrybuty pola"
|
4334 |
|
4335 |
# @ WPBDM
|
4336 |
+
#: includes/admin/helpers/tables/class-fees-table.php:141
|
4337 |
msgctxt "fees admin"
|
4338 |
msgid "Edit"
|
4339 |
msgstr "Edytuj"
|
4340 |
|
4341 |
+
#: includes/admin/helpers/tables/class-fees-table.php:210
|
4342 |
msgctxt "fees admin"
|
4343 |
msgid "Variable"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
# @ WPBDM
|
4347 |
+
#: includes/admin/helpers/tables/class-fees-table.php:215
|
4348 |
#, fuzzy
|
4349 |
msgctxt "fees admin"
|
4350 |
msgid "%1$s + %2$s per category"
|
4351 |
msgstr "Abonament \"%s\" dla kategorii \"%s\""
|
4352 |
|
4353 |
# @ WPBDM
|
4354 |
+
#: includes/admin/helpers/tables/class-fees-table.php:234
|
4355 |
msgctxt "fees admin"
|
4356 |
msgid "Forever"
|
4357 |
msgstr "Na zawsze"
|
4358 |
|
4359 |
# @ WPBDM
|
4360 |
+
#: includes/admin/helpers/tables/class-fees-table.php:236
|
4361 |
msgctxt "fees admin"
|
4362 |
msgid "%d day"
|
4363 |
msgid_plural "%d days"
|
4366 |
msgstr[2] "%d dni"
|
4367 |
|
4368 |
# @ WPBDM
|
4369 |
+
#: includes/admin/helpers/tables/class-fees-table.php:266
|
4370 |
msgctxt "fees admin"
|
4371 |
msgid "All categories"
|
4372 |
msgstr "Wszystkie Kategorie"
|
4373 |
|
4374 |
+
#: includes/admin/helpers/tables/class-fees-table.php:295
|
4375 |
msgctxt "fees admin"
|
4376 |
msgid "Sticky"
|
4377 |
msgstr ""
|
4378 |
|
4379 |
# @ WPBDM
|
4380 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
4381 |
#, fuzzy
|
4382 |
msgctxt "fees admin"
|
4383 |
msgid "Recurring"
|
4384 |
msgstr "(powtarzające się)"
|
4385 |
|
4386 |
# @ WPBDM
|
4387 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
4388 |
#, fuzzy
|
4389 |
msgctxt "fees admin"
|
4390 |
msgid "Private"
|
7064 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
7065 |
msgstr ""
|
7066 |
|
7067 |
+
#: includes/licensing.php:247
|
7068 |
msgctxt "settings"
|
7069 |
msgid "Themes"
|
7070 |
msgstr ""
|
7071 |
|
7072 |
+
#: includes/licensing.php:318 includes/licensing.php:319
|
7073 |
msgctxt "settings"
|
7074 |
msgid "Please wait..."
|
7075 |
msgstr ""
|
7076 |
|
7077 |
# @ authorize-net
|
7078 |
+
#: includes/licensing.php:319
|
7079 |
#, fuzzy
|
7080 |
msgctxt "settings"
|
7081 |
msgid "Deauthorize"
|
9386 |
msgstr "Główna"
|
9387 |
|
9388 |
# @ WPBDM
|
9389 |
+
#: includes/licensing.php:573
|
9390 |
msgctxt "licensing"
|
9391 |
msgid "Could not contact licensing server"
|
9392 |
msgstr "Nie można połączyć z serwerem danych licencji"
|
9393 |
|
9394 |
+
#: includes/licensing.php:586
|
9395 |
msgctxt "licensing"
|
9396 |
msgid ""
|
9397 |
"It was not possible to establish a connection with Business Directory's "
|
9398 |
"server. cURL was not found in your system"
|
9399 |
msgstr ""
|
9400 |
|
9401 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
9402 |
msgctxt "licensing"
|
9403 |
msgid ""
|
9404 |
"To ensure the security of our systems and adhere to industry best practices, "
|
9407 |
"1.0.1c)."
|
9408 |
msgstr ""
|
9409 |
|
9410 |
+
#: includes/licensing.php:590 includes/licensing.php:620
|
9411 |
msgctxt "licensing"
|
9412 |
msgid ""
|
9413 |
"Upgrading your system will not only allow you to communicate with Business "
|
9415 |
"services using the latest security standards."
|
9416 |
msgstr ""
|
9417 |
|
9418 |
+
#: includes/licensing.php:592
|
9419 |
msgctxt "licensing"
|
9420 |
msgid ""
|
9421 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
9422 |
"Include this message if necessary"
|
9423 |
msgstr ""
|
9424 |
|
9425 |
+
#: includes/licensing.php:622
|
9426 |
msgctxt "licensing"
|
9427 |
msgid ""
|
9428 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
9429 |
"Include this message if necessary."
|
9430 |
msgstr ""
|
9431 |
|
9432 |
+
#: includes/licensing.php:658
|
9433 |
msgctxt "licensing"
|
9434 |
msgid "The server returned a 403 Forbidden error."
|
9435 |
msgstr ""
|
9436 |
|
9437 |
# @ WPBDM
|
9438 |
+
#: includes/licensing.php:904
|
9439 |
msgctxt "licensing"
|
9440 |
msgid "Could not activate license: %s."
|
9441 |
msgstr "Nie możemy aktywować Licencji: %s."
|
9442 |
|
9443 |
# @ WPBDM
|
9444 |
+
#: includes/licensing.php:909
|
9445 |
msgctxt "licensing"
|
9446 |
msgid "License activated"
|
9447 |
msgstr "Licencja została aktywowana"
|
9448 |
|
9449 |
# @ WPBDM
|
9450 |
+
#: includes/licensing.php:941
|
9451 |
msgctxt "licensing"
|
9452 |
msgid "Could not deactivate license: %s."
|
9453 |
msgstr "Nie możemy deaktywować Licencji: %s."
|
9454 |
|
9455 |
# @ WPBDM
|
9456 |
+
#: includes/licensing.php:943
|
9457 |
msgctxt "licensing"
|
9458 |
msgid "License deactivated"
|
9459 |
msgstr "Licencja deaktywowana"
|
9460 |
|
9461 |
#. translators: "<module-name>" version <version-number> is not...
|
9462 |
+
#: includes/licensing.php:1183
|
9463 |
msgctxt "deprecation"
|
9464 |
msgid ""
|
9465 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
languages/business-directory-plugin-ru_RU.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
-
"POT-Creation-Date: 2022-02-
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
|
9 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
@@ -108,7 +108,7 @@ msgid "Form Fields"
|
|
108 |
msgstr "поля формы"
|
109 |
|
110 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
111 |
-
#: includes/licensing.php:
|
112 |
#, fuzzy
|
113 |
msgid "Modules"
|
114 |
msgstr "Установленные модули:"
|
@@ -448,7 +448,7 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
448 |
msgstr "Вопрос: Почему Вы решили удалить плагин \"Справочник Услуг\"?"
|
449 |
|
450 |
#: includes/admin/controllers/class-settings-admin.php:536
|
451 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
452 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
453 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
454 |
#: templates/admin/payments-note.tpl.php:14
|
@@ -506,7 +506,7 @@ msgid "Installed"
|
|
506 |
msgstr "Установлен"
|
507 |
|
508 |
#: includes/admin/helpers/class-modules-list.php:187
|
509 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
510 |
#: templates/admin/themes-item.tpl.php:41
|
511 |
#, fuzzy
|
512 |
msgid "Active"
|
@@ -525,7 +525,7 @@ msgid "Activate"
|
|
525 |
msgstr "Активировать"
|
526 |
|
527 |
#: includes/admin/helpers/class-modules-list.php:235
|
528 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
529 |
#, fuzzy
|
530 |
msgid "Upgrade Now"
|
531 |
msgstr "Поднять статус до %s"
|
@@ -562,40 +562,40 @@ msgstr "Цена"
|
|
562 |
msgid "Listings"
|
563 |
msgstr "Записи"
|
564 |
|
565 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
566 |
msgid "Disable"
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
570 |
#, fuzzy
|
571 |
msgid "Enable"
|
572 |
msgstr "Показать строку сортировки?"
|
573 |
|
574 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
575 |
msgid "ID: %s"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
579 |
#, fuzzy
|
580 |
msgid "Paid Plan"
|
581 |
msgstr "Оплачено"
|
582 |
|
583 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
584 |
#, fuzzy
|
585 |
msgid "Free Plan"
|
586 |
msgstr "Перейти в раздел \"Управление / Форма\""
|
587 |
|
588 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
589 |
#, fuzzy
|
590 |
msgid "%1$s for %2$s"
|
591 |
msgstr "%s (например %s)"
|
592 |
|
593 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
594 |
#, fuzzy
|
595 |
msgid "Disabled"
|
596 |
msgstr "Тариф удалён."
|
597 |
|
598 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
599 |
#: includes/helpers/functions/templates-ui.php:431
|
600 |
#, fuzzy
|
601 |
msgid "Default"
|
@@ -1857,73 +1857,73 @@ msgid "Manage Listings"
|
|
1857 |
msgstr "Платные записи"
|
1858 |
|
1859 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1860 |
-
#: includes/licensing.php:
|
1861 |
msgid ""
|
1862 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1863 |
"get updates."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: includes/licensing.php:
|
1867 |
#, fuzzy
|
1868 |
msgid "Licenses"
|
1869 |
msgstr "Лицензии"
|
1870 |
|
1871 |
-
#: includes/licensing.php:
|
1872 |
msgid "Build more powerful directories"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: includes/licensing.php:
|
1876 |
msgid ""
|
1877 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: includes/licensing.php:
|
1881 |
#, fuzzy
|
1882 |
msgid "Already purchased?"
|
1883 |
msgstr "Уже устновлен."
|
1884 |
|
1885 |
#. translators: %s: item type.
|
1886 |
-
#: includes/licensing.php:
|
1887 |
msgid "%s will not get updates until license is reauthorized."
|
1888 |
msgstr ""
|
1889 |
|
1890 |
-
#: includes/licensing.php:
|
1891 |
#, fuzzy
|
1892 |
msgid "Enter License Key here"
|
1893 |
msgstr "Обновить лицензионный ключ"
|
1894 |
|
1895 |
-
#: includes/licensing.php:
|
1896 |
#, fuzzy
|
1897 |
msgid "Authorize"
|
1898 |
msgstr "Активировать шлюз Authorize.net?"
|
1899 |
|
1900 |
-
#: includes/licensing.php:
|
1901 |
#, fuzzy
|
1902 |
msgid "Invalid item ID"
|
1903 |
msgstr "Некорректный номер поля"
|
1904 |
|
1905 |
-
#: includes/licensing.php:
|
1906 |
#, fuzzy
|
1907 |
msgid "No license key provided"
|
1908 |
msgstr "Не указан лицензионный ключ"
|
1909 |
|
1910 |
-
#: includes/licensing.php:
|
1911 |
#, fuzzy
|
1912 |
msgid "License key is invalid"
|
1913 |
msgstr "Лицензионный ключ не правильный"
|
1914 |
|
1915 |
-
#: includes/licensing.php:
|
1916 |
#, fuzzy
|
1917 |
msgid "Deactivation failed"
|
1918 |
msgstr "Деактивация не удалась"
|
1919 |
|
1920 |
-
#: includes/licensing.php:
|
1921 |
#, fuzzy
|
1922 |
msgid "The license key was revoked."
|
1923 |
msgstr "Не указан лицензионный ключ"
|
1924 |
|
1925 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1926 |
-
#: includes/licensing.php:
|
1927 |
msgid ""
|
1928 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1929 |
"%2$s and let them know your license is being reported as revoked by the "
|
@@ -1931,50 +1931,50 @@ msgid ""
|
|
1931 |
"with your report."
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: includes/licensing.php:
|
1935 |
msgid ""
|
1936 |
"It was not possible to establish a connection with the Business Directory "
|
1937 |
"server. The connection failed with the following error:"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
#: includes/licensing.php:
|
1941 |
msgid ""
|
1942 |
"It was not possible to establish a connection with the Business Directory "
|
1943 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: includes/licensing.php:
|
1947 |
msgid ""
|
1948 |
"It looks like your server is not authorized to make outgoing requests to "
|
1949 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1950 |
"our IP address 52.0.78.177 to your allow list."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: includes/licensing.php:
|
1954 |
#, fuzzy
|
1955 |
msgid "Business Directory license key is missing."
|
1956 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
1957 |
|
1958 |
-
#: includes/licensing.php:
|
1959 |
#, fuzzy
|
1960 |
msgid "Business Directory license key has expired"
|
1961 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
1962 |
|
1963 |
-
#: includes/licensing.php:
|
1964 |
#, fuzzy
|
1965 |
msgid "Could not verify Business Directory license."
|
1966 |
msgstr "Помогите нам улучшить Справочник Услуг"
|
1967 |
|
1968 |
-
#: includes/licensing.php:
|
1969 |
#, fuzzy
|
1970 |
msgid "Review license keys"
|
1971 |
msgstr "Обновить лицензионный ключ"
|
1972 |
|
1973 |
-
#: includes/licensing.php:
|
1974 |
msgid "Missing data. Please reload this page and try again."
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: includes/licensing.php:
|
1978 |
#, fuzzy
|
1979 |
msgid "Please enter a license key."
|
1980 |
msgstr "Пожалуйста введите правильный электронный адрес."
|
@@ -3837,28 +3837,28 @@ msgctxt "fees admin"
|
|
3837 |
msgid "Attributes"
|
3838 |
msgstr "Атрибуты"
|
3839 |
|
3840 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3841 |
msgctxt "fees admin"
|
3842 |
msgid "Edit"
|
3843 |
msgstr "Изменить"
|
3844 |
|
3845 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3846 |
msgctxt "fees admin"
|
3847 |
msgid "Variable"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3851 |
#, fuzzy
|
3852 |
msgctxt "fees admin"
|
3853 |
msgid "%1$s + %2$s per category"
|
3854 |
msgstr "Тариф \"%s\" для рубрики \"%s\""
|
3855 |
|
3856 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3857 |
msgctxt "fees admin"
|
3858 |
msgid "Forever"
|
3859 |
msgstr "Вечно"
|
3860 |
|
3861 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3862 |
msgctxt "fees admin"
|
3863 |
msgid "%d day"
|
3864 |
msgid_plural "%d days"
|
@@ -3866,24 +3866,24 @@ msgstr[0] "%d день"
|
|
3866 |
msgstr[1] "%d дней"
|
3867 |
msgstr[2] ""
|
3868 |
|
3869 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3870 |
msgctxt "fees admin"
|
3871 |
msgid "All categories"
|
3872 |
msgstr "Все рубрики"
|
3873 |
|
3874 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3875 |
#, fuzzy
|
3876 |
msgctxt "fees admin"
|
3877 |
msgid "Sticky"
|
3878 |
msgstr "Специальная?"
|
3879 |
|
3880 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3881 |
#, fuzzy
|
3882 |
msgctxt "fees admin"
|
3883 |
msgid "Recurring"
|
3884 |
msgstr "(периодически)"
|
3885 |
|
3886 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3887 |
#, fuzzy
|
3888 |
msgctxt "fees admin"
|
3889 |
msgid "Private"
|
@@ -6298,18 +6298,18 @@ msgctxt "settings"
|
|
6298 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6299 |
msgstr ""
|
6300 |
|
6301 |
-
#: includes/licensing.php:
|
6302 |
#, fuzzy
|
6303 |
msgctxt "settings"
|
6304 |
msgid "Themes"
|
6305 |
msgstr "Темы"
|
6306 |
|
6307 |
-
#: includes/licensing.php:
|
6308 |
msgctxt "settings"
|
6309 |
msgid "Please wait..."
|
6310 |
msgstr ""
|
6311 |
|
6312 |
-
#: includes/licensing.php:
|
6313 |
#, fuzzy
|
6314 |
msgctxt "settings"
|
6315 |
msgid "Deauthorize"
|
@@ -8363,19 +8363,19 @@ msgctxt "default category name"
|
|
8363 |
msgid "General"
|
8364 |
msgstr "Основное"
|
8365 |
|
8366 |
-
#: includes/licensing.php:
|
8367 |
msgctxt "licensing"
|
8368 |
msgid "Could not contact licensing server"
|
8369 |
msgstr "Не удалось связаться с сервером лицензий"
|
8370 |
|
8371 |
-
#: includes/licensing.php:
|
8372 |
msgctxt "licensing"
|
8373 |
msgid ""
|
8374 |
"It was not possible to establish a connection with Business Directory's "
|
8375 |
"server. cURL was not found in your system"
|
8376 |
msgstr ""
|
8377 |
|
8378 |
-
#: includes/licensing.php:
|
8379 |
msgctxt "licensing"
|
8380 |
msgid ""
|
8381 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8384,7 +8384,7 @@ msgid ""
|
|
8384 |
"1.0.1c)."
|
8385 |
msgstr ""
|
8386 |
|
8387 |
-
#: includes/licensing.php:
|
8388 |
msgctxt "licensing"
|
8389 |
msgid ""
|
8390 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8392,47 +8392,47 @@ msgid ""
|
|
8392 |
"services using the latest security standards."
|
8393 |
msgstr ""
|
8394 |
|
8395 |
-
#: includes/licensing.php:
|
8396 |
msgctxt "licensing"
|
8397 |
msgid ""
|
8398 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8399 |
"Include this message if necessary"
|
8400 |
msgstr ""
|
8401 |
|
8402 |
-
#: includes/licensing.php:
|
8403 |
msgctxt "licensing"
|
8404 |
msgid ""
|
8405 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8406 |
"Include this message if necessary."
|
8407 |
msgstr ""
|
8408 |
|
8409 |
-
#: includes/licensing.php:
|
8410 |
msgctxt "licensing"
|
8411 |
msgid "The server returned a 403 Forbidden error."
|
8412 |
msgstr ""
|
8413 |
|
8414 |
-
#: includes/licensing.php:
|
8415 |
msgctxt "licensing"
|
8416 |
msgid "Could not activate license: %s."
|
8417 |
msgstr "Не удалось активировать лицензию: %s."
|
8418 |
|
8419 |
-
#: includes/licensing.php:
|
8420 |
msgctxt "licensing"
|
8421 |
msgid "License activated"
|
8422 |
msgstr "Лицензия активирована"
|
8423 |
|
8424 |
-
#: includes/licensing.php:
|
8425 |
msgctxt "licensing"
|
8426 |
msgid "Could not deactivate license: %s."
|
8427 |
msgstr "Не удалось деактивировать лицензию: %s."
|
8428 |
|
8429 |
-
#: includes/licensing.php:
|
8430 |
msgctxt "licensing"
|
8431 |
msgid "License deactivated"
|
8432 |
msgstr "Лицензия была деактивирована."
|
8433 |
|
8434 |
#. translators: "<module-name>" version <version-number> is not...
|
8435 |
-
#: includes/licensing.php:
|
8436 |
msgctxt "deprecation"
|
8437 |
msgid ""
|
8438 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
3 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
4 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
5 |
"directory-plugin\n"
|
6 |
+
"POT-Creation-Date: 2022-02-03 21:01:26+00:00\n"
|
7 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
8 |
"Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
|
9 |
"Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
|
108 |
msgstr "поля формы"
|
109 |
|
110 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
111 |
+
#: includes/licensing.php:229
|
112 |
#, fuzzy
|
113 |
msgid "Modules"
|
114 |
msgstr "Установленные модули:"
|
448 |
msgstr "Вопрос: Почему Вы решили удалить плагин \"Справочник Услуг\"?"
|
449 |
|
450 |
#: includes/admin/controllers/class-settings-admin.php:536
|
451 |
+
#: includes/admin/helpers/tables/class-fees-table.php:177
|
452 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
453 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
454 |
#: templates/admin/payments-note.tpl.php:14
|
506 |
msgstr "Установлен"
|
507 |
|
508 |
#: includes/admin/helpers/class-modules-list.php:187
|
509 |
+
#: includes/admin/helpers/tables/class-fees-table.php:287
|
510 |
#: templates/admin/themes-item.tpl.php:41
|
511 |
#, fuzzy
|
512 |
msgid "Active"
|
525 |
msgstr "Активировать"
|
526 |
|
527 |
#: includes/admin/helpers/class-modules-list.php:235
|
528 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:277
|
529 |
#, fuzzy
|
530 |
msgid "Upgrade Now"
|
531 |
msgstr "Поднять статус до %s"
|
562 |
msgid "Listings"
|
563 |
msgstr "Записи"
|
564 |
|
565 |
+
#: includes/admin/helpers/tables/class-fees-table.php:156
|
566 |
msgid "Disable"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: includes/admin/helpers/tables/class-fees-table.php:162
|
570 |
#, fuzzy
|
571 |
msgid "Enable"
|
572 |
msgstr "Показать строку сортировки?"
|
573 |
|
574 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
575 |
msgid "ID: %s"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
579 |
#, fuzzy
|
580 |
msgid "Paid Plan"
|
581 |
msgstr "Оплачено"
|
582 |
|
583 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
584 |
#, fuzzy
|
585 |
msgid "Free Plan"
|
586 |
msgstr "Перейти в раздел \"Управление / Форма\""
|
587 |
|
588 |
+
#: includes/admin/helpers/tables/class-fees-table.php:222
|
589 |
#, fuzzy
|
590 |
msgid "%1$s for %2$s"
|
591 |
msgstr "%s (например %s)"
|
592 |
|
593 |
+
#: includes/admin/helpers/tables/class-fees-table.php:285
|
594 |
#, fuzzy
|
595 |
msgid "Disabled"
|
596 |
msgstr "Тариф удалён."
|
597 |
|
598 |
+
#: includes/admin/helpers/tables/class-fees-table.php:291
|
599 |
#: includes/helpers/functions/templates-ui.php:431
|
600 |
#, fuzzy
|
601 |
msgid "Default"
|
1857 |
msgstr "Платные записи"
|
1858 |
|
1859 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1860 |
+
#: includes/licensing.php:152
|
1861 |
msgid ""
|
1862 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1863 |
"get updates."
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: includes/licensing.php:205 includes/licensing.php:208
|
1867 |
#, fuzzy
|
1868 |
msgid "Licenses"
|
1869 |
msgstr "Лицензии"
|
1870 |
|
1871 |
+
#: includes/licensing.php:275
|
1872 |
msgid "Build more powerful directories"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: includes/licensing.php:276
|
1876 |
msgid ""
|
1877 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1878 |
msgstr ""
|
1879 |
|
1880 |
+
#: includes/licensing.php:278
|
1881 |
#, fuzzy
|
1882 |
msgid "Already purchased?"
|
1883 |
msgstr "Уже устновлен."
|
1884 |
|
1885 |
#. translators: %s: item type.
|
1886 |
+
#: includes/licensing.php:296
|
1887 |
msgid "%s will not get updates until license is reauthorized."
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: includes/licensing.php:317
|
1891 |
#, fuzzy
|
1892 |
msgid "Enter License Key here"
|
1893 |
msgstr "Обновить лицензионный ключ"
|
1894 |
|
1895 |
+
#: includes/licensing.php:318
|
1896 |
#, fuzzy
|
1897 |
msgid "Authorize"
|
1898 |
msgstr "Активировать шлюз Authorize.net?"
|
1899 |
|
1900 |
+
#: includes/licensing.php:422
|
1901 |
#, fuzzy
|
1902 |
msgid "Invalid item ID"
|
1903 |
msgstr "Некорректный номер поля"
|
1904 |
|
1905 |
+
#: includes/licensing.php:435
|
1906 |
#, fuzzy
|
1907 |
msgid "No license key provided"
|
1908 |
msgstr "Не указан лицензионный ключ"
|
1909 |
|
1910 |
+
#: includes/licensing.php:484 includes/licensing.php:522
|
1911 |
#, fuzzy
|
1912 |
msgid "License key is invalid"
|
1913 |
msgstr "Лицензионный ключ не правильный"
|
1914 |
|
1915 |
+
#: includes/licensing.php:488
|
1916 |
#, fuzzy
|
1917 |
msgid "Deactivation failed"
|
1918 |
msgstr "Деактивация не удалась"
|
1919 |
|
1920 |
+
#: includes/licensing.php:533
|
1921 |
#, fuzzy
|
1922 |
msgid "The license key was revoked."
|
1923 |
msgstr "Не указан лицензионный ключ"
|
1924 |
|
1925 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1926 |
+
#: includes/licensing.php:537
|
1927 |
msgid ""
|
1928 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1929 |
"%2$s and let them know your license is being reported as revoked by the "
|
1931 |
"with your report."
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: includes/licensing.php:600
|
1935 |
msgid ""
|
1936 |
"It was not possible to establish a connection with the Business Directory "
|
1937 |
"server. The connection failed with the following error:"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
+
#: includes/licensing.php:613
|
1941 |
msgid ""
|
1942 |
"It was not possible to establish a connection with the Business Directory "
|
1943 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
+
#: includes/licensing.php:660
|
1947 |
msgid ""
|
1948 |
"It looks like your server is not authorized to make outgoing requests to "
|
1949 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1950 |
"our IP address 52.0.78.177 to your allow list."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
+
#: includes/licensing.php:754
|
1954 |
#, fuzzy
|
1955 |
msgid "Business Directory license key is missing."
|
1956 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
1957 |
|
1958 |
+
#: includes/licensing.php:755
|
1959 |
#, fuzzy
|
1960 |
msgid "Business Directory license key has expired"
|
1961 |
msgstr "Справочник Услуг - Лицензионный Ключ Истёк"
|
1962 |
|
1963 |
+
#: includes/licensing.php:756
|
1964 |
#, fuzzy
|
1965 |
msgid "Could not verify Business Directory license."
|
1966 |
msgstr "Помогите нам улучшить Справочник Услуг"
|
1967 |
|
1968 |
+
#: includes/licensing.php:767
|
1969 |
#, fuzzy
|
1970 |
msgid "Review license keys"
|
1971 |
msgstr "Обновить лицензионный ключ"
|
1972 |
|
1973 |
+
#: includes/licensing.php:882
|
1974 |
msgid "Missing data. Please reload this page and try again."
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: includes/licensing.php:887
|
1978 |
#, fuzzy
|
1979 |
msgid "Please enter a license key."
|
1980 |
msgstr "Пожалуйста введите правильный электронный адрес."
|
3837 |
msgid "Attributes"
|
3838 |
msgstr "Атрибуты"
|
3839 |
|
3840 |
+
#: includes/admin/helpers/tables/class-fees-table.php:141
|
3841 |
msgctxt "fees admin"
|
3842 |
msgid "Edit"
|
3843 |
msgstr "Изменить"
|
3844 |
|
3845 |
+
#: includes/admin/helpers/tables/class-fees-table.php:210
|
3846 |
msgctxt "fees admin"
|
3847 |
msgid "Variable"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
+
#: includes/admin/helpers/tables/class-fees-table.php:215
|
3851 |
#, fuzzy
|
3852 |
msgctxt "fees admin"
|
3853 |
msgid "%1$s + %2$s per category"
|
3854 |
msgstr "Тариф \"%s\" для рубрики \"%s\""
|
3855 |
|
3856 |
+
#: includes/admin/helpers/tables/class-fees-table.php:234
|
3857 |
msgctxt "fees admin"
|
3858 |
msgid "Forever"
|
3859 |
msgstr "Вечно"
|
3860 |
|
3861 |
+
#: includes/admin/helpers/tables/class-fees-table.php:236
|
3862 |
msgctxt "fees admin"
|
3863 |
msgid "%d day"
|
3864 |
msgid_plural "%d days"
|
3866 |
msgstr[1] "%d дней"
|
3867 |
msgstr[2] ""
|
3868 |
|
3869 |
+
#: includes/admin/helpers/tables/class-fees-table.php:266
|
3870 |
msgctxt "fees admin"
|
3871 |
msgid "All categories"
|
3872 |
msgstr "Все рубрики"
|
3873 |
|
3874 |
+
#: includes/admin/helpers/tables/class-fees-table.php:295
|
3875 |
#, fuzzy
|
3876 |
msgctxt "fees admin"
|
3877 |
msgid "Sticky"
|
3878 |
msgstr "Специальная?"
|
3879 |
|
3880 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
3881 |
#, fuzzy
|
3882 |
msgctxt "fees admin"
|
3883 |
msgid "Recurring"
|
3884 |
msgstr "(периодически)"
|
3885 |
|
3886 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
3887 |
#, fuzzy
|
3888 |
msgctxt "fees admin"
|
3889 |
msgid "Private"
|
6298 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6299 |
msgstr ""
|
6300 |
|
6301 |
+
#: includes/licensing.php:247
|
6302 |
#, fuzzy
|
6303 |
msgctxt "settings"
|
6304 |
msgid "Themes"
|
6305 |
msgstr "Темы"
|
6306 |
|
6307 |
+
#: includes/licensing.php:318 includes/licensing.php:319
|
6308 |
msgctxt "settings"
|
6309 |
msgid "Please wait..."
|
6310 |
msgstr ""
|
6311 |
|
6312 |
+
#: includes/licensing.php:319
|
6313 |
#, fuzzy
|
6314 |
msgctxt "settings"
|
6315 |
msgid "Deauthorize"
|
8363 |
msgid "General"
|
8364 |
msgstr "Основное"
|
8365 |
|
8366 |
+
#: includes/licensing.php:573
|
8367 |
msgctxt "licensing"
|
8368 |
msgid "Could not contact licensing server"
|
8369 |
msgstr "Не удалось связаться с сервером лицензий"
|
8370 |
|
8371 |
+
#: includes/licensing.php:586
|
8372 |
msgctxt "licensing"
|
8373 |
msgid ""
|
8374 |
"It was not possible to establish a connection with Business Directory's "
|
8375 |
"server. cURL was not found in your system"
|
8376 |
msgstr ""
|
8377 |
|
8378 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8379 |
msgctxt "licensing"
|
8380 |
msgid ""
|
8381 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8384 |
"1.0.1c)."
|
8385 |
msgstr ""
|
8386 |
|
8387 |
+
#: includes/licensing.php:590 includes/licensing.php:620
|
8388 |
msgctxt "licensing"
|
8389 |
msgid ""
|
8390 |
"Upgrading your system will not only allow you to communicate with Business "
|
8392 |
"services using the latest security standards."
|
8393 |
msgstr ""
|
8394 |
|
8395 |
+
#: includes/licensing.php:592
|
8396 |
msgctxt "licensing"
|
8397 |
msgid ""
|
8398 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8399 |
"Include this message if necessary"
|
8400 |
msgstr ""
|
8401 |
|
8402 |
+
#: includes/licensing.php:622
|
8403 |
msgctxt "licensing"
|
8404 |
msgid ""
|
8405 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
8406 |
"Include this message if necessary."
|
8407 |
msgstr ""
|
8408 |
|
8409 |
+
#: includes/licensing.php:658
|
8410 |
msgctxt "licensing"
|
8411 |
msgid "The server returned a 403 Forbidden error."
|
8412 |
msgstr ""
|
8413 |
|
8414 |
+
#: includes/licensing.php:904
|
8415 |
msgctxt "licensing"
|
8416 |
msgid "Could not activate license: %s."
|
8417 |
msgstr "Не удалось активировать лицензию: %s."
|
8418 |
|
8419 |
+
#: includes/licensing.php:909
|
8420 |
msgctxt "licensing"
|
8421 |
msgid "License activated"
|
8422 |
msgstr "Лицензия активирована"
|
8423 |
|
8424 |
+
#: includes/licensing.php:941
|
8425 |
msgctxt "licensing"
|
8426 |
msgid "Could not deactivate license: %s."
|
8427 |
msgstr "Не удалось деактивировать лицензию: %s."
|
8428 |
|
8429 |
+
#: includes/licensing.php:943
|
8430 |
msgctxt "licensing"
|
8431 |
msgid "License deactivated"
|
8432 |
msgstr "Лицензия была деактивирована."
|
8433 |
|
8434 |
#. translators: "<module-name>" version <version-number> is not...
|
8435 |
+
#: includes/licensing.php:1183
|
8436 |
msgctxt "deprecation"
|
8437 |
msgid ""
|
8438 |
"\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
|
languages/business-directory-plugin-sv_SE.po
CHANGED
@@ -5,7 +5,7 @@ msgstr ""
|
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-02-
|
9 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
@@ -99,7 +99,7 @@ msgid "Form Fields"
|
|
99 |
msgstr "Formulärfält"
|
100 |
|
101 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
102 |
-
#: includes/licensing.php:
|
103 |
#, fuzzy
|
104 |
msgid "Modules"
|
105 |
msgstr "(Alla moduler)"
|
@@ -435,7 +435,7 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
435 |
msgstr "Varför avinstallerar du Business Directory Plugin?"
|
436 |
|
437 |
#: includes/admin/controllers/class-settings-admin.php:536
|
438 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
439 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
440 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
441 |
#: templates/admin/payments-note.tpl.php:14
|
@@ -493,7 +493,7 @@ msgid "Installed"
|
|
493 |
msgstr "Installerat"
|
494 |
|
495 |
#: includes/admin/helpers/class-modules-list.php:187
|
496 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
497 |
#: templates/admin/themes-item.tpl.php:41
|
498 |
#, fuzzy
|
499 |
msgid "Active"
|
@@ -512,7 +512,7 @@ msgid "Activate"
|
|
512 |
msgstr "Aktivera:"
|
513 |
|
514 |
#: includes/admin/helpers/class-modules-list.php:235
|
515 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
516 |
#, fuzzy
|
517 |
msgid "Upgrade Now"
|
518 |
msgstr "Uppgradera till %s"
|
@@ -551,41 +551,41 @@ msgstr "Prissättning"
|
|
551 |
msgid "Listings"
|
552 |
msgstr "Annonser"
|
553 |
|
554 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
555 |
#, fuzzy
|
556 |
msgid "Disable"
|
557 |
msgstr "Koppla ur"
|
558 |
|
559 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
560 |
#, fuzzy
|
561 |
msgid "Enable"
|
562 |
msgstr "Aktivera"
|
563 |
|
564 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
565 |
msgid "ID: %s"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
569 |
#, fuzzy
|
570 |
msgid "Paid Plan"
|
571 |
msgstr "Betald"
|
572 |
|
573 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
574 |
#, fuzzy
|
575 |
msgid "Free Plan"
|
576 |
msgstr "Avgiftsplan"
|
577 |
|
578 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
579 |
#, fuzzy
|
580 |
msgid "%1$s for %2$s"
|
581 |
msgstr "%s (ex.%s)"
|
582 |
|
583 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
584 |
#, fuzzy
|
585 |
msgid "Disabled"
|
586 |
msgstr "Inaktiverad"
|
587 |
|
588 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
589 |
#: includes/helpers/functions/templates-ui.php:431
|
590 |
#, fuzzy
|
591 |
msgid "Default"
|
@@ -1874,72 +1874,72 @@ msgid "Manage Listings"
|
|
1874 |
msgstr "Hantera betalda annonser"
|
1875 |
|
1876 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1877 |
-
#: includes/licensing.php:
|
1878 |
msgid ""
|
1879 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1880 |
"get updates."
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: includes/licensing.php:
|
1884 |
msgid "Licenses"
|
1885 |
msgstr "Licenser"
|
1886 |
|
1887 |
-
#: includes/licensing.php:
|
1888 |
msgid "Build more powerful directories"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: includes/licensing.php:
|
1892 |
msgid ""
|
1893 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
-
#: includes/licensing.php:
|
1897 |
#, fuzzy
|
1898 |
msgid "Already purchased?"
|
1899 |
msgstr "Redan installerad."
|
1900 |
|
1901 |
#. translators: %s: item type.
|
1902 |
-
#: includes/licensing.php:
|
1903 |
msgid "%s will not get updates until license is reauthorized."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: includes/licensing.php:
|
1907 |
#, fuzzy
|
1908 |
msgid "Enter License Key here"
|
1909 |
msgstr "Ange licensnyckel här"
|
1910 |
|
1911 |
-
#: includes/licensing.php:
|
1912 |
#, fuzzy
|
1913 |
msgid "Authorize"
|
1914 |
msgstr "Authorize.net"
|
1915 |
|
1916 |
-
#: includes/licensing.php:
|
1917 |
#, fuzzy
|
1918 |
msgid "Invalid item ID"
|
1919 |
msgstr "Ogiltigt objekt-ID"
|
1920 |
|
1921 |
-
#: includes/licensing.php:
|
1922 |
#, fuzzy
|
1923 |
msgid "No license key provided"
|
1924 |
msgstr "Ingen licensnyckel angiven"
|
1925 |
|
1926 |
-
#: includes/licensing.php:
|
1927 |
#, fuzzy
|
1928 |
msgid "License key is invalid"
|
1929 |
msgstr "Licensnyckel är ogiltig"
|
1930 |
|
1931 |
-
#: includes/licensing.php:
|
1932 |
#, fuzzy
|
1933 |
msgid "Deactivation failed"
|
1934 |
msgstr "Deaktivering misslyckades"
|
1935 |
|
1936 |
-
#: includes/licensing.php:
|
1937 |
#, fuzzy
|
1938 |
msgid "The license key was revoked."
|
1939 |
msgstr "Ingen licensnyckel angiven"
|
1940 |
|
1941 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1942 |
-
#: includes/licensing.php:
|
1943 |
#, fuzzy
|
1944 |
msgid ""
|
1945 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
@@ -1951,7 +1951,7 @@ msgstr ""
|
|
1951 |
"Business Directorys servers. Vänligen kontakta <support-link>Business "
|
1952 |
"Directory support</support-link> och be dem vitlista din IP-adress."
|
1953 |
|
1954 |
-
#: includes/licensing.php:
|
1955 |
#, fuzzy
|
1956 |
msgid ""
|
1957 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1960,7 +1960,7 @@ msgstr ""
|
|
1960 |
"Det var inte möjligt att upprätta en anslutning med Business Directory "
|
1961 |
"server. Anslutningen misslyckades med följande fel:"
|
1962 |
|
1963 |
-
#: includes/licensing.php:
|
1964 |
#, fuzzy
|
1965 |
msgid ""
|
1966 |
"It was not possible to establish a connection with the Business Directory "
|
@@ -1969,7 +1969,7 @@ msgstr ""
|
|
1969 |
"Det var inte möjligt att etablera en kontakt med Business Directorys server. "
|
1970 |
"Ett problem inträffade i SSL/TSL handskakning:"
|
1971 |
|
1972 |
-
#: includes/licensing.php:
|
1973 |
#, fuzzy
|
1974 |
msgid ""
|
1975 |
"It looks like your server is not authorized to make outgoing requests to "
|
@@ -1980,31 +1980,31 @@ msgstr ""
|
|
1980 |
"Business Directorys servers. Vänligen kontakta <support-link>Business "
|
1981 |
"Directory support</support-link> och be dem vitlista din IP-adress."
|
1982 |
|
1983 |
-
#: includes/licensing.php:
|
1984 |
#, fuzzy
|
1985 |
msgid "Business Directory license key is missing."
|
1986 |
msgstr "Business Directory - Licensnyckel har upphört"
|
1987 |
|
1988 |
-
#: includes/licensing.php:
|
1989 |
#, fuzzy
|
1990 |
msgid "Business Directory license key has expired"
|
1991 |
msgstr "Business Directory - Licensnyckel har upphört"
|
1992 |
|
1993 |
-
#: includes/licensing.php:
|
1994 |
#, fuzzy
|
1995 |
msgid "Could not verify Business Directory license."
|
1996 |
msgstr "Hjälp oss förbättra Business Directory"
|
1997 |
|
1998 |
-
#: includes/licensing.php:
|
1999 |
#, fuzzy
|
2000 |
msgid "Review license keys"
|
2001 |
msgstr "Granska mina licensnycklar"
|
2002 |
|
2003 |
-
#: includes/licensing.php:
|
2004 |
msgid "Missing data. Please reload this page and try again."
|
2005 |
msgstr ""
|
2006 |
|
2007 |
-
#: includes/licensing.php:
|
2008 |
#, fuzzy
|
2009 |
msgid "Please enter a license key."
|
2010 |
msgstr "Skriv in licensnyckel"
|
@@ -3898,50 +3898,50 @@ msgctxt "fees admin"
|
|
3898 |
msgid "Attributes"
|
3899 |
msgstr "Attribut"
|
3900 |
|
3901 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3902 |
msgctxt "fees admin"
|
3903 |
msgid "Edit"
|
3904 |
msgstr "Redigera"
|
3905 |
|
3906 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3907 |
msgctxt "fees admin"
|
3908 |
msgid "Variable"
|
3909 |
msgstr "Variabel"
|
3910 |
|
3911 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3912 |
#, fuzzy
|
3913 |
msgctxt "fees admin"
|
3914 |
msgid "%1$s + %2$s per category"
|
3915 |
msgstr "%s + %s per kategori"
|
3916 |
|
3917 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3918 |
msgctxt "fees admin"
|
3919 |
msgid "Forever"
|
3920 |
msgstr "För alltid"
|
3921 |
|
3922 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3923 |
msgctxt "fees admin"
|
3924 |
msgid "%d day"
|
3925 |
msgid_plural "%d days"
|
3926 |
msgstr[0] "%d dag"
|
3927 |
msgstr[1] "%d dagar"
|
3928 |
|
3929 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3930 |
msgctxt "fees admin"
|
3931 |
msgid "All categories"
|
3932 |
msgstr "Alla kategorier"
|
3933 |
|
3934 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3935 |
msgctxt "fees admin"
|
3936 |
msgid "Sticky"
|
3937 |
msgstr "Klistrad"
|
3938 |
|
3939 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3940 |
msgctxt "fees admin"
|
3941 |
msgid "Recurring"
|
3942 |
msgstr "Återkommande"
|
3943 |
|
3944 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3945 |
#, fuzzy
|
3946 |
msgctxt "fees admin"
|
3947 |
msgid "Private"
|
@@ -6209,17 +6209,17 @@ msgctxt "settings"
|
|
6209 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6210 |
msgstr "Sluggen “%s” används redan för en annan taxonomi."
|
6211 |
|
6212 |
-
#: includes/licensing.php:
|
6213 |
msgctxt "settings"
|
6214 |
msgid "Themes"
|
6215 |
msgstr "Teman"
|
6216 |
|
6217 |
-
#: includes/licensing.php:
|
6218 |
msgctxt "settings"
|
6219 |
msgid "Please wait..."
|
6220 |
msgstr "Vänligen vänta..."
|
6221 |
|
6222 |
-
#: includes/licensing.php:
|
6223 |
#, fuzzy
|
6224 |
msgctxt "settings"
|
6225 |
msgid "Deauthorize"
|
@@ -8240,12 +8240,12 @@ msgctxt "default category name"
|
|
8240 |
msgid "General"
|
8241 |
msgstr "Allmän"
|
8242 |
|
8243 |
-
#: includes/licensing.php:
|
8244 |
msgctxt "licensing"
|
8245 |
msgid "Could not contact licensing server"
|
8246 |
msgstr "Det gick inte att kontakta licensservern"
|
8247 |
|
8248 |
-
#: includes/licensing.php:
|
8249 |
#, fuzzy
|
8250 |
msgctxt "licensing"
|
8251 |
msgid ""
|
@@ -8255,7 +8255,7 @@ msgstr ""
|
|
8255 |
"Det var inte möjligt att etablera en kontakt med Business Directorys server. "
|
8256 |
"Ett problem inträffade i SSL/TSL handskakning:"
|
8257 |
|
8258 |
-
#: includes/licensing.php:
|
8259 |
msgctxt "licensing"
|
8260 |
msgid ""
|
8261 |
"To ensure the security of our systems and adhere to industry best practices, "
|
@@ -8268,7 +8268,7 @@ msgstr ""
|
|
8268 |
"version av OpenSSL som stöder TLSv1.2 (minsta version med support är OpenSSL "
|
8269 |
"1.0.1c)."
|
8270 |
|
8271 |
-
#: includes/licensing.php:
|
8272 |
msgctxt "licensing"
|
8273 |
msgid ""
|
8274 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -8280,7 +8280,7 @@ msgstr ""
|
|
8280 |
"webbplats för att interagera med tjänster som använder de senaste "
|
8281 |
"säkerhetsstandarderna."
|
8282 |
|
8283 |
-
#: includes/licensing.php:
|
8284 |
#, fuzzy
|
8285 |
msgctxt "licensing"
|
8286 |
msgid ""
|
@@ -8290,7 +8290,7 @@ msgstr ""
|
|
8290 |
"Kontakta ditt webbhotell och be dem att uppgradera ditt system. Inkludera "
|
8291 |
"detta meddelande om nödvändigt."
|
8292 |
|
8293 |
-
#: includes/licensing.php:
|
8294 |
#, fuzzy
|
8295 |
msgctxt "licensing"
|
8296 |
msgid ""
|
@@ -8300,33 +8300,33 @@ msgstr ""
|
|
8300 |
"Kontakta ditt webbhotell och be dem att uppgradera ditt system. Inkludera "
|
8301 |
"detta meddelande om nödvändigt."
|
8302 |
|
8303 |
-
#: includes/licensing.php:
|
8304 |
msgctxt "licensing"
|
8305 |
msgid "The server returned a 403 Forbidden error."
|
8306 |
msgstr "Servern returnerade ett 403 Forbidden fel."
|
8307 |
|
8308 |
-
#: includes/licensing.php:
|
8309 |
msgctxt "licensing"
|
8310 |
msgid "Could not activate license: %s."
|
8311 |
msgstr "Det gick inte att aktivera licens:%s."
|
8312 |
|
8313 |
-
#: includes/licensing.php:
|
8314 |
msgctxt "licensing"
|
8315 |
msgid "License activated"
|
8316 |
msgstr "Licens aktiverad"
|
8317 |
|
8318 |
-
#: includes/licensing.php:
|
8319 |
msgctxt "licensing"
|
8320 |
msgid "Could not deactivate license: %s."
|
8321 |
msgstr "Det gick inte att inaktivera licens:%s."
|
8322 |
|
8323 |
-
#: includes/licensing.php:
|
8324 |
msgctxt "licensing"
|
8325 |
msgid "License deactivated"
|
8326 |
msgstr "Licensnyckel avaktiverad"
|
8327 |
|
8328 |
#. translators: "<module-name>" version <version-number> is not...
|
8329 |
-
#: includes/licensing.php:
|
8330 |
#, fuzzy
|
8331 |
msgctxt "deprecation"
|
8332 |
msgid ""
|
5 |
"Project-Id-Version: Business Directory Plugin v5.7.3\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
|
7 |
"directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-03 21:01:26+00:00\n"
|
9 |
"PO-Revision-Date: 2020-06-17 15:33-0500\n"
|
10 |
"Last-Translator: \n"
|
11 |
"Language-Team: \n"
|
99 |
msgstr "Formulärfält"
|
100 |
|
101 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
102 |
+
#: includes/licensing.php:229
|
103 |
#, fuzzy
|
104 |
msgid "Modules"
|
105 |
msgstr "(Alla moduler)"
|
435 |
msgstr "Varför avinstallerar du Business Directory Plugin?"
|
436 |
|
437 |
#: includes/admin/controllers/class-settings-admin.php:536
|
438 |
+
#: includes/admin/helpers/tables/class-fees-table.php:177
|
439 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
440 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
441 |
#: templates/admin/payments-note.tpl.php:14
|
493 |
msgstr "Installerat"
|
494 |
|
495 |
#: includes/admin/helpers/class-modules-list.php:187
|
496 |
+
#: includes/admin/helpers/tables/class-fees-table.php:287
|
497 |
#: templates/admin/themes-item.tpl.php:41
|
498 |
#, fuzzy
|
499 |
msgid "Active"
|
512 |
msgstr "Aktivera:"
|
513 |
|
514 |
#: includes/admin/helpers/class-modules-list.php:235
|
515 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:277
|
516 |
#, fuzzy
|
517 |
msgid "Upgrade Now"
|
518 |
msgstr "Uppgradera till %s"
|
551 |
msgid "Listings"
|
552 |
msgstr "Annonser"
|
553 |
|
554 |
+
#: includes/admin/helpers/tables/class-fees-table.php:156
|
555 |
#, fuzzy
|
556 |
msgid "Disable"
|
557 |
msgstr "Koppla ur"
|
558 |
|
559 |
+
#: includes/admin/helpers/tables/class-fees-table.php:162
|
560 |
#, fuzzy
|
561 |
msgid "Enable"
|
562 |
msgstr "Aktivera"
|
563 |
|
564 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
565 |
msgid "ID: %s"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
569 |
#, fuzzy
|
570 |
msgid "Paid Plan"
|
571 |
msgstr "Betald"
|
572 |
|
573 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
574 |
#, fuzzy
|
575 |
msgid "Free Plan"
|
576 |
msgstr "Avgiftsplan"
|
577 |
|
578 |
+
#: includes/admin/helpers/tables/class-fees-table.php:222
|
579 |
#, fuzzy
|
580 |
msgid "%1$s for %2$s"
|
581 |
msgstr "%s (ex.%s)"
|
582 |
|
583 |
+
#: includes/admin/helpers/tables/class-fees-table.php:285
|
584 |
#, fuzzy
|
585 |
msgid "Disabled"
|
586 |
msgstr "Inaktiverad"
|
587 |
|
588 |
+
#: includes/admin/helpers/tables/class-fees-table.php:291
|
589 |
#: includes/helpers/functions/templates-ui.php:431
|
590 |
#, fuzzy
|
591 |
msgid "Default"
|
1874 |
msgstr "Hantera betalda annonser"
|
1875 |
|
1876 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1877 |
+
#: includes/licensing.php:152
|
1878 |
msgid ""
|
1879 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1880 |
"get updates."
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: includes/licensing.php:205 includes/licensing.php:208
|
1884 |
msgid "Licenses"
|
1885 |
msgstr "Licenser"
|
1886 |
|
1887 |
+
#: includes/licensing.php:275
|
1888 |
msgid "Build more powerful directories"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: includes/licensing.php:276
|
1892 |
msgid ""
|
1893 |
"Add category images, maps, filter by location, payment gateways, and more."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
+
#: includes/licensing.php:278
|
1897 |
#, fuzzy
|
1898 |
msgid "Already purchased?"
|
1899 |
msgstr "Redan installerad."
|
1900 |
|
1901 |
#. translators: %s: item type.
|
1902 |
+
#: includes/licensing.php:296
|
1903 |
msgid "%s will not get updates until license is reauthorized."
|
1904 |
msgstr ""
|
1905 |
|
1906 |
+
#: includes/licensing.php:317
|
1907 |
#, fuzzy
|
1908 |
msgid "Enter License Key here"
|
1909 |
msgstr "Ange licensnyckel här"
|
1910 |
|
1911 |
+
#: includes/licensing.php:318
|
1912 |
#, fuzzy
|
1913 |
msgid "Authorize"
|
1914 |
msgstr "Authorize.net"
|
1915 |
|
1916 |
+
#: includes/licensing.php:422
|
1917 |
#, fuzzy
|
1918 |
msgid "Invalid item ID"
|
1919 |
msgstr "Ogiltigt objekt-ID"
|
1920 |
|
1921 |
+
#: includes/licensing.php:435
|
1922 |
#, fuzzy
|
1923 |
msgid "No license key provided"
|
1924 |
msgstr "Ingen licensnyckel angiven"
|
1925 |
|
1926 |
+
#: includes/licensing.php:484 includes/licensing.php:522
|
1927 |
#, fuzzy
|
1928 |
msgid "License key is invalid"
|
1929 |
msgstr "Licensnyckel är ogiltig"
|
1930 |
|
1931 |
+
#: includes/licensing.php:488
|
1932 |
#, fuzzy
|
1933 |
msgid "Deactivation failed"
|
1934 |
msgstr "Deaktivering misslyckades"
|
1935 |
|
1936 |
+
#: includes/licensing.php:533
|
1937 |
#, fuzzy
|
1938 |
msgid "The license key was revoked."
|
1939 |
msgstr "Ingen licensnyckel angiven"
|
1940 |
|
1941 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1942 |
+
#: includes/licensing.php:537
|
1943 |
#, fuzzy
|
1944 |
msgid ""
|
1945 |
"If you think this is a mistake, please contact %1$sBusiness Directory support"
|
1951 |
"Business Directorys servers. Vänligen kontakta <support-link>Business "
|
1952 |
"Directory support</support-link> och be dem vitlista din IP-adress."
|
1953 |
|
1954 |
+
#: includes/licensing.php:600
|
1955 |
#, fuzzy
|
1956 |
msgid ""
|
1957 |
"It was not possible to establish a connection with the Business Directory "
|
1960 |
"Det var inte möjligt att upprätta en anslutning med Business Directory "
|
1961 |
"server. Anslutningen misslyckades med följande fel:"
|
1962 |
|
1963 |
+
#: includes/licensing.php:613
|
1964 |
#, fuzzy
|
1965 |
msgid ""
|
1966 |
"It was not possible to establish a connection with the Business Directory "
|
1969 |
"Det var inte möjligt att etablera en kontakt med Business Directorys server. "
|
1970 |
"Ett problem inträffade i SSL/TSL handskakning:"
|
1971 |
|
1972 |
+
#: includes/licensing.php:660
|
1973 |
#, fuzzy
|
1974 |
msgid ""
|
1975 |
"It looks like your server is not authorized to make outgoing requests to "
|
1980 |
"Business Directorys servers. Vänligen kontakta <support-link>Business "
|
1981 |
"Directory support</support-link> och be dem vitlista din IP-adress."
|
1982 |
|
1983 |
+
#: includes/licensing.php:754
|
1984 |
#, fuzzy
|
1985 |
msgid "Business Directory license key is missing."
|
1986 |
msgstr "Business Directory - Licensnyckel har upphört"
|
1987 |
|
1988 |
+
#: includes/licensing.php:755
|
1989 |
#, fuzzy
|
1990 |
msgid "Business Directory license key has expired"
|
1991 |
msgstr "Business Directory - Licensnyckel har upphört"
|
1992 |
|
1993 |
+
#: includes/licensing.php:756
|
1994 |
#, fuzzy
|
1995 |
msgid "Could not verify Business Directory license."
|
1996 |
msgstr "Hjälp oss förbättra Business Directory"
|
1997 |
|
1998 |
+
#: includes/licensing.php:767
|
1999 |
#, fuzzy
|
2000 |
msgid "Review license keys"
|
2001 |
msgstr "Granska mina licensnycklar"
|
2002 |
|
2003 |
+
#: includes/licensing.php:882
|
2004 |
msgid "Missing data. Please reload this page and try again."
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: includes/licensing.php:887
|
2008 |
#, fuzzy
|
2009 |
msgid "Please enter a license key."
|
2010 |
msgstr "Skriv in licensnyckel"
|
3898 |
msgid "Attributes"
|
3899 |
msgstr "Attribut"
|
3900 |
|
3901 |
+
#: includes/admin/helpers/tables/class-fees-table.php:141
|
3902 |
msgctxt "fees admin"
|
3903 |
msgid "Edit"
|
3904 |
msgstr "Redigera"
|
3905 |
|
3906 |
+
#: includes/admin/helpers/tables/class-fees-table.php:210
|
3907 |
msgctxt "fees admin"
|
3908 |
msgid "Variable"
|
3909 |
msgstr "Variabel"
|
3910 |
|
3911 |
+
#: includes/admin/helpers/tables/class-fees-table.php:215
|
3912 |
#, fuzzy
|
3913 |
msgctxt "fees admin"
|
3914 |
msgid "%1$s + %2$s per category"
|
3915 |
msgstr "%s + %s per kategori"
|
3916 |
|
3917 |
+
#: includes/admin/helpers/tables/class-fees-table.php:234
|
3918 |
msgctxt "fees admin"
|
3919 |
msgid "Forever"
|
3920 |
msgstr "För alltid"
|
3921 |
|
3922 |
+
#: includes/admin/helpers/tables/class-fees-table.php:236
|
3923 |
msgctxt "fees admin"
|
3924 |
msgid "%d day"
|
3925 |
msgid_plural "%d days"
|
3926 |
msgstr[0] "%d dag"
|
3927 |
msgstr[1] "%d dagar"
|
3928 |
|
3929 |
+
#: includes/admin/helpers/tables/class-fees-table.php:266
|
3930 |
msgctxt "fees admin"
|
3931 |
msgid "All categories"
|
3932 |
msgstr "Alla kategorier"
|
3933 |
|
3934 |
+
#: includes/admin/helpers/tables/class-fees-table.php:295
|
3935 |
msgctxt "fees admin"
|
3936 |
msgid "Sticky"
|
3937 |
msgstr "Klistrad"
|
3938 |
|
3939 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
3940 |
msgctxt "fees admin"
|
3941 |
msgid "Recurring"
|
3942 |
msgstr "Återkommande"
|
3943 |
|
3944 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
3945 |
#, fuzzy
|
3946 |
msgctxt "fees admin"
|
3947 |
msgid "Private"
|
6209 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
6210 |
msgstr "Sluggen “%s” används redan för en annan taxonomi."
|
6211 |
|
6212 |
+
#: includes/licensing.php:247
|
6213 |
msgctxt "settings"
|
6214 |
msgid "Themes"
|
6215 |
msgstr "Teman"
|
6216 |
|
6217 |
+
#: includes/licensing.php:318 includes/licensing.php:319
|
6218 |
msgctxt "settings"
|
6219 |
msgid "Please wait..."
|
6220 |
msgstr "Vänligen vänta..."
|
6221 |
|
6222 |
+
#: includes/licensing.php:319
|
6223 |
#, fuzzy
|
6224 |
msgctxt "settings"
|
6225 |
msgid "Deauthorize"
|
8240 |
msgid "General"
|
8241 |
msgstr "Allmän"
|
8242 |
|
8243 |
+
#: includes/licensing.php:573
|
8244 |
msgctxt "licensing"
|
8245 |
msgid "Could not contact licensing server"
|
8246 |
msgstr "Det gick inte att kontakta licensservern"
|
8247 |
|
8248 |
+
#: includes/licensing.php:586
|
8249 |
#, fuzzy
|
8250 |
msgctxt "licensing"
|
8251 |
msgid ""
|
8255 |
"Det var inte möjligt att etablera en kontakt med Business Directorys server. "
|
8256 |
"Ett problem inträffade i SSL/TSL handskakning:"
|
8257 |
|
8258 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
8259 |
msgctxt "licensing"
|
8260 |
msgid ""
|
8261 |
"To ensure the security of our systems and adhere to industry best practices, "
|
8268 |
"version av OpenSSL som stöder TLSv1.2 (minsta version med support är OpenSSL "
|
8269 |
"1.0.1c)."
|
8270 |
|
8271 |
+
#: includes/licensing.php:590 includes/licensing.php:620
|
8272 |
msgctxt "licensing"
|
8273 |
msgid ""
|
8274 |
"Upgrading your system will not only allow you to communicate with Business "
|
8280 |
"webbplats för att interagera med tjänster som använder de senaste "
|
8281 |
"säkerhetsstandarderna."
|
8282 |
|
8283 |
+
#: includes/licensing.php:592
|
8284 |
#, fuzzy
|
8285 |
msgctxt "licensing"
|
8286 |
msgid ""
|
8290 |
"Kontakta ditt webbhotell och be dem att uppgradera ditt system. Inkludera "
|
8291 |
"detta meddelande om nödvändigt."
|
8292 |
|
8293 |
+
#: includes/licensing.php:622
|
8294 |
#, fuzzy
|
8295 |
msgctxt "licensing"
|
8296 |
msgid ""
|
8300 |
"Kontakta ditt webbhotell och be dem att uppgradera ditt system. Inkludera "
|
8301 |
"detta meddelande om nödvändigt."
|
8302 |
|
8303 |
+
#: includes/licensing.php:658
|
8304 |
msgctxt "licensing"
|
8305 |
msgid "The server returned a 403 Forbidden error."
|
8306 |
msgstr "Servern returnerade ett 403 Forbidden fel."
|
8307 |
|
8308 |
+
#: includes/licensing.php:904
|
8309 |
msgctxt "licensing"
|
8310 |
msgid "Could not activate license: %s."
|
8311 |
msgstr "Det gick inte att aktivera licens:%s."
|
8312 |
|
8313 |
+
#: includes/licensing.php:909
|
8314 |
msgctxt "licensing"
|
8315 |
msgid "License activated"
|
8316 |
msgstr "Licens aktiverad"
|
8317 |
|
8318 |
+
#: includes/licensing.php:941
|
8319 |
msgctxt "licensing"
|
8320 |
msgid "Could not deactivate license: %s."
|
8321 |
msgstr "Det gick inte att inaktivera licens:%s."
|
8322 |
|
8323 |
+
#: includes/licensing.php:943
|
8324 |
msgctxt "licensing"
|
8325 |
msgid "License deactivated"
|
8326 |
msgstr "Licensnyckel avaktiverad"
|
8327 |
|
8328 |
#. translators: "<module-name>" version <version-number> is not...
|
8329 |
+
#: includes/licensing.php:1183
|
8330 |
#, fuzzy
|
8331 |
msgctxt "deprecation"
|
8332 |
msgid ""
|
languages/business-directory-plugin.pot
CHANGED
@@ -2,10 +2,10 @@
|
|
2 |
# This file is distributed under the GPLv2 or any later version.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Business Directory Plugin 5.17\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/business-directory-plugin\n"
|
8 |
-
"POT-Creation-Date: 2022-02-
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -82,7 +82,7 @@ msgid "Form Fields"
|
|
82 |
msgstr ""
|
83 |
|
84 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
85 |
-
#: includes/licensing.php:
|
86 |
msgid "Modules"
|
87 |
msgstr ""
|
88 |
|
@@ -366,7 +366,7 @@ msgid "You're using Business Directory Plugin Lite. Enjoy!"
|
|
366 |
msgstr ""
|
367 |
|
368 |
#: includes/admin/controllers/class-settings-admin.php:536
|
369 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
370 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
371 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
372 |
#: templates/admin/payments-note.tpl.php:14
|
@@ -416,7 +416,7 @@ msgid "Installed"
|
|
416 |
msgstr ""
|
417 |
|
418 |
#: includes/admin/helpers/class-modules-list.php:187
|
419 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
420 |
#: templates/admin/themes-item.tpl.php:41
|
421 |
msgid "Active"
|
422 |
msgstr ""
|
@@ -432,7 +432,7 @@ msgid "Activate"
|
|
432 |
msgstr ""
|
433 |
|
434 |
#: includes/admin/helpers/class-modules-list.php:235
|
435 |
-
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:
|
436 |
msgid "Upgrade Now"
|
437 |
msgstr ""
|
438 |
|
@@ -464,35 +464,35 @@ msgstr ""
|
|
464 |
msgid "Listings"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
468 |
msgid "Disable"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
472 |
msgid "Enable"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
476 |
msgid "ID: %s"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
480 |
msgid "Paid Plan"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
484 |
msgid "Free Plan"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
488 |
msgid "%1$s for %2$s"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
492 |
msgid "Disabled"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
496 |
#: includes/helpers/functions/templates-ui.php:431
|
497 |
msgid "Default"
|
498 |
msgstr ""
|
@@ -1582,63 +1582,63 @@ msgstr ""
|
|
1582 |
msgid "Manage Listings"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: includes/licensing.php:
|
1586 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1587 |
msgid ""
|
1588 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1589 |
"get updates."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: includes/licensing.php:
|
1593 |
msgid "Licenses"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: includes/licensing.php:
|
1597 |
msgid "Build more powerful directories"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: includes/licensing.php:
|
1601 |
msgid "Add category images, maps, filter by location, payment gateways, and more."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#: includes/licensing.php:
|
1605 |
msgid "Already purchased?"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
-
#: includes/licensing.php:
|
1609 |
#. translators: %s: item type.
|
1610 |
msgid "%s will not get updates until license is reauthorized."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
-
#: includes/licensing.php:
|
1614 |
msgid "Enter License Key here"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: includes/licensing.php:
|
1618 |
msgid "Authorize"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
-
#: includes/licensing.php:
|
1622 |
msgid "Invalid item ID"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#: includes/licensing.php:
|
1626 |
msgid "No license key provided"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
-
#: includes/licensing.php:
|
1630 |
msgid "License key is invalid"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
-
#: includes/licensing.php:
|
1634 |
msgid "Deactivation failed"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: includes/licensing.php:
|
1638 |
msgid "The license key was revoked."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: includes/licensing.php:
|
1642 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1643 |
msgid ""
|
1644 |
"If you think this is a mistake, please contact %1$sBusiness Directory "
|
@@ -1647,46 +1647,46 @@ msgid ""
|
|
1647 |
"purchase with your report."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
-
#: includes/licensing.php:
|
1651 |
msgid ""
|
1652 |
"It was not possible to establish a connection with the Business Directory "
|
1653 |
"server. The connection failed with the following error:"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: includes/licensing.php:
|
1657 |
msgid ""
|
1658 |
"It was not possible to establish a connection with the Business Directory "
|
1659 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
-
#: includes/licensing.php:
|
1663 |
msgid ""
|
1664 |
"It looks like your server is not authorized to make outgoing requests to "
|
1665 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1666 |
"our IP address 52.0.78.177 to your allow list."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: includes/licensing.php:
|
1670 |
msgid "Business Directory license key is missing."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: includes/licensing.php:
|
1674 |
msgid "Business Directory license key has expired"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: includes/licensing.php:
|
1678 |
msgid "Could not verify Business Directory license."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: includes/licensing.php:
|
1682 |
msgid "Review license keys"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: includes/licensing.php:
|
1686 |
msgid "Missing data. Please reload this page and try again."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: includes/licensing.php:
|
1690 |
msgid "Please enter a license key."
|
1691 |
msgstr ""
|
1692 |
|
@@ -3285,49 +3285,49 @@ msgctxt "fees admin"
|
|
3285 |
msgid "Attributes"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3289 |
msgctxt "fees admin"
|
3290 |
msgid "Edit"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3294 |
msgctxt "fees admin"
|
3295 |
msgid "Variable"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3299 |
msgctxt "fees admin"
|
3300 |
msgid "%1$s + %2$s per category"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3304 |
msgctxt "fees admin"
|
3305 |
msgid "Forever"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3309 |
msgctxt "fees admin"
|
3310 |
msgid "%d day"
|
3311 |
msgid_plural "%d days"
|
3312 |
msgstr[0] ""
|
3313 |
msgstr[1] ""
|
3314 |
|
3315 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3316 |
msgctxt "fees admin"
|
3317 |
msgid "All categories"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3321 |
msgctxt "fees admin"
|
3322 |
msgid "Sticky"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3326 |
msgctxt "fees admin"
|
3327 |
msgid "Recurring"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: includes/admin/helpers/tables/class-fees-table.php:
|
3331 |
msgctxt "fees admin"
|
3332 |
msgid "Private"
|
3333 |
msgstr ""
|
@@ -5460,17 +5460,17 @@ msgctxt "settings"
|
|
5460 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: includes/licensing.php:
|
5464 |
msgctxt "settings"
|
5465 |
msgid "Themes"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: includes/licensing.php:
|
5469 |
msgctxt "settings"
|
5470 |
msgid "Please wait..."
|
5471 |
msgstr ""
|
5472 |
|
5473 |
-
#: includes/licensing.php:
|
5474 |
msgctxt "settings"
|
5475 |
msgid "Deauthorize"
|
5476 |
msgstr ""
|
@@ -7329,19 +7329,19 @@ msgctxt "default category name"
|
|
7329 |
msgid "General"
|
7330 |
msgstr ""
|
7331 |
|
7332 |
-
#: includes/licensing.php:
|
7333 |
msgctxt "licensing"
|
7334 |
msgid "Could not contact licensing server"
|
7335 |
msgstr ""
|
7336 |
|
7337 |
-
#: includes/licensing.php:
|
7338 |
msgctxt "licensing"
|
7339 |
msgid ""
|
7340 |
"It was not possible to establish a connection with Business Directory's "
|
7341 |
"server. cURL was not found in your system"
|
7342 |
msgstr ""
|
7343 |
|
7344 |
-
#: includes/licensing.php:
|
7345 |
msgctxt "licensing"
|
7346 |
msgid ""
|
7347 |
"To ensure the security of our systems and adhere to industry best "
|
@@ -7350,7 +7350,7 @@ msgid ""
|
|
7350 |
"OpenSSL 1.0.1c)."
|
7351 |
msgstr ""
|
7352 |
|
7353 |
-
#: includes/licensing.php:
|
7354 |
msgctxt "licensing"
|
7355 |
msgid ""
|
7356 |
"Upgrading your system will not only allow you to communicate with Business "
|
@@ -7358,46 +7358,46 @@ msgid ""
|
|
7358 |
"services using the latest security standards."
|
7359 |
msgstr ""
|
7360 |
|
7361 |
-
#: includes/licensing.php:
|
7362 |
msgctxt "licensing"
|
7363 |
msgid ""
|
7364 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7365 |
"Include this message if necessary"
|
7366 |
msgstr ""
|
7367 |
|
7368 |
-
#: includes/licensing.php:
|
7369 |
msgctxt "licensing"
|
7370 |
msgid ""
|
7371 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7372 |
"Include this message if necessary."
|
7373 |
msgstr ""
|
7374 |
|
7375 |
-
#: includes/licensing.php:
|
7376 |
msgctxt "licensing"
|
7377 |
msgid "The server returned a 403 Forbidden error."
|
7378 |
msgstr ""
|
7379 |
|
7380 |
-
#: includes/licensing.php:
|
7381 |
msgctxt "licensing"
|
7382 |
msgid "Could not activate license: %s."
|
7383 |
msgstr ""
|
7384 |
|
7385 |
-
#: includes/licensing.php:
|
7386 |
msgctxt "licensing"
|
7387 |
msgid "License activated"
|
7388 |
msgstr ""
|
7389 |
|
7390 |
-
#: includes/licensing.php:
|
7391 |
msgctxt "licensing"
|
7392 |
msgid "Could not deactivate license: %s."
|
7393 |
msgstr ""
|
7394 |
|
7395 |
-
#: includes/licensing.php:
|
7396 |
msgctxt "licensing"
|
7397 |
msgid "License deactivated"
|
7398 |
msgstr ""
|
7399 |
|
7400 |
-
#: includes/licensing.php:
|
7401 |
#. translators: "<module-name>" version <version-number> is not...
|
7402 |
msgctxt "deprecation"
|
7403 |
msgid ""
|
2 |
# This file is distributed under the GPLv2 or any later version.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Business Directory Plugin 5.17.1\n"
|
6 |
"Report-Msgid-Bugs-To: "
|
7 |
"https://wordpress.org/support/plugin/business-directory-plugin\n"
|
8 |
+
"POT-Creation-Date: 2022-02-03 21:01:26+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
82 |
msgstr ""
|
83 |
|
84 |
#: includes/admin/class-admin.php:344 includes/admin/class-admin.php:345
|
85 |
+
#: includes/licensing.php:229
|
86 |
msgid "Modules"
|
87 |
msgstr ""
|
88 |
|
366 |
msgstr ""
|
367 |
|
368 |
#: includes/admin/controllers/class-settings-admin.php:536
|
369 |
+
#: includes/admin/helpers/tables/class-fees-table.php:177
|
370 |
#: includes/admin/helpers/tables/class-form-fields-table.php:104
|
371 |
#: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
|
372 |
#: templates/admin/payments-note.tpl.php:14
|
416 |
msgstr ""
|
417 |
|
418 |
#: includes/admin/helpers/class-modules-list.php:187
|
419 |
+
#: includes/admin/helpers/tables/class-fees-table.php:287
|
420 |
#: templates/admin/themes-item.tpl.php:41
|
421 |
msgid "Active"
|
422 |
msgstr ""
|
432 |
msgstr ""
|
433 |
|
434 |
#: includes/admin/helpers/class-modules-list.php:235
|
435 |
+
#: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:277
|
436 |
msgid "Upgrade Now"
|
437 |
msgstr ""
|
438 |
|
464 |
msgid "Listings"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: includes/admin/helpers/tables/class-fees-table.php:156
|
468 |
msgid "Disable"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/admin/helpers/tables/class-fees-table.php:162
|
472 |
msgid "Enable"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/admin/helpers/tables/class-fees-table.php:184
|
476 |
msgid "ID: %s"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
480 |
msgid "Paid Plan"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/admin/helpers/tables/class-fees-table.php:187
|
484 |
msgid "Free Plan"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: includes/admin/helpers/tables/class-fees-table.php:222
|
488 |
msgid "%1$s for %2$s"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: includes/admin/helpers/tables/class-fees-table.php:285
|
492 |
msgid "Disabled"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: includes/admin/helpers/tables/class-fees-table.php:291
|
496 |
#: includes/helpers/functions/templates-ui.php:431
|
497 |
msgid "Default"
|
498 |
msgstr ""
|
1582 |
msgid "Manage Listings"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: includes/licensing.php:152
|
1586 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1587 |
msgid ""
|
1588 |
"The license key could not be verified. Please %1$scheck your license%2$s to "
|
1589 |
"get updates."
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: includes/licensing.php:205 includes/licensing.php:208
|
1593 |
msgid "Licenses"
|
1594 |
msgstr ""
|
1595 |
|
1596 |
+
#: includes/licensing.php:275
|
1597 |
msgid "Build more powerful directories"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
+
#: includes/licensing.php:276
|
1601 |
msgid "Add category images, maps, filter by location, payment gateways, and more."
|
1602 |
msgstr ""
|
1603 |
|
1604 |
+
#: includes/licensing.php:278
|
1605 |
msgid "Already purchased?"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: includes/licensing.php:296
|
1609 |
#. translators: %s: item type.
|
1610 |
msgid "%s will not get updates until license is reauthorized."
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: includes/licensing.php:317
|
1614 |
msgid "Enter License Key here"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
+
#: includes/licensing.php:318
|
1618 |
msgid "Authorize"
|
1619 |
msgstr ""
|
1620 |
|
1621 |
+
#: includes/licensing.php:422
|
1622 |
msgid "Invalid item ID"
|
1623 |
msgstr ""
|
1624 |
|
1625 |
+
#: includes/licensing.php:435
|
1626 |
msgid "No license key provided"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: includes/licensing.php:484 includes/licensing.php:522
|
1630 |
msgid "License key is invalid"
|
1631 |
msgstr ""
|
1632 |
|
1633 |
+
#: includes/licensing.php:488
|
1634 |
msgid "Deactivation failed"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
+
#: includes/licensing.php:533
|
1638 |
msgid "The license key was revoked."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: includes/licensing.php:537
|
1642 |
#. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
|
1643 |
msgid ""
|
1644 |
"If you think this is a mistake, please contact %1$sBusiness Directory "
|
1647 |
"purchase with your report."
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: includes/licensing.php:600
|
1651 |
msgid ""
|
1652 |
"It was not possible to establish a connection with the Business Directory "
|
1653 |
"server. The connection failed with the following error:"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: includes/licensing.php:613
|
1657 |
msgid ""
|
1658 |
"It was not possible to establish a connection with the Business Directory "
|
1659 |
"server. A problem occurred in the SSL/TSL handshake:"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: includes/licensing.php:660
|
1663 |
msgid ""
|
1664 |
"It looks like your server is not authorized to make outgoing requests to "
|
1665 |
"Business Directory servers. Please contact your webhost and ask them to add "
|
1666 |
"our IP address 52.0.78.177 to your allow list."
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: includes/licensing.php:754
|
1670 |
msgid "Business Directory license key is missing."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
+
#: includes/licensing.php:755
|
1674 |
msgid "Business Directory license key has expired"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
+
#: includes/licensing.php:756
|
1678 |
msgid "Could not verify Business Directory license."
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: includes/licensing.php:767
|
1682 |
msgid "Review license keys"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
+
#: includes/licensing.php:882
|
1686 |
msgid "Missing data. Please reload this page and try again."
|
1687 |
msgstr ""
|
1688 |
|
1689 |
+
#: includes/licensing.php:887
|
1690 |
msgid "Please enter a license key."
|
1691 |
msgstr ""
|
1692 |
|
3285 |
msgid "Attributes"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: includes/admin/helpers/tables/class-fees-table.php:141
|
3289 |
msgctxt "fees admin"
|
3290 |
msgid "Edit"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: includes/admin/helpers/tables/class-fees-table.php:210
|
3294 |
msgctxt "fees admin"
|
3295 |
msgid "Variable"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: includes/admin/helpers/tables/class-fees-table.php:215
|
3299 |
msgctxt "fees admin"
|
3300 |
msgid "%1$s + %2$s per category"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
#: includes/admin/helpers/tables/class-fees-table.php:234
|
3304 |
msgctxt "fees admin"
|
3305 |
msgid "Forever"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: includes/admin/helpers/tables/class-fees-table.php:236
|
3309 |
msgctxt "fees admin"
|
3310 |
msgid "%d day"
|
3311 |
msgid_plural "%d days"
|
3312 |
msgstr[0] ""
|
3313 |
msgstr[1] ""
|
3314 |
|
3315 |
+
#: includes/admin/helpers/tables/class-fees-table.php:266
|
3316 |
msgctxt "fees admin"
|
3317 |
msgid "All categories"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: includes/admin/helpers/tables/class-fees-table.php:295
|
3321 |
msgctxt "fees admin"
|
3322 |
msgid "Sticky"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: includes/admin/helpers/tables/class-fees-table.php:299
|
3326 |
msgctxt "fees admin"
|
3327 |
msgid "Recurring"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: includes/admin/helpers/tables/class-fees-table.php:303
|
3331 |
msgctxt "fees admin"
|
3332 |
msgid "Private"
|
3333 |
msgstr ""
|
5460 |
msgid "The slug \"%s\" is already in use for another taxonomy."
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: includes/licensing.php:247
|
5464 |
msgctxt "settings"
|
5465 |
msgid "Themes"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
+
#: includes/licensing.php:318 includes/licensing.php:319
|
5469 |
msgctxt "settings"
|
5470 |
msgid "Please wait..."
|
5471 |
msgstr ""
|
5472 |
|
5473 |
+
#: includes/licensing.php:319
|
5474 |
msgctxt "settings"
|
5475 |
msgid "Deauthorize"
|
5476 |
msgstr ""
|
7329 |
msgid "General"
|
7330 |
msgstr ""
|
7331 |
|
7332 |
+
#: includes/licensing.php:573
|
7333 |
msgctxt "licensing"
|
7334 |
msgid "Could not contact licensing server"
|
7335 |
msgstr ""
|
7336 |
|
7337 |
+
#: includes/licensing.php:586
|
7338 |
msgctxt "licensing"
|
7339 |
msgid ""
|
7340 |
"It was not possible to establish a connection with Business Directory's "
|
7341 |
"server. cURL was not found in your system"
|
7342 |
msgstr ""
|
7343 |
|
7344 |
+
#: includes/licensing.php:588 includes/licensing.php:618
|
7345 |
msgctxt "licensing"
|
7346 |
msgid ""
|
7347 |
"To ensure the security of our systems and adhere to industry best "
|
7350 |
"OpenSSL 1.0.1c)."
|
7351 |
msgstr ""
|
7352 |
|
7353 |
+
#: includes/licensing.php:590 includes/licensing.php:620
|
7354 |
msgctxt "licensing"
|
7355 |
msgid ""
|
7356 |
"Upgrading your system will not only allow you to communicate with Business "
|
7358 |
"services using the latest security standards."
|
7359 |
msgstr ""
|
7360 |
|
7361 |
+
#: includes/licensing.php:592
|
7362 |
msgctxt "licensing"
|
7363 |
msgid ""
|
7364 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7365 |
"Include this message if necessary"
|
7366 |
msgstr ""
|
7367 |
|
7368 |
+
#: includes/licensing.php:622
|
7369 |
msgctxt "licensing"
|
7370 |
msgid ""
|
7371 |
"Please contact your hosting provider and ask them to upgrade your system. "
|
7372 |
"Include this message if necessary."
|
7373 |
msgstr ""
|
7374 |
|
7375 |
+
#: includes/licensing.php:658
|
7376 |
msgctxt "licensing"
|
7377 |
msgid "The server returned a 403 Forbidden error."
|
7378 |
msgstr ""
|
7379 |
|
7380 |
+
#: includes/licensing.php:904
|
7381 |
msgctxt "licensing"
|
7382 |
msgid "Could not activate license: %s."
|
7383 |
msgstr ""
|
7384 |
|
7385 |
+
#: includes/licensing.php:909
|
7386 |
msgctxt "licensing"
|
7387 |
msgid "License activated"
|
7388 |
msgstr ""
|
7389 |
|
7390 |
+
#: includes/licensing.php:941
|
7391 |
msgctxt "licensing"
|
7392 |
msgid "Could not deactivate license: %s."
|
7393 |
msgstr ""
|
7394 |
|
7395 |
+
#: includes/licensing.php:943
|
7396 |
msgctxt "licensing"
|
7397 |
msgid "License deactivated"
|
7398 |
msgstr ""
|
7399 |
|
7400 |
+
#: includes/licensing.php:1183
|
7401 |
#. translators: "<module-name>" version <version-number> is not...
|
7402 |
msgctxt "deprecation"
|
7403 |
msgid ""
|
themes/default/theme.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
{
|
2 |
"name": "Default Theme",
|
3 |
"description": "The default look of Business Directory. A clean, basic look. This theme is always installed and cannot be removed.",
|
4 |
-
"version": "5.17",
|
5 |
"author": "Business Directory Team",
|
6 |
"author_email": "support@businessdirectoryplugin.com",
|
7 |
"author_url": "https://businessdirectoryplugin.com",
|
1 |
{
|
2 |
"name": "Default Theme",
|
3 |
"description": "The default look of Business Directory. A clean, basic look. This theme is always installed and cannot be removed.",
|
4 |
+
"version": "5.17.1",
|
5 |
"author": "Business Directory Team",
|
6 |
"author_email": "support@businessdirectoryplugin.com",
|
7 |
"author_url": "https://businessdirectoryplugin.com",
|