User registration & user profile – Profile Builder - Version 2.9.4

Version Description

  • Added (int) cast in manage fields meta name generation to prevent some php notices
  • Fixed issue with private website when the login page url contained a $_GET parameter
  • Added classes on body when Private Website is enabled and some css to hide the main menu container
Download this release

Release Info

Developer madalin.ungureanu
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 2.9.4
Comparing to
See all releases

Code changes from version 2.9.3 to 2.9.4

admin/manage-fields.php CHANGED
@@ -303,7 +303,7 @@ function wppb_get_meta_name( $option = 'wppb_manage_fields', $prefix = 'custom_f
303
  }
304
  if( !empty( $meta_numbers ) ){
305
  rsort( $meta_numbers );
306
- $id = $meta_numbers[0] + 1;
307
  }
308
  }
309
 
303
  }
304
  if( !empty( $meta_numbers ) ){
305
  rsort( $meta_numbers );
306
+ $id = (int)$meta_numbers[0] + 1;
307
  }
308
  }
309
 
assets/css/style-front-end.css CHANGED
@@ -813,4 +813,11 @@ ul.wppb-faceted-list .hide-this{
813
  /**************************************************/
814
  .wppb-user-forms table{
815
  border-collapse:separate;
816
- }
 
 
 
 
 
 
 
813
  /**************************************************/
814
  .wppb-user-forms table{
815
  border-collapse:separate;
816
+ }
817
+
818
+ /**************************************************/
819
+ /* Private Website CSS
820
+ /**************************************************/
821
+ .wppb-private-website.wppb-private-website-hide-menus .main-navigation{
822
+ display:none;
823
+ }
features/functions.php CHANGED
@@ -1105,7 +1105,6 @@ function wppb_private_website_functionality(){
1105
  return;
1106
 
1107
 
1108
- global $post;
1109
  if( isset( $wppb_private_website_settings['allowed_pages'] ) )
1110
  $allowed_pages = $wppb_private_website_settings['allowed_pages'];
1111
  else{
@@ -1129,7 +1128,13 @@ function wppb_private_website_functionality(){
1129
  $redirect_url = apply_filters( 'wppb_private_website_redirect_url', $redirect_url );
1130
  $allowed_pages = apply_filters( 'wppb_private_website_allowed_pages', $allowed_pages );
1131
 
1132
- if( !in_array( $post->ID, $allowed_pages ) && ( $redirect_url !== wppb_curpageurl() ) ){
 
 
 
 
 
 
1133
  wp_safe_redirect( $redirect_url );
1134
  exit;
1135
  }
@@ -1139,6 +1144,24 @@ function wppb_private_website_functionality(){
1139
  }
1140
  }
1141
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1142
 
1143
  /**
1144
  * Disable RSS
1105
  return;
1106
 
1107
 
 
1108
  if( isset( $wppb_private_website_settings['allowed_pages'] ) )
1109
  $allowed_pages = $wppb_private_website_settings['allowed_pages'];
1110
  else{
1128
  $redirect_url = apply_filters( 'wppb_private_website_redirect_url', $redirect_url );
1129
  $allowed_pages = apply_filters( 'wppb_private_website_allowed_pages', $allowed_pages );
1130
 
1131
+ global $post;
1132
+ if( !isset( $post ) )
1133
+ $post_id = 0;
1134
+ else
1135
+ $post_id = $post->ID;
1136
+
1137
+ if( !in_array( $post_id, $allowed_pages ) && ( $redirect_url !== strtok( wppb_curpageurl(), '?' ) ) ){
1138
  wp_safe_redirect( $redirect_url );
1139
  exit;
1140
  }
1144
  }
1145
  }
1146
 
1147
+ //add classes on the body to know if we have enabled private website options
1148
+ add_filter( 'body_class', 'wppb_private_website_body_classes' );
1149
+ function wppb_private_website_body_classes( $classes ){
1150
+ $wppb_private_website_settings = get_option( 'wppb_private_website_settings', 'not_found' );
1151
+ if( $wppb_private_website_settings != 'not_found' ) {
1152
+ if ($wppb_private_website_settings['private_website'] == 'yes') {
1153
+ if (!is_user_logged_in()) {
1154
+ $classes[] = 'wppb-private-website';
1155
+ if ($wppb_private_website_settings['hide_menus'] == 'yes') {
1156
+ $classes[] = 'wppb-private-website-hide-menus';
1157
+ }
1158
+ }
1159
+ }
1160
+ }
1161
+
1162
+ return $classes;
1163
+ }
1164
+
1165
 
1166
  /**
1167
  * Disable RSS
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 2.9.3
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
@@ -75,7 +75,7 @@ function wppb_free_plugin_init() {
75
  *
76
  *
77
  */
78
- define('PROFILE_BUILDER_VERSION', '2.9.3' );
79
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
80
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
81
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can choose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 2.9.4
7
  Author: Cozmoslabs
8
  Author URI: https://www.cozmoslabs.com/
9
  Text Domain: profile-builder
75
  *
76
  *
77
  */
78
+ define('PROFILE_BUILDER_VERSION', '2.9.4' );
79
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
80
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
81
  define('WPPB_PLUGIN_BASENAME', plugin_basename(__FILE__));
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungurea
3
  Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
- Tested up to: 4.9.8
7
- Stable tag: 2.9.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -167,6 +167,11 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
167
  12. Role Editor
168
 
169
  == Changelog ==
 
 
 
 
 
170
  = 2.9.3 =
171
  * Display name shows properly in admin bar if login with email is selected
172
  * Fixed Buddypress add-on import fields error
3
  Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
+ Tested up to: 5.0.1
7
+ Stable tag: 2.9.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
167
  12. Role Editor
168
 
169
  == Changelog ==
170
+ = 2.9.4 =
171
+ * Added (int) cast in manage fields meta name generation to prevent some php notices
172
+ * Fixed issue with private website when the login page url contained a $_GET parameter
173
+ * Added classes on body when Private Website is enabled and some css to hide the main menu container
174
+
175
  = 2.9.3 =
176
  * Display name shows properly in admin bar if login with email is selected
177
  * Fixed Buddypress add-on import fields error
translation/profile-builder-ar.po CHANGED
@@ -1,5598 +1,5598 @@
1
- # Translation of Profile Builder in Arabic
2
- # This file is distributed under the same license as the Profile Builder package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2017-08-01 13:42:23+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Profile Builder\n"
12
-
13
- #: profile-builder-2.0/admin/general-settings.php:154
14
- msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
15
- msgstr ""
16
-
17
- #: profile-builder-2.0/admin/general-settings.php:146
18
- msgid "\"Roles Editor\" Activated:"
19
- msgstr ""
20
-
21
- #: profile-builder-2.0/features/roles-editor/roles-editor.php:300
22
- msgid "M j, Y @ G:i"
23
- msgstr ""
24
-
25
- #: profile-builder-2.0/front-end/recover.php:117
26
- msgid "Please enter your email address."
27
- msgstr ""
28
-
29
- #: profile-builder-2.0/admin/manage-fields.php:127
30
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
31
- msgstr "حدد تنسيق التاريخ عند استخدام منسق التاريخ <br/>الخيارات الصحيحة: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If إذا لم يتم تحديد mm/dd/yy"
32
-
33
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
34
- msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
35
- msgstr "عمليات إعادة التوجيه الفردية المعرفة في الرموز القصيرة; <strong><em>redirect_priority=\"top\"</em></strong> يمكن إضافة المعاملات في أي رمز قصير، فستكون أولوية إعادة توجيه الرمز القصير هذه على جميع عمليات إعادة التوجيه الأخرى."
36
-
37
- #: profile-builder-2.0/admin/manage-fields.php:1217
38
- msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
39
- msgstr "إذا كنت مهتما بعرض حقول مختلفة في نماذج تسجيل الملف الشخصي وتعديلها، يرجى استخدام وحدات النماذج المتعددة للتسجيل والتعديل الشخصي للملفات الشخصية."
40
-
41
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
42
- msgid "Multiple Registration and Edit Profile form settings Redirects"
43
- msgstr "إعدادات متعددة لإعادة التوجيه لنموذج تسجيل وتحرير الملف الشخصي"
44
-
45
- #: profile-builder-2.0/admin/register-version.php:251
46
- msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
47
- msgstr "<p>إن ترخيص <strong>Profile Builder</strong> على وشك الانتهاء في %5$s. <br/>الرجاء %1$s تجديد الترخيص %2$s لمتابعة تلقي إمكانية الوصول |إلى تحميل المنتجات والتحديثات التلقائية والدعم. %3$s جدد الآن واحصل على خصم 40&#37; %4$s %6$s تجاهل %7$s</p>"
48
-
49
- #: profile-builder-2.0/admin/register-version.php:246
50
- msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
51
- msgstr "<p>إن ترخيص <strong>Profile Builder</strong> قد انتهى. <br/>الرجاء %1$s تجديد الترخيص %2$s لمتابعة تلقي إمكانية الوصول |إلى تحميل المنتجات والتحديثات التلقائية والدعم. %3$s جدد الآن واحصل على خصم 40&#37; %4$s %6$s تجاهل %7$s</p>"
52
-
53
- #: profile-builder-2.0/front-end/recover.php:159
54
- msgid "You are already logged in. You can change your password on the edit profile form."
55
- msgstr "لقد قمت بالفعل بتسجيل الدخول. يمكنك تغيير كلمة المرور الخاصة بك في نموذج تحرير الملف الشخصي."
56
-
57
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
58
- msgid "Your site url will look like this:<br>"
59
- msgstr "سيبدو عنوان موقعك على هذا النحو: <br>"
60
-
61
- #: profile-builder-2.0/features/functions.php:909
62
- msgid "<br><br>You can visit your site at "
63
- msgstr "<br><br>يمكنك زيارة موقعك على"
64
-
65
- #: profile-builder-2.0/features/functions.php:896
66
- msgid "<br><br>Also, you will be able to visit your site at "
67
- msgstr "<br><br>كما ستتمكن من زيارة موقعك على"
68
-
69
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
70
- msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
71
- msgstr "الخصوصية: أرغب في ظهور موقعي في محركات البحث، وفي القوائم العامة حول هذه الشبكة."
72
-
73
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
74
- msgid "Site Title"
75
- msgstr "عنوان الموقع"
76
-
77
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
78
- msgid "Site URL slug"
79
- msgstr "عنوان الموقع"
80
-
81
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
82
- msgid "Yes, I'd like to create a new site"
83
- msgstr "نعم، أريد إنشاء موقع جديد"
84
-
85
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
86
- #: profile-builder-2.0/modules/user-listing/userlisting.php:118
87
- msgid "Blog URL"
88
- msgstr "عنوان المدونة"
89
-
90
- #: profile-builder-2.0/admin/admin-functions.php:44
91
- msgid "Blog Details - only appears on the Registration page!"
92
- msgstr "تفاصيل المدونة - يظهر فقط على صفحة التسجيل!"
93
-
94
- #: profile-builder-2.0/admin/manage-fields.php:222
95
- msgid "Blog Details"
96
- msgstr "تفاصيل المدونة"
97
-
98
- #: profile-builder-2.0/admin/pms-cross-promotion.php:239
99
- msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
100
- msgstr "السماح للمستخدمين بالحصول على <strong>حسابات مدفوعة باستخدام أداةProfile Builder</strong>. %1$sمعرفة المزيد >%2$s %3$sتجاهل%4$s"
101
-
102
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
103
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
104
- msgstr "مرحبا بك في %1$s! <br/> <br/> <br/> اسم المستخدم الخاص بك هو: %2$s"
105
-
106
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
107
- msgid "View Map"
108
- msgstr "معاينة الخريطة"
109
-
110
- #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
111
- #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
112
- #: pb-add-on-woocommerce/index.php:493
113
- msgid "Address line 2"
114
- msgstr ""
115
-
116
- #: pb-add-on-woocommerce/index.php:256
117
- msgid "Billing Fields"
118
- msgstr ""
119
-
120
- #: pb-add-on-woocommerce/index.php:256
121
- msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
122
- msgstr ""
123
-
124
- #: pb-add-on-woocommerce/index.php:257
125
- msgid "Billing Fields Order"
126
- msgstr ""
127
-
128
- #: pb-add-on-woocommerce/index.php:257
129
- msgid "Save the billing fields order from the billing fields checkboxes"
130
- msgstr ""
131
-
132
- #: pb-add-on-woocommerce/index.php:258
133
- msgid "Billing Fields Name"
134
- msgstr ""
135
-
136
- #: pb-add-on-woocommerce/index.php:258
137
- msgid "Save the billing fields names"
138
- msgstr ""
139
-
140
- #: pb-add-on-woocommerce/index.php:275
141
- msgid "Shipping Fields"
142
- msgstr ""
143
-
144
- #: pb-add-on-woocommerce/index.php:275
145
- msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
146
- msgstr ""
147
-
148
- #: pb-add-on-woocommerce/index.php:276
149
- msgid "Shipping Fields Order"
150
- msgstr ""
151
-
152
- #: pb-add-on-woocommerce/index.php:276
153
- msgid "Save the shipping fields order from the billing fields checkboxes"
154
- msgstr ""
155
-
156
- #: pb-add-on-woocommerce/index.php:277
157
- msgid "Shipping Fields Name"
158
- msgstr ""
159
-
160
- #: pb-add-on-woocommerce/index.php:277
161
- msgid "Save the shipping fields names"
162
- msgstr ""
163
-
164
- #: pb-add-on-woocommerce/index.php:305
165
- msgid "Field Name"
166
- msgstr ""
167
-
168
- #: pb-add-on-woocommerce/index.php:369
169
- msgid "Click to edit "
170
- msgstr ""
171
-
172
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
173
- msgid "is not a valid phone number."
174
- msgstr ""
175
-
176
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
177
- msgid "is not a number."
178
- msgstr ""
179
-
180
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
181
- msgid "must be a multiplier of "
182
- msgstr ""
183
-
184
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
185
- msgid "must be a greater than or equal to "
186
- msgstr ""
187
-
188
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
189
- msgid "must be less than or equal to "
190
- msgstr ""
191
-
192
- #: profile-builder-2.0/admin/add-ons.php:103
193
- msgid "Available in Hobbyist and Pro Versions"
194
- msgstr "متوفر في اصدارات Hobbyist و Pro"
195
-
196
- #: profile-builder-2.0/admin/add-ons.php:105
197
- msgid "Available in All Versions"
198
- msgstr "متوفر في جميع الإصدارات"
199
-
200
- #: profile-builder-2.0/admin/add-ons.php:148
201
- msgid "Learn More"
202
- msgstr "تعلم المزيد"
203
-
204
- #: profile-builder-2.0/admin/basic-info.php:99
205
- msgid "Timepicker"
206
- msgstr "منتقي الوقت"
207
-
208
- #: profile-builder-2.0/admin/basic-info.php:100
209
- msgid "Colorpicker"
210
- msgstr "منتقي اللون"
211
-
212
- #: profile-builder-2.0/admin/basic-info.php:103
213
- msgid "Currency Select"
214
- msgstr "تحديد العملة"
215
-
216
- #: profile-builder-2.0/admin/basic-info.php:109
217
- msgid "Number"
218
- msgstr "رقم"
219
-
220
- #: profile-builder-2.0/admin/basic-info.php:114
221
- msgid "Validation"
222
- msgstr "التحقق"
223
-
224
- #: profile-builder-2.0/admin/basic-info.php:115
225
- msgid "Map"
226
- msgstr "خريطة"
227
-
228
- #: profile-builder-2.0/admin/basic-info.php:116
229
- msgid "HTML"
230
- msgstr "HTML"
231
-
232
- #: profile-builder-2.0/admin/basic-info.php:162
233
- #: profile-builder-2.0/modules/modules.php:117
234
- msgid "Repeater Fields"
235
- msgstr "حقول التكرار"
236
-
237
- #: profile-builder-2.0/admin/basic-info.php:163
238
- msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
239
- msgstr "إعداد مجموعة متكررة من الحقول على نماذج التسجيل وتعديل الملف الشخصي. قم بتحديد عدد المجموعات المتكررة لكل دور مستخدم."
240
-
241
- #: profile-builder-2.0/admin/general-settings.php:59
242
- msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
243
- msgstr "يعمل مع نماذج الواجهة الأمامية فقط. يوصى بإعادة توجيه تسجيل الافتراضي ل WP إلى نموذج Profile Builder يستخدم وحدة \"إعادة توجيه مخصص\"."
244
-
245
- #: profile-builder-2.0/admin/manage-fields.php:120
246
- msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
247
- msgstr "استخدم هذا مع وظائف ووردبريس لعرض القيمة في الصفحة التي تختارها <br/> الإكمال التلقائي ولكن في بعض الحالات قابل للتعديل (وفي هذه الحالة يجب أن تكون فريدة من نوعها) <br/> قد يستغرق تغيير هذا الأمر وقتا طويلا في حالة وجود عدد كبير من المستخدمين"
248
-
249
- #: profile-builder-2.0/admin/manage-fields.php:143
250
- msgid "Show Currency Symbol"
251
- msgstr "إظهار رمز العملة"
252
-
253
- #: profile-builder-2.0/admin/manage-fields.php:143
254
- msgid "Whether the currency symbol should be displayed after the currency name in the select option."
255
- msgstr "ما إذا كان يجب عرض رمز العملة بعد اسم العملة في الخيار المحدد."
256
-
257
- #: profile-builder-2.0/admin/manage-fields.php:144
258
- msgid "Show Post Type"
259
- msgstr "عرض نوع المقال"
260
-
261
- #: profile-builder-2.0/admin/manage-fields.php:144
262
- msgid "Posts from what post type will be displayed in the select."
263
- msgstr "سيتم عرض المقالات من نوع المقال في التحديد."
264
-
265
- #: profile-builder-2.0/admin/manage-fields.php:145
266
- msgid "Allowable Values"
267
- msgstr "القيم المسموح بها"
268
-
269
- #: profile-builder-2.0/admin/manage-fields.php:145
270
- msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
271
- msgstr "أدخل قائمة مفصولة بفواصل للقيم المحتملة. عند التسجيل إذا كانت القيمة المقدمة من قبل المستخدم لا تتطابق مع إحدى هذه القيم، لن يتم تسجيل المستخدم."
272
-
273
- #: profile-builder-2.0/admin/manage-fields.php:146
274
- msgid "Error Message"
275
- msgstr "رسالة خطأ"
276
-
277
- #: profile-builder-2.0/admin/manage-fields.php:146
278
- msgid "Set a custom error message that will be displayed to the user."
279
- msgstr "قم بتعيين رسالة خطأ مخصصة ليتم عرضها للمستخدم."
280
-
281
- #: profile-builder-2.0/admin/manage-fields.php:147
282
- msgid "Time Format"
283
- msgstr "صيغة الوقت"
284
-
285
- #: profile-builder-2.0/admin/manage-fields.php:147
286
- msgid "Specify the time format."
287
- msgstr "تحديد صيغة الوقت"
288
-
289
- #: profile-builder-2.0/admin/manage-fields.php:148
290
- msgid "Google Maps API Key"
291
- msgstr "مفتاح API لخرائط Google"
292
-
293
- #: profile-builder-2.0/admin/manage-fields.php:148
294
- msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
295
- msgstr "أدخل مفتاح واجهة برمجة تطبيقات خرائط Google (<a href=\"https://console.developers.google.com/flows/enableapi؟apiid=maps_backend\" target=\"_blank\"> احصل على مفتاح واجهة برمجة التطبيقات </a>). إذا تم إضافة أكثر من حقل خريطة إلى نموذج سيتم استخدام مفتاح API من الخريطة الأولى المعروضة."
296
-
297
- #: profile-builder-2.0/admin/manage-fields.php:149
298
- msgid "Default Latitude"
299
- msgstr "خط العرض الافتراضي"
300
-
301
- #: profile-builder-2.0/admin/manage-fields.php:149
302
- msgid "The latitude at which the map should be displayed when no pins are attached."
303
- msgstr "خط العرض الذي يجب أن يتم عرضه في الخريطة عند عدم ربط أي دبابيس."
304
-
305
- #: profile-builder-2.0/admin/manage-fields.php:150
306
- msgid "Default Longitude"
307
- msgstr "الطول الافتراضي"
308
-
309
- #: profile-builder-2.0/admin/manage-fields.php:150
310
- msgid "The longitude at which the map should be displayed when no pins are attached."
311
- msgstr "خط الطول الذي يجب أن يتم عرضه في الخريطة عند عدم ربط أي دبابيس."
312
-
313
- #: profile-builder-2.0/admin/manage-fields.php:151
314
- msgid "Default Zoom Level"
315
- msgstr "مستوى التكبير الافتراضي"
316
-
317
- #: profile-builder-2.0/admin/manage-fields.php:151
318
- msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
319
- msgstr "إضافة رقم من 0 إلى 19. كل ما زاد الرقم زاد التكبير."
320
-
321
- #: profile-builder-2.0/admin/manage-fields.php:152
322
- msgid "Map Height"
323
- msgstr "ارتفاع الخريطة"
324
-
325
- #: profile-builder-2.0/admin/manage-fields.php:152
326
- msgid "The height of the map."
327
- msgstr "ارتفاع الخريطة."
328
-
329
- #: profile-builder-2.0/admin/manage-fields.php:154
330
- msgid "HTML Content"
331
- msgstr "محتوى HTML"
332
-
333
- #: profile-builder-2.0/admin/manage-fields.php:154
334
- msgid "Add your HTML (or text) content"
335
- msgstr "أضف محتوى HTML (أو نص)"
336
-
337
- #: profile-builder-2.0/admin/manage-fields.php:155
338
- msgid "Phone Format"
339
- msgstr "تنسيق الهاتف"
340
-
341
- #: profile-builder-2.0/admin/manage-fields.php:155
342
- msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
343
- msgstr "يمكنك استخدام: # للأرقام، الأقواس ()، - علامة، + علامة، نقطة. والمساحات."
344
-
345
- #: profile-builder-2.0/admin/manage-fields.php:155
346
- msgid "Eg. (###) ###-####"
347
- msgstr "مثال. (###) ###-####"
348
-
349
- #: profile-builder-2.0/admin/manage-fields.php:155
350
- msgid "Empty field won't check for correct phone number."
351
- msgstr "لن يقوم الحقل الفارغ بالتحقق من رقم الهاتف الصحيح."
352
-
353
- #: profile-builder-2.0/admin/manage-fields.php:156
354
- msgid "Heading Tag"
355
- msgstr "عنوان العلامة"
356
-
357
- #: profile-builder-2.0/admin/manage-fields.php:156
358
- msgid "Change heading field size on front-end forms"
359
- msgstr "تغيير حجم حقل العنوان في نماذج الواجهة الأمامية"
360
-
361
- #: profile-builder-2.0/admin/manage-fields.php:157
362
- msgid "Min Number Value"
363
- msgstr "الحد الأدنى لقيمة الرقم"
364
-
365
- #: profile-builder-2.0/admin/manage-fields.php:157
366
- msgid "Min allowed number value (0 to allow only positive numbers)"
367
- msgstr "الحد الأدنى المسموح به لقيمة الرقم (0 للسماح للأرقام الإيجابية فقط)"
368
-
369
- #: profile-builder-2.0/admin/manage-fields.php:157
370
- msgid "Leave it empty for no min value"
371
- msgstr "اتركه فارغا لعدم تحديد الحد الأدنى"
372
-
373
- #: profile-builder-2.0/admin/manage-fields.php:158
374
- msgid "Max Number Value"
375
- msgstr "الحد الأعلى لقيمة الرقم"
376
-
377
- #: profile-builder-2.0/admin/manage-fields.php:158
378
- msgid "Max allowed number value (0 to allow only negative numbers)"
379
- msgstr "الحد الأعلى المسموح به لقيمة الرقم (0 للسماح للأرقام الإيجابية فقط)"
380
-
381
- #: profile-builder-2.0/admin/manage-fields.php:158
382
- msgid "Leave it empty for no max value"
383
- msgstr "اتركه فارغا لعدم تحديد الحد الأعلى"
384
-
385
- #: profile-builder-2.0/admin/manage-fields.php:159
386
- msgid "Number Step Value"
387
- msgstr "قيمة خطوة الرقم"
388
-
389
- #: profile-builder-2.0/admin/manage-fields.php:159
390
- msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
391
- msgstr "قيمة الخطوة 1 للسماح الأعداد الصحيحة فقط، 0.1 للسماح الأعداد الصحيحة والأرقام مع رقم عشري واحد"
392
-
393
- #: profile-builder-2.0/admin/manage-fields.php:159
394
- msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
395
- msgstr "للسماح للعديد من الكسور العشرية المستخدمة على سبيل المثال. 0.01 (ل 2 عشري) وما إلى ذلك"
396
-
397
- #: profile-builder-2.0/admin/manage-fields.php:159
398
- msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
399
- msgstr "يمكنك أيضا استخدام قيمة الخطوة لتحديد فترات الرقم القانوني (على سبيل المثال الخطوة 2 سوف تسمح فقط -4، -2، 0، 2 وما إلى ذلك)"
400
-
401
- #: profile-builder-2.0/admin/manage-fields.php:159
402
- msgid "Leave it empty for no restriction"
403
- msgstr "اتركه فارغا بدون قيود"
404
-
405
- #: profile-builder-2.0/admin/manage-fields.php:564
406
- msgid "Albania Lek"
407
- msgstr "ليك ألبانيا"
408
-
409
- #: profile-builder-2.0/admin/manage-fields.php:565
410
- msgid "Afghanistan Afghani"
411
- msgstr "أفغانستان الأفغاني"
412
-
413
- #: profile-builder-2.0/admin/manage-fields.php:566
414
- msgid "Argentina Peso"
415
- msgstr "البيزو الأرجنتيني"
416
-
417
- #: profile-builder-2.0/admin/manage-fields.php:567
418
- msgid "Aruba Guilder"
419
- msgstr "أروبا غيلدر"
420
-
421
- #: profile-builder-2.0/admin/manage-fields.php:568
422
- msgid "Australia Dollar"
423
- msgstr "دولار استرالي"
424
-
425
- #: profile-builder-2.0/admin/manage-fields.php:569
426
- msgid "Azerbaijan New Manat"
427
- msgstr "أذربيجان الجديدة مانات"
428
-
429
- #: profile-builder-2.0/admin/manage-fields.php:570
430
- msgid "Bahamas Dollar"
431
- msgstr "الدولار الباهاما"
432
-
433
- #: profile-builder-2.0/admin/manage-fields.php:571
434
- msgid "Barbados Dollar"
435
- msgstr "دولار بربادوس"
436
-
437
- #: profile-builder-2.0/admin/manage-fields.php:572
438
- msgid "Bangladeshi taka"
439
- msgstr "تاكا بنغلاديشية"
440
-
441
- #: profile-builder-2.0/admin/manage-fields.php:573
442
- msgid "Belarus Ruble"
443
- msgstr "روبل روسيا البيضاء"
444
-
445
- #: profile-builder-2.0/admin/manage-fields.php:574
446
- msgid "Belize Dollar"
447
- msgstr "دولار بليز"
448
-
449
- #: profile-builder-2.0/admin/manage-fields.php:575
450
- msgid "Bermuda Dollar"
451
- msgstr "دولار برمودا"
452
-
453
- #: profile-builder-2.0/admin/manage-fields.php:576
454
- msgid "Bolivia Boliviano"
455
- msgstr "بوليفيا بوليفيانو"
456
-
457
- #: profile-builder-2.0/admin/manage-fields.php:577
458
- msgid "Bosnia and Herzegovina Convertible Marka"
459
- msgstr "ماركا للتحويل البوسنة والهرسك"
460
-
461
- #: profile-builder-2.0/admin/manage-fields.php:578
462
- msgid "Botswana Pula"
463
- msgstr "بوتسوانا، بولا"
464
-
465
- #: profile-builder-2.0/admin/manage-fields.php:579
466
- msgid "Bulgaria Lev"
467
- msgstr "بلغاريا ليف"
468
-
469
- #: profile-builder-2.0/admin/manage-fields.php:580
470
- msgid "Brazil Real"
471
- msgstr "ريال برازيلي"
472
-
473
- #: profile-builder-2.0/admin/manage-fields.php:581
474
- msgid "Brunei Darussalam Dollar"
475
- msgstr "دولار بروناى دار السلام"
476
-
477
- #: profile-builder-2.0/admin/manage-fields.php:582
478
- msgid "Cambodia Riel"
479
- msgstr "ريال كمبودي"
480
-
481
- #: profile-builder-2.0/admin/manage-fields.php:583
482
- msgid "Canada Dollar"
483
- msgstr "دولار كندي"
484
-
485
- #: profile-builder-2.0/admin/manage-fields.php:584
486
- msgid "Cayman Islands Dollar"
487
- msgstr "دولار جزر كايمان"
488
-
489
- #: profile-builder-2.0/admin/manage-fields.php:585
490
- msgid "Chile Peso"
491
- msgstr "شيلي بيزو"
492
-
493
- #: profile-builder-2.0/admin/manage-fields.php:586
494
- msgid "China Yuan Renminbi"
495
- msgstr "الصين يوان رينمينبي"
496
-
497
- #: profile-builder-2.0/admin/manage-fields.php:587
498
- msgid "Colombia Peso"
499
- msgstr "بيزو كولومبيا"
500
-
501
- #: profile-builder-2.0/admin/manage-fields.php:588
502
- msgid "Costa Rica Colon"
503
- msgstr "كوستاريكا كولون"
504
-
505
- #: profile-builder-2.0/admin/manage-fields.php:589
506
- msgid "Croatia Kuna"
507
- msgstr "كونا كرواتية"
508
-
509
- #: profile-builder-2.0/admin/manage-fields.php:590
510
- msgid "Cuba Peso"
511
- msgstr "كوبا بيزو"
512
-
513
- #: profile-builder-2.0/admin/manage-fields.php:591
514
- msgid "Czech Republic Koruna"
515
- msgstr "الجمهورية التشيكية كورونا"
516
-
517
- #: profile-builder-2.0/admin/manage-fields.php:592
518
- msgid "Denmark Krone"
519
- msgstr "كرون دنماركي"
520
-
521
- #: profile-builder-2.0/admin/manage-fields.php:593
522
- msgid "Dominican Republic Peso"
523
- msgstr "بيزو جمهورية الدومينيكان"
524
-
525
- #: profile-builder-2.0/admin/manage-fields.php:594
526
- msgid "East Caribbean Dollar"
527
- msgstr "دولار شرق الكاريبي"
528
-
529
- #: profile-builder-2.0/admin/manage-fields.php:595
530
- msgid "Egypt Pound"
531
- msgstr "جنيه مصري"
532
-
533
- #: profile-builder-2.0/admin/manage-fields.php:596
534
- msgid "El Salvador Colon"
535
- msgstr "السلفادور، الكولون"
536
-
537
- #: profile-builder-2.0/admin/manage-fields.php:597
538
- msgid "Estonia Kroon"
539
- msgstr "إستونيا كرون"
540
-
541
- #: profile-builder-2.0/admin/manage-fields.php:598
542
- msgid "Euro"
543
- msgstr "يورو"
544
-
545
- #: profile-builder-2.0/admin/manage-fields.php:599
546
- msgid "Falkland Islands (Malvinas) Pound"
547
- msgstr "جزر فوكلاند (مالفيناس) جنيه"
548
-
549
- #: profile-builder-2.0/admin/manage-fields.php:600
550
- msgid "Fiji Dollar"
551
- msgstr "دولار فيجى"
552
-
553
- #: profile-builder-2.0/admin/manage-fields.php:601
554
- msgid "Ghana Cedis"
555
- msgstr "غانا سيديس"
556
-
557
- #: profile-builder-2.0/admin/manage-fields.php:602
558
- msgid "Gibraltar Pound"
559
- msgstr "جنيه جبل طارق"
560
-
561
- #: profile-builder-2.0/admin/manage-fields.php:603
562
- msgid "Guatemala Quetzal"
563
- msgstr "غواتيمالا كيتزال"
564
-
565
- #: profile-builder-2.0/admin/manage-fields.php:604
566
- msgid "Guernsey Pound"
567
- msgstr "جنيه غيرنسي"
568
-
569
- #: profile-builder-2.0/admin/manage-fields.php:605
570
- msgid "Guyana Dollar"
571
- msgstr "دولار غيانا"
572
-
573
- #: profile-builder-2.0/admin/manage-fields.php:606
574
- msgid "Honduras Lempira"
575
- msgstr "هندوراس ليمبيرا"
576
-
577
- #: profile-builder-2.0/admin/manage-fields.php:607
578
- msgid "Hong Kong Dollar"
579
- msgstr "دولار هونج كونج"
580
-
581
- #: profile-builder-2.0/admin/manage-fields.php:608
582
- msgid "Hungary Forint"
583
- msgstr "فورينت مجري"
584
-
585
- #: profile-builder-2.0/admin/manage-fields.php:609
586
- msgid "Iceland Krona"
587
- msgstr "كرونا آيسلندي"
588
-
589
- #: profile-builder-2.0/admin/manage-fields.php:610
590
- msgid "India Rupee"
591
- msgstr "روبية هندية"
592
-
593
- #: profile-builder-2.0/admin/manage-fields.php:611
594
- msgid "Indonesia Rupiah"
595
- msgstr "روبية إندونيسية"
596
-
597
- #: profile-builder-2.0/admin/manage-fields.php:612
598
- msgid "Iran Rial"
599
- msgstr "ريال إيراني"
600
-
601
- #: profile-builder-2.0/admin/manage-fields.php:613
602
- msgid "Isle of Man Pound"
603
- msgstr "جنيه جزيرة آيل أوف مان"
604
-
605
- #: profile-builder-2.0/admin/manage-fields.php:614
606
- msgid "Israel Shekel"
607
- msgstr "شيكل الكيان الصهيوني"
608
-
609
- #: profile-builder-2.0/admin/manage-fields.php:615
610
- msgid "Jamaica Dollar"
611
- msgstr "دولار جامايكي"
612
-
613
- #: profile-builder-2.0/admin/manage-fields.php:616
614
- msgid "Japan Yen"
615
- msgstr "الين الياباني"
616
-
617
- #: profile-builder-2.0/admin/manage-fields.php:617
618
- msgid "Jersey Pound"
619
- msgstr "جنيه جيرزي"
620
-
621
- #: profile-builder-2.0/admin/manage-fields.php:618
622
- msgid "Kazakhstan Tenge"
623
- msgstr "كازاخستان تنغي"
624
-
625
- #: profile-builder-2.0/admin/manage-fields.php:619
626
- msgid "Korea (North) Won"
627
- msgstr "كوريا (الشمالية) وون"
628
-
629
- #: profile-builder-2.0/admin/manage-fields.php:620
630
- msgid "Korea (South) Won"
631
- msgstr "كوريا (الجنوبية) وون"
632
-
633
- #: profile-builder-2.0/admin/manage-fields.php:621
634
- msgid "Kyrgyzstan Som"
635
- msgstr "قيرغيزستان سوم"
636
-
637
- #: profile-builder-2.0/admin/manage-fields.php:622
638
- msgid "Laos Kip"
639
- msgstr "لاوس كيب"
640
-
641
- #: profile-builder-2.0/admin/manage-fields.php:623
642
- msgid "Latvia Lat"
643
- msgstr "لاتفيا لات"
644
-
645
- #: profile-builder-2.0/admin/manage-fields.php:624
646
- msgid "Lebanon Pound"
647
- msgstr "جنيه لبناني"
648
-
649
- #: profile-builder-2.0/admin/manage-fields.php:625
650
- msgid "Liberia Dollar"
651
- msgstr "دولار الليبيري"
652
-
653
- #: profile-builder-2.0/admin/manage-fields.php:626
654
- msgid "Lithuania Litas"
655
- msgstr "ليتوانيا الليتاس"
656
-
657
- #: profile-builder-2.0/admin/manage-fields.php:627
658
- msgid "Macedonia Denar"
659
- msgstr "دينار مقدوني"
660
-
661
- #: profile-builder-2.0/admin/manage-fields.php:628
662
- msgid "Malaysia Ringgit"
663
- msgstr "رينغيت ماليزيا"
664
-
665
- #: profile-builder-2.0/admin/manage-fields.php:629
666
- msgid "Mauritius Rupee"
667
- msgstr "روبي موريشيوس"
668
-
669
- #: profile-builder-2.0/admin/manage-fields.php:630
670
- msgid "Mexico Peso"
671
- msgstr "بيزو مكسيكي"
672
-
673
- #: profile-builder-2.0/admin/manage-fields.php:631
674
- msgid "Mongolia Tughrik"
675
- msgstr "منغوليا توغريك"
676
-
677
- #: profile-builder-2.0/admin/manage-fields.php:632
678
- msgid "Mozambique Metical"
679
- msgstr "موزمبيق ميتيكال"
680
-
681
- #: profile-builder-2.0/admin/manage-fields.php:633
682
- msgid "Namibia Dollar"
683
- msgstr "دولار ناميبي"
684
-
685
- #: profile-builder-2.0/admin/manage-fields.php:634
686
- msgid "Nepal Rupee"
687
- msgstr "روبية نيبال"
688
-
689
- #: profile-builder-2.0/admin/manage-fields.php:635
690
- msgid "Netherlands Antilles Guilder"
691
- msgstr "هولندا أنتيليان غيلدر"
692
-
693
- #: profile-builder-2.0/admin/manage-fields.php:636
694
- msgid "New Zealand Dollar"
695
- msgstr "دولار نيوزيلندي"
696
-
697
- #: profile-builder-2.0/admin/manage-fields.php:637
698
- msgid "Nicaragua Cordoba"
699
- msgstr "نيكاراغوا قرطبة"
700
-
701
- #: profile-builder-2.0/admin/manage-fields.php:638
702
- msgid "Nigeria Naira"
703
- msgstr "نيرة نيجيرية"
704
-
705
- #: profile-builder-2.0/admin/manage-fields.php:639
706
- msgid "Norway Krone"
707
- msgstr "كرون نرويجي"
708
-
709
- #: profile-builder-2.0/admin/manage-fields.php:640
710
- msgid "Oman Rial"
711
- msgstr "ريال عماني"
712
-
713
- #: profile-builder-2.0/admin/manage-fields.php:641
714
- msgid "Pakistan Rupee"
715
- msgstr "روبية باكستانية"
716
-
717
- #: profile-builder-2.0/admin/manage-fields.php:642
718
- msgid "Panama Balboa"
719
- msgstr "بنما بالبوا"
720
-
721
- #: profile-builder-2.0/admin/manage-fields.php:643
722
- msgid "Paraguay Guarani"
723
- msgstr "جواراني باراجواي"
724
-
725
- #: profile-builder-2.0/admin/manage-fields.php:644
726
- msgid "Peru Nuevo Sol"
727
- msgstr "بيرو نويفو سول"
728
-
729
- #: profile-builder-2.0/admin/manage-fields.php:645
730
- msgid "Philippines Peso"
731
- msgstr "بيسو فلبيني"
732
-
733
- #: profile-builder-2.0/admin/manage-fields.php:646
734
- msgid "Poland Zloty"
735
- msgstr "بولندا زلوتي"
736
-
737
- #: profile-builder-2.0/admin/manage-fields.php:647
738
- msgid "Qatar Riyal"
739
- msgstr "ريال قطري"
740
-
741
- #: profile-builder-2.0/admin/manage-fields.php:648
742
- msgid "Romania New Leu"
743
- msgstr "ليو روماني جديد"
744
-
745
- #: profile-builder-2.0/admin/manage-fields.php:649
746
- msgid "Russia Ruble"
747
- msgstr "روبل روسي"
748
-
749
- #: profile-builder-2.0/admin/manage-fields.php:650
750
- msgid "Saint Helena Pound"
751
- msgstr "جنيه سانت هيلانا"
752
-
753
- #: profile-builder-2.0/admin/manage-fields.php:651
754
- msgid "Saudi Arabia Riyal"
755
- msgstr "ريال سعودي"
756
-
757
- #: profile-builder-2.0/admin/manage-fields.php:652
758
- msgid "Serbia Dinar"
759
- msgstr "دينار صربي"
760
-
761
- #: profile-builder-2.0/admin/manage-fields.php:653
762
- msgid "Seychelles Rupee"
763
- msgstr "روبية سيشيلية"
764
-
765
- #: profile-builder-2.0/admin/manage-fields.php:654
766
- msgid "Singapore Dollar"
767
- msgstr "دولار سينغافوري"
768
-
769
- #: profile-builder-2.0/admin/manage-fields.php:655
770
- msgid "Solomon Islands Dollar"
771
- msgstr "دولار جزر سليمان"
772
-
773
- #: profile-builder-2.0/admin/manage-fields.php:656
774
- msgid "Somalia Shilling"
775
- msgstr "شلن صومالي"
776
-
777
- #: profile-builder-2.0/admin/manage-fields.php:657
778
- msgid "South Africa Rand"
779
- msgstr "راند جنوب أفريقيا"
780
-
781
- #: profile-builder-2.0/admin/manage-fields.php:658
782
- msgid "Sri Lanka Rupee"
783
- msgstr "روبية سريلانكا"
784
-
785
- #: profile-builder-2.0/admin/manage-fields.php:659
786
- msgid "Sweden Krona"
787
- msgstr "كرونا سويدية"
788
-
789
- #: profile-builder-2.0/admin/manage-fields.php:660
790
- msgid "Switzerland Franc"
791
- msgstr "فرنك سويسري"
792
-
793
- #: profile-builder-2.0/admin/manage-fields.php:661
794
- msgid "Suriname Dollar"
795
- msgstr "دولار سورينام"
796
-
797
- #: profile-builder-2.0/admin/manage-fields.php:662
798
- msgid "Syria Pound"
799
- msgstr "ليرة سورية"
800
-
801
- #: profile-builder-2.0/admin/manage-fields.php:663
802
- msgid "Taiwan New Dollar"
803
- msgstr "تايوان الدولار الجديد"
804
-
805
- #: profile-builder-2.0/admin/manage-fields.php:664
806
- msgid "Thailand Baht"
807
- msgstr "باهت تايلاندي"
808
-
809
- #: profile-builder-2.0/admin/manage-fields.php:665
810
- msgid "Trinidad and Tobago Dollar"
811
- msgstr "دولار ترينيداد وتوباغو"
812
-
813
- #: profile-builder-2.0/admin/manage-fields.php:666
814
- #: profile-builder-2.0/admin/manage-fields.php:667
815
- msgid "Turkey Lira"
816
- msgstr "ليرا تركية"
817
-
818
- #: profile-builder-2.0/admin/manage-fields.php:668
819
- msgid "Tuvalu Dollar"
820
- msgstr "دولار توفالو"
821
-
822
- #: profile-builder-2.0/admin/manage-fields.php:669
823
- msgid "Ukraine Hryvna"
824
- msgstr "أوكرانيا هريفنيا"
825
-
826
- #: profile-builder-2.0/admin/manage-fields.php:670
827
- msgid "United Kingdom Pound"
828
- msgstr "جنيه استرليني"
829
-
830
- #: profile-builder-2.0/admin/manage-fields.php:671
831
- msgid "Uganda Shilling"
832
- msgstr "شلن أوغندي"
833
-
834
- #: profile-builder-2.0/admin/manage-fields.php:672
835
- msgid "US Dollar"
836
- msgstr "دولار أمريكي"
837
-
838
- #: profile-builder-2.0/admin/manage-fields.php:673
839
- msgid "Uruguay Peso"
840
- msgstr "بيسو أوروغواي"
841
-
842
- #: profile-builder-2.0/admin/manage-fields.php:674
843
- msgid "Uzbekistan Som"
844
- msgstr "أوزبكستان سوم"
845
-
846
- #: profile-builder-2.0/admin/manage-fields.php:675
847
- msgid "Venezuela Bolivar"
848
- msgstr "بوليفار فنزويلا"
849
-
850
- #: profile-builder-2.0/admin/manage-fields.php:676
851
- msgid "Viet Nam Dong"
852
- msgstr "فيتنام دونغ"
853
-
854
- #: profile-builder-2.0/admin/manage-fields.php:677
855
- msgid "Yemen Rial"
856
- msgstr "ريال يمني"
857
-
858
- #: profile-builder-2.0/admin/manage-fields.php:678
859
- msgid "Zimbabwe Dollar"
860
- msgstr "دولار زمبابوي"
861
-
862
- #: profile-builder-2.0/admin/manage-fields.php:1097
863
- msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
864
- msgstr "يمكن أن يحتوي الاسم الوصفي فقط على أحرف صغيرة وأرقام و _ و - وليس مسافات.\n"
865
-
866
- #: profile-builder-2.0/admin/manage-fields.php:1314
867
- msgid "Search Location"
868
- msgstr "موقع البحث"
869
-
870
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
871
- msgid "You are not allowed to do this."
872
- msgstr "لا يسمح لك بذلك."
873
-
874
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
875
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
876
- msgid "Search Users"
877
- msgstr "البحث عن المستخدمين"
878
-
879
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
880
- msgid "Conditional Logic"
881
- msgstr "المنطق الشرطي"
882
-
883
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
884
- msgid "Conditional Rules"
885
- msgstr "القواعد المشروطة"
886
-
887
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
888
- msgid "This field has conditional logic enabled."
889
- msgstr "هذا الحقل لديه منطق شرطي مفعل."
890
-
891
- #: profile-builder-2.0/features/functions.php:685
892
- msgid "Incorrect phone number"
893
- msgstr "رقم الهاتف غير صحيح"
894
-
895
- #: profile-builder-2.0/front-end/class-formbuilder.php:124
896
- msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
897
- msgstr "تم تعيين دور المستخدم الذي تم إنشاؤه إلى الدور الافتراضي. لا يمكن تسجيل مستخدم له الدور المعين لهذا النموذج إلا من قبل المشرف."
898
-
899
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
900
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
901
- msgid "Please add the Google Maps API key for this field."
902
- msgstr "الرجاء إضافة مفتاح واجهة برمجة التطبيقات لخرائط غوغل لهذا الحقل."
903
-
904
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
905
- msgid "Something went wrong. Please try again."
906
- msgstr "هناك خطأ ما. حاول مرة اخرى."
907
-
908
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
909
- msgid "Please enter numbers only"
910
- msgstr "برجاء إدخال أرقام فقط"
911
-
912
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
913
- msgid "Value must be a multiplier of %1$s"
914
- msgstr "يجب أن تكون القيمة مضاعفا ل %1$s"
915
-
916
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
917
- msgid "Value must be greater than or equal to %1$s"
918
- msgstr "يجب أن تكون القيمة أكبر من أو تساوي %1$s"
919
-
920
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
921
- msgid "Value must be less than or equal to %1$s"
922
- msgstr "يجب أن تكون القيمة أكبر من أو تساوي %1$s"
923
-
924
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
925
- msgid "Required phone number format: "
926
- msgstr "تنسيق رقم الهاتف المطلوب:"
927
-
928
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
929
- msgid "Bolivia, __( Plurinational State of"
930
- msgstr "بوليفيا، __ (دولة - المتعددة القوميات"
931
-
932
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
933
- msgid "Bonaire, __( Sint Eustatius and Saba"
934
- msgstr "بونير، __ (سينت أوستاتيوس وسابا"
935
-
936
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
937
- msgid "Brunei Darussalam"
938
- msgstr "دولار بروناى دار السلام"
939
-
940
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
941
- msgid "Cabo Verde"
942
- msgstr "الرأس الأخضر"
943
-
944
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
945
- msgid "Cocos (Keeling) Islands"
946
- msgstr "جزر كوكوس"
947
-
948
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
949
- msgid "Congo"
950
- msgstr "جمهورية الكونغو"
951
-
952
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
953
- msgid "Congo, __( the Democratic Republic of the"
954
- msgstr "جمهورية الكونغو الديموقراطية"
955
-
956
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
957
- msgid "Cote dIvoire"
958
- msgstr "ساحل العاج"
959
-
960
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
961
- msgid "Falkland Islands (Malvinas)"
962
- msgstr "جزر فوكلاند (مالفيناس)"
963
-
964
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
965
- msgid "Holy See (Vatican City State)"
966
- msgstr "الكرسي الرسولي (دولة الفاتيكان)"
967
-
968
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
969
- msgid "Iran, __( Islamic Republic of"
970
- msgstr "إيران (جمهورية - الإسلامية)"
971
-
972
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
973
- msgid "Korea, __( Democratic Peoples Republic of"
974
- msgstr "كوريا، الجمهورية الشعبية الديمقراطية"
975
-
976
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
977
- msgid "Korea, __( Republic of"
978
- msgstr "جمهورية كوريا"
979
-
980
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
981
- msgid "Lao Peoples Democratic Republic"
982
- msgstr "جمهورية لاو الديمقراطية الشعبية"
983
-
984
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
985
- msgid "Macedonia, __( the former Yugoslav Republic of"
986
- msgstr "مقدونيا، __ (جمهورية يوغوسلافيا السابقة"
987
-
988
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
989
- msgid "Micronesia, __( Federated States of"
990
- msgstr "ميكرونيزيا، __ (ولايات - الموحدة"
991
-
992
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
993
- msgid "Moldova, __( Republic of"
994
- msgstr "مولدوفا، __ (جمهورية"
995
-
996
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
997
- msgid "Palestine, __( State of"
998
- msgstr "فلسطين"
999
-
1000
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1001
- msgid "Russian Federation"
1002
- msgstr "الاتحاد الروسي"
1003
-
1004
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1005
- msgid "Saint Helena, __( Ascension and Tristan da Cunha"
1006
- msgstr "سانت هيلينا، __ (أسينسيون وتريستان دا كونها"
1007
-
1008
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1009
- msgid "Saint Martin (French part)"
1010
- msgstr "سانت مارتن (الجزء الفرنسي)"
1011
-
1012
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1013
- msgid "Sint Maarten (Dutch part)"
1014
- msgstr "سانت مارتن (الجزء الهولندي)"
1015
-
1016
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1017
- msgid "Syrian Arab Republic"
1018
- msgstr "الجمهورية العربية السورية"
1019
-
1020
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1021
- msgid "Taiwan, __( Province of China"
1022
- msgstr "تايوان، __ (مقاطعة الصين"
1023
-
1024
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1025
- msgid "Tanzania, __( United Republic of"
1026
- msgstr "تنزانيا، __ (جمهورية - المتحدة"
1027
-
1028
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1029
- msgid "Timor-Leste"
1030
- msgstr "تيمور الشرقية"
1031
-
1032
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1033
- msgid "Venezuela, __( Bolivarian Republic of"
1034
- msgstr "فنزويلا، __ (جمهورية - البوليفارية"
1035
-
1036
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1037
- msgid "Viet Nam"
1038
- msgstr "فيتنام"
1039
-
1040
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1041
- msgid "Virgin Islands, __( British"
1042
- msgstr "جزر فيرجن، __ (البريطانية"
1043
-
1044
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1045
- msgid "Virgin Islands, __( U.S."
1046
- msgstr "جزر فيرجن، __ (الأمريكية."
1047
-
1048
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
1049
- #: profile-builder-2.0/modules/user-listing/userlisting.php:186
1050
- msgid "User Fields Tags"
1051
- msgstr "وسوم حقول المستخدم"
1052
-
1053
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479
1054
- msgid "The users selected password at signup"
1055
- msgstr "قام المستخدمين باختيار كلمة المرور عند الاشتراك"
1056
-
1057
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
1058
- msgid "[{{site_name}}] Notice of Email Change"
1059
- msgstr "[{{site_name}}] إشعار بتغيير البريد الإلكتروني"
1060
-
1061
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
1062
- msgid "Changed Email Address Notification"
1063
- msgstr "إشعار تغيير عنوان البريد الإلكتروني"
1064
-
1065
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1066
- msgid "Limit"
1067
- msgstr "حد"
1068
-
1069
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1070
- msgid "Enable limit to the number of fields to be generated by users in front end forms "
1071
- msgstr "تمكين الحد لعدد الحقول التي سيتم إنشاؤها بواسطة المستخدمين في نماذج الواجهة الأمامية"
1072
-
1073
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1074
- msgid "General Limit"
1075
- msgstr "الحد العام"
1076
-
1077
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1078
- msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
1079
- msgstr "الحد الافتراضي لهذه المجموعة المكرره. <br> اترك 0 بدون تحديد."
1080
-
1081
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1082
- msgid "Limit reached message"
1083
- msgstr "رسالة الوصول للحد الأقصى"
1084
-
1085
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1086
- msgid "The maximum number of fields has been reached."
1087
- msgstr "تم الوصول إلى الحد الأقصى لعدد الحقول."
1088
-
1089
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1090
- msgid "The popup message to display when the limit of repeater groups is reached."
1091
- msgstr "الرسالة المنبثقة تعرض عندما يتم الوصول إلى الحد الأقصى من المجموعات المكررة."
1092
-
1093
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1094
- msgid "Limit per Role"
1095
- msgstr "يوجد حد لكل دور"
1096
-
1097
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1098
- msgid "Leave 0 for unlimited."
1099
- msgstr "اترك 0 لغير محدود."
1100
-
1101
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1102
- msgid "Repeated field group"
1103
- msgstr "مجموعة الحقول المتكررة"
1104
-
1105
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1106
- msgid "Manage field or group of fields that will be repeatable."
1107
- msgstr "إدارة الحقل أو مجموعة الحقول التي سيتم تكرارها."
1108
-
1109
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1110
- msgid "Edit field group"
1111
- msgstr "تعديل مجموعة الحقول"
1112
-
1113
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
1114
- msgid "Repeatable fields saved!"
1115
- msgstr "تم حفظ الحقول القابلة للتكرار!"
1116
-
1117
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
1118
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
1119
- msgid "Please enter a unique field title.\n"
1120
- msgstr "الرجاء إدخال عنوان حقل فريد.\n"
1121
-
1122
- #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
1123
- msgid "Are you sure you want to delete this?"
1124
- msgstr "هل أنت متأكد أنك تريد حذف هذا؟"
1125
-
1126
- #: profile-builder-2.0/modules/user-listing/userlisting.php:192
1127
- msgid "Sort Tags"
1128
- msgstr "فرز الوسوم"
1129
-
1130
- #: profile-builder-2.0/modules/user-listing/userlisting.php:201
1131
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2308
1132
- msgid "Faceted Menus"
1133
- msgstr "قوائم الأوجه"
1134
-
1135
- #: profile-builder-2.0/modules/user-listing/userlisting.php:202
1136
- msgid "User Count"
1137
- msgstr "عدد المستخدمين"
1138
-
1139
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1553
1140
- msgid "Show All"
1141
- msgstr "إظهار الكل"
1142
-
1143
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1144
- msgid "No options available"
1145
- msgstr "لاتوجد خيارات"
1146
-
1147
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
1148
- msgid "Remove All Filters"
1149
- msgstr "إزالة جميع معايير البحث"
1150
-
1151
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1152
- msgid "Label"
1153
- msgstr "ملصق"
1154
-
1155
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1156
- msgid "Choose the facet name that appears on the frontend"
1157
- msgstr "اختر اسم الواجهة الذي يظهر على الواجهة الأمامية"
1158
-
1159
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1160
- msgid "Facet Type"
1161
- msgstr "نوع الواجهه"
1162
-
1163
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1164
- msgid "Choose the facet menu type"
1165
- msgstr "اختر نوع قائمة الواجهه"
1166
-
1167
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1168
- msgid "Facet Meta"
1169
- msgstr "واجهة ميتا"
1170
-
1171
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1172
- msgid "Choose the meta field for the facet menu"
1173
- msgstr "اختر حقل ميتا لقائمة الواجهه"
1174
-
1175
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1176
- msgid "Behaviour"
1177
- msgstr "سلوك"
1178
-
1179
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1180
- msgid "Narrow the results"
1181
- msgstr "تضييق النتائج"
1182
-
1183
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1184
- msgid "Expand the results"
1185
- msgstr "توسيع النتائج"
1186
-
1187
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1188
- msgid "Choose how multiple selections affect the results"
1189
- msgstr "اختر كيفية تأثير التحديدات المتعددة على النتائج"
1190
-
1191
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1192
- msgid "Visible choices"
1193
- msgstr "الخيارات المرئية"
1194
-
1195
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1196
- msgid "Show a toggle link after this many choices. Leave blank for all"
1197
- msgstr "عرض رابط تبديل بعد هذه الخيارات المتعددة. اتركه فارغا للجميع"
1198
-
1199
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1200
- msgid "Search Fields"
1201
- msgstr "ابحث في الحقول"
1202
-
1203
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1204
- msgid "Choose the fields in which the Search Field will look in"
1205
- msgstr "اختر الحقول التي سيتم البحث فيها"
1206
-
1207
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2330
1208
- msgid "Search Settings"
1209
- msgstr "ابحث في الإعدادات"
1210
-
1211
- #: pb-add-on-woocommerce/billing-fields.php:8
1212
- #: pb-add-on-woocommerce/shipping-fields.php:8
1213
- msgid "Company Name"
1214
- msgstr ""
1215
-
1216
- #: pb-add-on-woocommerce/billing-fields.php:9
1217
- #: pb-add-on-woocommerce/shipping-fields.php:9
1218
- msgid "Address"
1219
- msgstr ""
1220
-
1221
- #: pb-add-on-woocommerce/billing-fields.php:5
1222
- #: pb-add-on-woocommerce/shipping-fields.php:5
1223
- msgid "Country"
1224
- msgstr ""
1225
-
1226
- #: pb-add-on-woocommerce/billing-fields.php:11
1227
- #: pb-add-on-woocommerce/shipping-fields.php:11
1228
- msgid "Town / City"
1229
- msgstr ""
1230
-
1231
- #: pb-add-on-woocommerce/billing-fields.php:12
1232
- #: pb-add-on-woocommerce/shipping-fields.php:12
1233
- msgid "State / County"
1234
- msgstr ""
1235
-
1236
- #: pb-add-on-woocommerce/billing-fields.php:13
1237
- #: pb-add-on-woocommerce/shipping-fields.php:13
1238
- msgid "Postcode / Zip"
1239
- msgstr ""
1240
-
1241
- #: pb-add-on-woocommerce/billing-fields.php:14
1242
- msgid "Email Address"
1243
- msgstr ""
1244
-
1245
- #: pb-add-on-woocommerce/billing-fields.php:15
1246
- msgid "Phone"
1247
- msgstr ""
1248
-
1249
- #: pb-add-on-woocommerce/billing-fields.php:278
1250
- msgid "Ship to a different address?"
1251
- msgstr ""
1252
-
1253
- #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1254
- msgid "Billing Address"
1255
- msgstr ""
1256
-
1257
- #: pb-add-on-woocommerce/index.php:169
1258
- msgid "Displays customer billing fields in front-end. "
1259
- msgstr ""
1260
-
1261
- #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1262
- msgid "Shipping Address"
1263
- msgstr ""
1264
-
1265
- #: pb-add-on-woocommerce/index.php:173
1266
- msgid "Displays customer shipping fields in front-end. "
1267
- msgstr ""
1268
-
1269
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1270
- msgid "Display on WooCommerce Checkout"
1271
- msgstr ""
1272
-
1273
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1274
- msgid "Whether the field should be added to the WooCommerce checkout form or not"
1275
- msgstr ""
1276
-
1277
- #: pb-add-on-woocommerce/index.php:541
1278
- msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1279
- msgstr ""
1280
-
1281
- #: pb-add-on-woocommerce/woosync-page.php:23
1282
- #: pb-add-on-woocommerce/woosync-page.php:70
1283
- msgid "WooCommerce Sync"
1284
- msgstr ""
1285
-
1286
- #: pb-add-on-woocommerce/woosync-page.php:76
1287
- msgid "Choose Register form to display on My Account page:"
1288
- msgstr ""
1289
-
1290
- #: pb-add-on-woocommerce/woosync-page.php:81
1291
- msgid "Default Register"
1292
- msgstr ""
1293
-
1294
- #: pb-add-on-woocommerce/woosync-page.php:103
1295
- msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1296
- msgstr ""
1297
-
1298
- #: pb-add-on-woocommerce/woosync-page.php:110
1299
- msgid "Choose Edit Profile form to display on My Account page:"
1300
- msgstr ""
1301
-
1302
- #: pb-add-on-woocommerce/woosync-page.php:115
1303
- msgid "Default Edit Profile"
1304
- msgstr ""
1305
-
1306
- #: pb-add-on-woocommerce/woosync-page.php:137
1307
- msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1308
- msgstr ""
1309
-
1310
- #: profile-builder-2.0/admin/add-ons.php:190
1311
- msgid "Recommended Plugins"
1312
- msgstr "الإضافات الموصى بها"
1313
-
1314
- #: profile-builder-2.0/admin/add-ons.php:219
1315
- #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1316
- msgid "Free"
1317
- msgstr "مجاني"
1318
-
1319
- #: profile-builder-2.0/admin/add-ons.php:221
1320
- msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1321
- msgstr "قبول دفعات المستخدم، إنشاء خطط الاشتراك وتقييد المحتوى على موقعك."
1322
-
1323
- #: profile-builder-2.0/admin/add-ons.php:222
1324
- #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1325
- msgid "More Details"
1326
- msgstr "معلومات أكثر"
1327
-
1328
- #: profile-builder-2.0/admin/add-ons.php:240
1329
- #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1330
- #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1331
- #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1332
- msgid "Plugin is <strong>inactive</strong>"
1333
- msgstr "الإضافة <strong>غير مفعلة</strong>"
1334
-
1335
- #: profile-builder-2.0/admin/add-ons.php:242
1336
- #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1337
- #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1338
- #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1339
- msgid "Plugin is <strong>active</strong>"
1340
- msgstr "الإضافة <strong>مفعلة</strong>"
1341
-
1342
- #: profile-builder-2.0/admin/add-ons.php:256
1343
- #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1344
- msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1345
- msgstr "تعذر تثبيت الإضافة. أعد المحاولة أو <a href=\"%s\" target=\"_blank\"> ثبت يدويا </a>."
1346
-
1347
- #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1348
- msgid "Paid Accounts"
1349
- msgstr "الحسابات المدفوعة"
1350
-
1351
- #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1352
- msgid "Paid Member Subscriptions - a free WordPress plugin"
1353
- msgstr "العضوية مدفوعة الاشتراك - إضافة ووردبريس مجانية"
1354
-
1355
- #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1356
- msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1357
- msgstr "باستخدام حقل الاشتراكات الجديد في Profile Builder، ستسمح استمارات التسجيل لمستخدميك بالاشتراك في الحسابات المدفوعة."
1358
-
1359
- #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1360
- msgid "Paid & Free Subscriptions"
1361
- msgstr "الاشتراكات المدفوعة والمجانية"
1362
-
1363
- #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1364
- msgid "Restrict Content"
1365
- msgstr "تقييد المحتوى"
1366
-
1367
- #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1368
- msgid "Member Management"
1369
- msgstr "إدارة الأعضاء"
1370
-
1371
- #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1372
- msgid "Email Templates"
1373
- msgstr "قوالب البريد الإلكتروني"
1374
-
1375
- #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1376
- msgid "Account Management"
1377
- msgstr "إدارة الحساب"
1378
-
1379
- #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1380
- msgid "Subscription Management"
1381
- msgstr "إدارة الاشتراكات"
1382
-
1383
- #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1384
- msgid "Payment Management"
1385
- msgstr "إدارة الدفع"
1386
-
1387
- #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1388
- msgid "Plugin is Active"
1389
- msgstr "الإضافة مفعلة"
1390
-
1391
- #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1392
- msgid "Plugin has been activated"
1393
- msgstr "تم تفعيل الإضافة"
1394
-
1395
- #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1396
- msgid "Plugin has been deactivated."
1397
- msgstr "تم تعطيل الإضافة."
1398
-
1399
- #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1400
- msgid "Accept user payments, create subscription plans and restrict content on your website."
1401
- msgstr "قبول دفعات المستخدم، إنشاء خطط الاشتراك وتقييد المحتوى على موقعك."
1402
-
1403
- #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1404
- msgid "Step by Step Quick Setup"
1405
- msgstr "الإعداد السريع خطوة بخطوة"
1406
-
1407
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
1408
- msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1409
- msgstr "لتفعيل المستخدم، يرجى النقر على الرابط التالي: <br> <br>%s%s%s<br> <br> بعد التفعيل، ستتلقى رسالة إلكترونية أخرى * مع تسجيل الدخول."
1410
-
1411
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1412
- msgid "After Login"
1413
- msgstr "بعد تسجيل الدخول"
1414
-
1415
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1416
- msgid "After Logout"
1417
- msgstr "بعد تسجيل الخروج"
1418
-
1419
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1420
- msgid "After Registration"
1421
- msgstr "بعد التسجيل"
1422
-
1423
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1424
- msgid "After Edit Profile"
1425
- msgstr "بعد تعديل الملف الشخصي"
1426
-
1427
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1428
- msgid "After Successful Email Confirmation"
1429
- msgstr "بعد تأكيد البريد الإلكتروني بنجاح"
1430
-
1431
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1432
- msgid "After Successful Password Reset"
1433
- msgstr "بعد إعادة كلمة المرور بنجاح"
1434
-
1435
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1436
- msgid "Dashboard (redirect users from accessing the dashboard)"
1437
- msgstr "لوحة التحكم (إعادة توجيه المستخدمين من الدخول إلى لوحة التحكم)"
1438
-
1439
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1440
- msgid "User ID"
1441
- msgstr "معرف المستخدم"
1442
-
1443
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1444
- msgid "User ID or Username"
1445
- msgstr "معرف المستخدم أو اسم المستخدم"
1446
-
1447
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1448
- msgid "User ID / Username"
1449
- msgstr "معرف المستخدم / اسم المستخدم"
1450
-
1451
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1452
- msgid "Please select and enter the ID or username of your user."
1453
- msgstr "يرجى تحديد وإدخال الرقم التعريفي للمستخدم أو اسم المستخدم الخاص به."
1454
-
1455
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1456
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1457
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1458
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1459
- msgid "Redirect Type"
1460
- msgstr "نوع إعادة التوجيه"
1461
-
1462
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1463
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1464
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1465
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1466
- msgid "Redirect URL"
1467
- msgstr "URL إعادة التوجيه"
1468
-
1469
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1470
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1471
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1472
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1473
- msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1474
- msgstr "يمكن أن يحتوي على الوسوم الديناميكية التالية:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1475
-
1476
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1477
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1478
- msgid "Individual User Redirects"
1479
- msgstr "عمليات إعادة توجيه المستخدمين الفرديين"
1480
-
1481
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1482
- msgid "... Choose"
1483
- msgstr "... اختر"
1484
-
1485
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1486
- msgid "Select a user role."
1487
- msgstr "حدد دور المستخدم."
1488
-
1489
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1490
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1491
- msgid "User Role based Redirects"
1492
- msgstr "عمليات إعادة التوجيه استنادا إلى دور المستخدم"
1493
-
1494
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1495
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1496
- msgid "Global Redirects"
1497
- msgstr "عمليات إعادة التوجيه العالمية"
1498
-
1499
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1500
- msgid "Login ( wp_login.php )"
1501
- msgstr "تسجيل الدخول ( wp_login.php )"
1502
-
1503
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1504
- msgid "Register ( wp-login.php?action=register )"
1505
- msgstr "التسجيل ( wp-login.php?action=register )"
1506
-
1507
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1508
- msgid "Lost Password ( wp-login.php?action=lostpassword )"
1509
- msgstr "فقدت كلمة المرور ( wp-login.php?action=lostpassword )"
1510
-
1511
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1512
- msgid "Author Archive ( http://sitename.com/author/admin )"
1513
- msgstr "أرشيف المؤلف (http://sitename.com/author/admin)"
1514
-
1515
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1516
- msgid "Redirect Default WordPress Forms and Pages"
1517
- msgstr "إعادة توجيه نماذج ووردبريس الافتراضية والصفحات"
1518
-
1519
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1520
- msgid "How does this work?"
1521
- msgstr "كيف يعمل هذا؟"
1522
-
1523
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1524
- msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1525
- msgstr "<pre>معرف المستخدم / اسم المستخدم</pre><pre>إعادة توجيه</pre><pre>URL</pre>"
1526
-
1527
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1528
- msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1529
- msgstr "<pre>دور المستخدم</pre><pre>إعادة توجيه</pre><pre>URL</pre>"
1530
-
1531
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1532
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1533
- msgid "<pre>Redirect</pre><pre>URL</pre>"
1534
- msgstr "<pre>إعادة توجيه</pre><pre>URL</pre>"
1535
-
1536
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1537
- msgid "These redirects happen after a successful action, like registration or after a successful login."
1538
- msgstr "تحدث عمليات إعادة التوجيه هذه بعد إجراء ناجح، مثل التسجيل أو بعد تسجيل دخول ناجح."
1539
-
1540
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1541
- msgid "Which redirect happens depends on the following priority:"
1542
- msgstr "تعتمد عملية إعادة التوجيه على الأولوية التالية:"
1543
-
1544
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1545
- msgid "Redirect Default WordPress forms and pages"
1546
- msgstr "إعادة توجيه نماذج ووردبريس الافتراضية والصفحات"
1547
-
1548
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
1549
- msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1550
- msgstr "مع هذه يمكنك إعادة توجيه نماذج وورد مختلفة وصفحات إلى صفحات تم إنشاؤها باستخدام profile builder."
1551
-
1552
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1553
- msgid "Available tags for dynamic URLs"
1554
- msgstr "الوسوم المتاحة لعناوين URL الديناميكية"
1555
-
1556
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
1557
- msgid "You use the following tags in your URLs to redirect users to various pages."
1558
- msgstr "يمكنك استخدام الوسوم التالية في عناوين URL لإعادة توجيه المستخدمين إلى صفحات مختلفة."
1559
-
1560
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1561
- msgid "generates a url of the current website homepage."
1562
- msgstr "يولد عنوان url للصفحة الرئيسية الحالية."
1563
-
1564
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1565
- msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1566
- msgstr "في ووردبريس يمكن أن يكون <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>عنوان الموقع</a> مختلفا عن عنوان url الرئيسي"
1567
-
1568
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1569
- msgid "the ID of the user"
1570
- msgstr "معرف المستخدم"
1571
-
1572
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1573
- msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1574
- msgstr "النسخة المعقمة لعنوان URL لاسم المستخدم، يمكن استخدام اسم المستخدم اللطيف بأمان في عناوين URL نظرا لأنه لا يمكن أن يحتوي على أحرف خاصة أو مسافات."
1575
-
1576
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
1577
- msgid "the URL of the previously visited page"
1578
- msgstr "عنوان URL للصفحة التي تمت زيارتها سابقا"
1579
-
1580
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
1581
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
1582
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
1583
- msgid "You can't add duplicate redirects!"
1584
- msgstr "لا يمكنك إضافة عمليات إعادة توجيه مكررة!"
1585
-
1586
- #: profile-builder-2.0/admin/admin-functions.php:41
1587
- msgid "Display name publicly as - only appears on the Edit Profile page!"
1588
- msgstr "عرض الاسم بشكل عام - يظهر فقط في صفحة تعديل الملف الشخصي!"
1589
-
1590
- #: profile-builder-2.0/admin/basic-info.php:37
1591
- msgid "Friction-less login using %s shortcode or a widget."
1592
- msgstr "الاحتكاك أقل في تسجيل الدخول باستخدام %s الرمز القصير أو ودجت."
1593
-
1594
- #: profile-builder-2.0/admin/basic-info.php:41
1595
- msgid "Beautiful registration forms fully customizable using the %s shortcode."
1596
- msgstr "أشكال تسجيل جميلة للتخصيص بشكل كامل باستخدام %s الرمز القصير."
1597
-
1598
- #: profile-builder-2.0/admin/basic-info.php:45
1599
- msgid "Straight forward edit profile forms using %s shortcode."
1600
- msgstr "تحرير نماذج الملف الشخصي بشكل بسيط باستخدام %s الرمز القصير."
1601
-
1602
- #: profile-builder-2.0/admin/basic-info.php:58
1603
- msgid "Allow users to recover their password in the front-end using the %s."
1604
- msgstr "السماح للمستخدمين باستعادة كلمة المرور في الواجهة الأمامية باستخدام %s."
1605
-
1606
- #: profile-builder-2.0/admin/basic-info.php:140
1607
- msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1608
- msgstr "لإنشاء صفحة تحتوي على المستخدمين المسجلين في هذا الموقع / المدونة الحالية، أدخل الرمز القصير التالي في صفحة من اختيارك: %s."
1609
-
1610
- #: profile-builder-2.0/admin/general-settings.php:115
1611
- msgid "\"Admin Approval\" on User Role:"
1612
- msgstr "\"موافقة المشرف\" على دور المستخدم:"
1613
-
1614
- #: profile-builder-2.0/admin/general-settings.php:134
1615
- msgid "Select on what user roles to activate Admin Approval."
1616
- msgstr "حدد ما أدوار المستخدم لتنشيط موافقة المشرف."
1617
-
1618
- #: profile-builder-2.0/admin/manage-fields.php:133
1619
- msgid "Display on PB forms"
1620
- msgstr "عرض على نماذج PB"
1621
-
1622
- #: profile-builder-2.0/admin/manage-fields.php:133
1623
- msgid "PB Login"
1624
- msgstr "تسجيل الدخول PB"
1625
-
1626
- #: profile-builder-2.0/admin/manage-fields.php:133
1627
- msgid "PB Register"
1628
- msgstr "تسجيل PB"
1629
-
1630
- #: profile-builder-2.0/admin/manage-fields.php:133
1631
- msgid "PB Recover Password"
1632
- msgstr "إستعادة كلمة المرور PB"
1633
-
1634
- #: profile-builder-2.0/admin/manage-fields.php:133
1635
- msgid "Select on which Profile Builder forms to display reCAPTCHA"
1636
- msgstr "حدد على أي نموذج Profile Builder يتم عرض reCAPTCHA"
1637
-
1638
- #: profile-builder-2.0/admin/manage-fields.php:134
1639
- msgid "Display on default WP forms"
1640
- msgstr "عرض على نماذج WP الإفتراضية"
1641
-
1642
- #: profile-builder-2.0/admin/manage-fields.php:134
1643
- msgid "Default WP Login"
1644
- msgstr "تسجيل الدخول الإفتراضي ل WP"
1645
-
1646
- #: profile-builder-2.0/admin/manage-fields.php:134
1647
- msgid "Default WP Register"
1648
- msgstr "التسجيل الإفتراضي ل WP"
1649
-
1650
- #: profile-builder-2.0/admin/manage-fields.php:134
1651
- msgid "Default WP Recover Password"
1652
- msgstr "إستعادة كلمة المرور الإفتراضي ل WP"
1653
-
1654
- #: profile-builder-2.0/admin/manage-fields.php:134
1655
- msgid "Select on which default WP forms to display reCAPTCHA"
1656
- msgstr "حدد على أي نموذج WP الإفتراضي يتم عرض reCAPTCHA"
1657
-
1658
- #: profile-builder-2.0/admin/manage-fields.php:140
1659
- #: profile-builder-2.0/admin/manage-fields.php:141
1660
- #: profile-builder-2.0/admin/manage-fields.php:142
1661
- msgid "Default option of the field"
1662
- msgstr "الخيار الافتراضي للحقل"
1663
-
1664
- #: profile-builder-2.0/admin/manage-fields.php:282
1665
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
- msgid "Afghanistan"
1667
- msgstr "أفغانستان"
1668
-
1669
- #: profile-builder-2.0/admin/manage-fields.php:283
1670
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1671
- msgid "Aland Islands"
1672
- msgstr "جزر آلاند"
1673
-
1674
- #: profile-builder-2.0/admin/manage-fields.php:284
1675
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1676
- msgid "Albania"
1677
- msgstr "ألبانيا"
1678
-
1679
- #: profile-builder-2.0/admin/manage-fields.php:285
1680
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1681
- msgid "Algeria"
1682
- msgstr "الجزائر"
1683
-
1684
- #: profile-builder-2.0/admin/manage-fields.php:286
1685
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1686
- msgid "American Samoa"
1687
- msgstr "ساموا الأمريكية"
1688
-
1689
- #: profile-builder-2.0/admin/manage-fields.php:287
1690
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1691
- msgid "Andorra"
1692
- msgstr "أندورا"
1693
-
1694
- #: profile-builder-2.0/admin/manage-fields.php:288
1695
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
- msgid "Angola"
1697
- msgstr "أنغولا"
1698
-
1699
- #: profile-builder-2.0/admin/manage-fields.php:289
1700
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1701
- msgid "Anguilla"
1702
- msgstr "أنغيلا"
1703
-
1704
- #: profile-builder-2.0/admin/manage-fields.php:290
1705
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1706
- msgid "Antarctica"
1707
- msgstr "القارة القطبية الجنوبية"
1708
-
1709
- #: profile-builder-2.0/admin/manage-fields.php:291
1710
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1711
- msgid "Antigua and Barbuda"
1712
- msgstr "أنتيغوا وبربودا"
1713
-
1714
- #: profile-builder-2.0/admin/manage-fields.php:292
1715
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1716
- msgid "Argentina"
1717
- msgstr "الأرجنتين"
1718
-
1719
- #: profile-builder-2.0/admin/manage-fields.php:293
1720
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1721
- msgid "Armenia"
1722
- msgstr "أرمينيا"
1723
-
1724
- #: profile-builder-2.0/admin/manage-fields.php:294
1725
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1726
- msgid "Aruba"
1727
- msgstr "أروبا"
1728
-
1729
- #: profile-builder-2.0/admin/manage-fields.php:295
1730
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1731
- msgid "Australia"
1732
- msgstr "أستراليا"
1733
-
1734
- #: profile-builder-2.0/admin/manage-fields.php:296
1735
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1736
- msgid "Austria"
1737
- msgstr "النمسا"
1738
-
1739
- #: profile-builder-2.0/admin/manage-fields.php:297
1740
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1741
- msgid "Azerbaijan"
1742
- msgstr "أزربيجان"
1743
-
1744
- #: profile-builder-2.0/admin/manage-fields.php:298
1745
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1746
- msgid "Bahamas"
1747
- msgstr "البهاماس"
1748
-
1749
- #: profile-builder-2.0/admin/manage-fields.php:299
1750
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1751
- msgid "Bahrain"
1752
- msgstr "البحرين"
1753
-
1754
- #: profile-builder-2.0/admin/manage-fields.php:300
1755
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1756
- msgid "Bangladesh"
1757
- msgstr "بنغلاديش"
1758
-
1759
- #: profile-builder-2.0/admin/manage-fields.php:301
1760
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1761
- msgid "Barbados"
1762
- msgstr "بربادوس"
1763
-
1764
- #: profile-builder-2.0/admin/manage-fields.php:302
1765
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1766
- msgid "Belarus"
1767
- msgstr "بيلاروس"
1768
-
1769
- #: profile-builder-2.0/admin/manage-fields.php:303
1770
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1771
- msgid "Belgium"
1772
- msgstr "البلجيك"
1773
-
1774
- #: profile-builder-2.0/admin/manage-fields.php:304
1775
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1776
- msgid "Belize"
1777
- msgstr "بليز"
1778
-
1779
- #: profile-builder-2.0/admin/manage-fields.php:305
1780
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1781
- msgid "Benin"
1782
- msgstr "بنين"
1783
-
1784
- #: profile-builder-2.0/admin/manage-fields.php:306
1785
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1786
- msgid "Bermuda"
1787
- msgstr "برمودا"
1788
-
1789
- #: profile-builder-2.0/admin/manage-fields.php:307
1790
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1791
- msgid "Bhutan"
1792
- msgstr "بوتان"
1793
-
1794
- #: profile-builder-2.0/admin/manage-fields.php:308
1795
- msgid "Bolivia"
1796
- msgstr "بوليفيا"
1797
-
1798
- #: profile-builder-2.0/admin/manage-fields.php:309
1799
- msgid "Bonaire, Saint Eustatius and Saba"
1800
- msgstr "بونير، سينت أوستاتيوس وسابا"
1801
-
1802
- #: profile-builder-2.0/admin/manage-fields.php:310
1803
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1804
- msgid "Bosnia and Herzegovina"
1805
- msgstr "البوسنة والهرسك"
1806
-
1807
- #: profile-builder-2.0/admin/manage-fields.php:311
1808
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1809
- msgid "Botswana"
1810
- msgstr "بوتسوانا"
1811
-
1812
- #: profile-builder-2.0/admin/manage-fields.php:312
1813
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1814
- msgid "Bouvet Island"
1815
- msgstr "جزيرة بوفيت"
1816
-
1817
- #: profile-builder-2.0/admin/manage-fields.php:313
1818
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1819
- msgid "Brazil"
1820
- msgstr "البرازيل"
1821
-
1822
- #: profile-builder-2.0/admin/manage-fields.php:314
1823
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1824
- msgid "British Indian Ocean Territory"
1825
- msgstr "إقليم المحيط البريطاني الهندي"
1826
-
1827
- #: profile-builder-2.0/admin/manage-fields.php:315
1828
- msgid "British Virgin Islands"
1829
- msgstr "جزر فيرجن البريطانية"
1830
-
1831
- #: profile-builder-2.0/admin/manage-fields.php:316
1832
- msgid "Brunei"
1833
- msgstr "بروناي"
1834
-
1835
- #: profile-builder-2.0/admin/manage-fields.php:317
1836
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1837
- msgid "Bulgaria"
1838
- msgstr "بلغاريا"
1839
-
1840
- #: profile-builder-2.0/admin/manage-fields.php:318
1841
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1842
- msgid "Burkina Faso"
1843
- msgstr "بوركينا فاسو"
1844
-
1845
- #: profile-builder-2.0/admin/manage-fields.php:319
1846
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1847
- msgid "Burundi"
1848
- msgstr "بوروندي"
1849
-
1850
- #: profile-builder-2.0/admin/manage-fields.php:320
1851
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1852
- msgid "Cambodia"
1853
- msgstr "كمبوديا"
1854
-
1855
- #: profile-builder-2.0/admin/manage-fields.php:321
1856
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1857
- msgid "Cameroon"
1858
- msgstr "الكاميرون"
1859
-
1860
- #: profile-builder-2.0/admin/manage-fields.php:322
1861
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1862
- msgid "Canada"
1863
- msgstr "كندا"
1864
-
1865
- #: profile-builder-2.0/admin/manage-fields.php:323
1866
- msgid "Cape Verde"
1867
- msgstr "الرأس الأخضر"
1868
-
1869
- #: profile-builder-2.0/admin/manage-fields.php:324
1870
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1871
- msgid "Cayman Islands"
1872
- msgstr "جزر الكايمان"
1873
-
1874
- #: profile-builder-2.0/admin/manage-fields.php:325
1875
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1876
- msgid "Central African Republic"
1877
- msgstr "جمهورية افريقيا الوسطى"
1878
-
1879
- #: profile-builder-2.0/admin/manage-fields.php:326
1880
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1881
- msgid "Chad"
1882
- msgstr "تشاد"
1883
-
1884
- #: profile-builder-2.0/admin/manage-fields.php:327
1885
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1886
- msgid "Chile"
1887
- msgstr "تشيلي"
1888
-
1889
- #: profile-builder-2.0/admin/manage-fields.php:328
1890
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1891
- msgid "China"
1892
- msgstr "الصين"
1893
-
1894
- #: profile-builder-2.0/admin/manage-fields.php:329
1895
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1896
- msgid "Christmas Island"
1897
- msgstr "جزيرة الكريسماس"
1898
-
1899
- #: profile-builder-2.0/admin/manage-fields.php:330
1900
- msgid "Cocos Islands"
1901
- msgstr "جزر كوكوس"
1902
-
1903
- #: profile-builder-2.0/admin/manage-fields.php:331
1904
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1905
- msgid "Colombia"
1906
- msgstr "كولومبيا"
1907
-
1908
- #: profile-builder-2.0/admin/manage-fields.php:332
1909
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1910
- msgid "Comoros"
1911
- msgstr "جزر القمر"
1912
-
1913
- #: profile-builder-2.0/admin/manage-fields.php:333
1914
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1915
- msgid "Cook Islands"
1916
- msgstr "جزر كوك"
1917
-
1918
- #: profile-builder-2.0/admin/manage-fields.php:334
1919
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1920
- msgid "Costa Rica"
1921
- msgstr "كوستا ريكا"
1922
-
1923
- #: profile-builder-2.0/admin/manage-fields.php:335
1924
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1925
- msgid "Croatia"
1926
- msgstr "كرواتيا"
1927
-
1928
- #: profile-builder-2.0/admin/manage-fields.php:336
1929
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1930
- msgid "Cuba"
1931
- msgstr "كوبا"
1932
-
1933
- #: profile-builder-2.0/admin/manage-fields.php:337
1934
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1935
- msgid "Curacao"
1936
- msgstr "كوراكاو"
1937
-
1938
- #: profile-builder-2.0/admin/manage-fields.php:338
1939
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1940
- msgid "Cyprus"
1941
- msgstr "قبرص"
1942
-
1943
- #: profile-builder-2.0/admin/manage-fields.php:339
1944
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1945
- msgid "Czech Republic"
1946
- msgstr "جمهورية التشيك"
1947
-
1948
- #: profile-builder-2.0/admin/manage-fields.php:340
1949
- msgid "Democratic Republic of the Congo"
1950
- msgstr "جمهورية الكونغو الديموقراطية"
1951
-
1952
- #: profile-builder-2.0/admin/manage-fields.php:341
1953
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1954
- msgid "Denmark"
1955
- msgstr "الدنمارك"
1956
-
1957
- #: profile-builder-2.0/admin/manage-fields.php:342
1958
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1959
- msgid "Djibouti"
1960
- msgstr "جيبوتي"
1961
-
1962
- #: profile-builder-2.0/admin/manage-fields.php:343
1963
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1964
- msgid "Dominica"
1965
- msgstr "دومينيكا"
1966
-
1967
- #: profile-builder-2.0/admin/manage-fields.php:344
1968
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1969
- msgid "Dominican Republic"
1970
- msgstr "جمهورية الدومنيكان"
1971
-
1972
- #: profile-builder-2.0/admin/manage-fields.php:345
1973
- msgid "East Timor"
1974
- msgstr "تيمور الشرقية"
1975
-
1976
- #: profile-builder-2.0/admin/manage-fields.php:346
1977
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1978
- msgid "Ecuador"
1979
- msgstr "إكوادور"
1980
-
1981
- #: profile-builder-2.0/admin/manage-fields.php:347
1982
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1983
- msgid "Egypt"
1984
- msgstr "مصر"
1985
-
1986
- #: profile-builder-2.0/admin/manage-fields.php:348
1987
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1988
- msgid "El Salvador"
1989
- msgstr "السلفادور"
1990
-
1991
- #: profile-builder-2.0/admin/manage-fields.php:349
1992
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1993
- msgid "Equatorial Guinea"
1994
- msgstr "غينيا الإستوائية"
1995
-
1996
- #: profile-builder-2.0/admin/manage-fields.php:350
1997
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1998
- msgid "Eritrea"
1999
- msgstr "إريتريا"
2000
-
2001
- #: profile-builder-2.0/admin/manage-fields.php:351
2002
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2003
- msgid "Estonia"
2004
- msgstr "إستونيا"
2005
-
2006
- #: profile-builder-2.0/admin/manage-fields.php:352
2007
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2008
- msgid "Ethiopia"
2009
- msgstr "إثيوبيا"
2010
-
2011
- #: profile-builder-2.0/admin/manage-fields.php:353
2012
- msgid "Falkland Islands"
2013
- msgstr "جزر فوكلاند"
2014
-
2015
- #: profile-builder-2.0/admin/manage-fields.php:354
2016
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2017
- msgid "Faroe Islands"
2018
- msgstr "جزر صناعية"
2019
-
2020
- #: profile-builder-2.0/admin/manage-fields.php:355
2021
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2022
- msgid "Fiji"
2023
- msgstr "فيجي"
2024
-
2025
- #: profile-builder-2.0/admin/manage-fields.php:356
2026
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2027
- msgid "Finland"
2028
- msgstr "فنلندا"
2029
-
2030
- #: profile-builder-2.0/admin/manage-fields.php:357
2031
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2032
- msgid "France"
2033
- msgstr "فرنسا"
2034
-
2035
- #: profile-builder-2.0/admin/manage-fields.php:358
2036
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2037
- msgid "French Guiana"
2038
- msgstr "غيانا الفرنسية"
2039
-
2040
- #: profile-builder-2.0/admin/manage-fields.php:359
2041
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2042
- msgid "French Polynesia"
2043
- msgstr "بولينيزيا الفرنسية"
2044
-
2045
- #: profile-builder-2.0/admin/manage-fields.php:360
2046
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2047
- msgid "French Southern Territories"
2048
- msgstr "المناطق الجنوبية لفرنسا"
2049
-
2050
- #: profile-builder-2.0/admin/manage-fields.php:361
2051
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2052
- msgid "Gabon"
2053
- msgstr "الغابون"
2054
-
2055
- #: profile-builder-2.0/admin/manage-fields.php:362
2056
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2057
- msgid "Gambia"
2058
- msgstr "غامبيا"
2059
-
2060
- #: profile-builder-2.0/admin/manage-fields.php:363
2061
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
- msgid "Georgia"
2063
- msgstr "جورجيا"
2064
-
2065
- #: profile-builder-2.0/admin/manage-fields.php:364
2066
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2067
- msgid "Germany"
2068
- msgstr "ألمانيا"
2069
-
2070
- #: profile-builder-2.0/admin/manage-fields.php:365
2071
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2072
- msgid "Ghana"
2073
- msgstr "غانا"
2074
-
2075
- #: profile-builder-2.0/admin/manage-fields.php:366
2076
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
- msgid "Gibraltar"
2078
- msgstr "جبل طارق"
2079
-
2080
- #: profile-builder-2.0/admin/manage-fields.php:367
2081
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
- msgid "Greece"
2083
- msgstr "اليونان"
2084
-
2085
- #: profile-builder-2.0/admin/manage-fields.php:368
2086
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
- msgid "Greenland"
2088
- msgstr "الأرض الخضراء"
2089
-
2090
- #: profile-builder-2.0/admin/manage-fields.php:369
2091
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
- msgid "Grenada"
2093
- msgstr "غرناطة"
2094
-
2095
- #: profile-builder-2.0/admin/manage-fields.php:370
2096
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2097
- msgid "Guadeloupe"
2098
- msgstr "جوادلوب"
2099
-
2100
- #: profile-builder-2.0/admin/manage-fields.php:371
2101
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2102
- msgid "Guam"
2103
- msgstr "غوام"
2104
-
2105
- #: profile-builder-2.0/admin/manage-fields.php:372
2106
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2107
- msgid "Guatemala"
2108
- msgstr "غواتيمالا"
2109
-
2110
- #: profile-builder-2.0/admin/manage-fields.php:373
2111
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2112
- msgid "Guernsey"
2113
- msgstr "غيرنسي"
2114
-
2115
- #: profile-builder-2.0/admin/manage-fields.php:374
2116
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2117
- msgid "Guinea"
2118
- msgstr "غينيا"
2119
-
2120
- #: profile-builder-2.0/admin/manage-fields.php:375
2121
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2122
- msgid "Guinea-Bissau"
2123
- msgstr "غينيا بيساو"
2124
-
2125
- #: profile-builder-2.0/admin/manage-fields.php:376
2126
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2127
- msgid "Guyana"
2128
- msgstr "غيانا"
2129
-
2130
- #: profile-builder-2.0/admin/manage-fields.php:377
2131
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2132
- msgid "Haiti"
2133
- msgstr "هايتي"
2134
-
2135
- #: profile-builder-2.0/admin/manage-fields.php:378
2136
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2137
- msgid "Heard Island and McDonald Islands"
2138
- msgstr "جزيرة هيرد وجزر ماكدونالد"
2139
-
2140
- #: profile-builder-2.0/admin/manage-fields.php:379
2141
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2142
- msgid "Honduras"
2143
- msgstr "هندوراس"
2144
-
2145
- #: profile-builder-2.0/admin/manage-fields.php:380
2146
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2147
- msgid "Hong Kong"
2148
- msgstr "هونج كونج"
2149
-
2150
- #: profile-builder-2.0/admin/manage-fields.php:381
2151
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2152
- msgid "Hungary"
2153
- msgstr "هنغاريا"
2154
-
2155
- #: profile-builder-2.0/admin/manage-fields.php:382
2156
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2157
- msgid "Iceland"
2158
- msgstr "آيسلندا"
2159
-
2160
- #: profile-builder-2.0/admin/manage-fields.php:383
2161
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2162
- msgid "India"
2163
- msgstr "الهند"
2164
-
2165
- #: profile-builder-2.0/admin/manage-fields.php:384
2166
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2167
- msgid "Indonesia"
2168
- msgstr "إندونيسيا"
2169
-
2170
- #: profile-builder-2.0/admin/manage-fields.php:385
2171
- msgid "Iran"
2172
- msgstr "إيران"
2173
-
2174
- #: profile-builder-2.0/admin/manage-fields.php:386
2175
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2176
- msgid "Iraq"
2177
- msgstr "العراق"
2178
-
2179
- #: profile-builder-2.0/admin/manage-fields.php:387
2180
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2181
- msgid "Ireland"
2182
- msgstr "إيرلندا"
2183
-
2184
- #: profile-builder-2.0/admin/manage-fields.php:388
2185
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2186
- msgid "Isle of Man"
2187
- msgstr "جزيرة آيل أوف مان"
2188
-
2189
- #: profile-builder-2.0/admin/manage-fields.php:389
2190
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2191
- msgid "Israel"
2192
- msgstr "الكيان الصهيوني"
2193
-
2194
- #: profile-builder-2.0/admin/manage-fields.php:390
2195
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2196
- msgid "Italy"
2197
- msgstr "إيطاليا"
2198
-
2199
- #: profile-builder-2.0/admin/manage-fields.php:391
2200
- msgid "Ivory Coast"
2201
- msgstr "ساحل العاج"
2202
-
2203
- #: profile-builder-2.0/admin/manage-fields.php:392
2204
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2205
- msgid "Jamaica"
2206
- msgstr "جامايكا"
2207
-
2208
- #: profile-builder-2.0/admin/manage-fields.php:393
2209
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2210
- msgid "Japan"
2211
- msgstr "اليابان"
2212
-
2213
- #: profile-builder-2.0/admin/manage-fields.php:394
2214
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2215
- msgid "Jersey"
2216
- msgstr "جيرسي"
2217
-
2218
- #: profile-builder-2.0/admin/manage-fields.php:395
2219
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2220
- msgid "Jordan"
2221
- msgstr "الأردن"
2222
-
2223
- #: profile-builder-2.0/admin/manage-fields.php:396
2224
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2225
- msgid "Kazakhstan"
2226
- msgstr "كازاخستان"
2227
-
2228
- #: profile-builder-2.0/admin/manage-fields.php:397
2229
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2230
- msgid "Kenya"
2231
- msgstr "كينيا"
2232
-
2233
- #: profile-builder-2.0/admin/manage-fields.php:398
2234
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2235
- msgid "Kiribati"
2236
- msgstr "كيريباس"
2237
-
2238
- #: profile-builder-2.0/admin/manage-fields.php:399
2239
- msgid "Kosovo"
2240
- msgstr "كوسوفو"
2241
-
2242
- #: profile-builder-2.0/admin/manage-fields.php:400
2243
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2244
- msgid "Kuwait"
2245
- msgstr "الكويت"
2246
-
2247
- #: profile-builder-2.0/admin/manage-fields.php:401
2248
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2249
- msgid "Kyrgyzstan"
2250
- msgstr "كرغيزستان"
2251
-
2252
- #: profile-builder-2.0/admin/manage-fields.php:402
2253
- msgid "Laos"
2254
- msgstr "لاوس"
2255
-
2256
- #: profile-builder-2.0/admin/manage-fields.php:403
2257
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2258
- msgid "Latvia"
2259
- msgstr "لاتفيا"
2260
-
2261
- #: profile-builder-2.0/admin/manage-fields.php:404
2262
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2263
- msgid "Lebanon"
2264
- msgstr "لبنان"
2265
-
2266
- #: profile-builder-2.0/admin/manage-fields.php:405
2267
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2268
- msgid "Lesotho"
2269
- msgstr "ليسوتو"
2270
-
2271
- #: profile-builder-2.0/admin/manage-fields.php:406
2272
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2273
- msgid "Liberia"
2274
- msgstr "ليبيريا"
2275
-
2276
- #: profile-builder-2.0/admin/manage-fields.php:407
2277
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2278
- msgid "Libya"
2279
- msgstr "ليبيا"
2280
-
2281
- #: profile-builder-2.0/admin/manage-fields.php:408
2282
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2283
- msgid "Liechtenstein"
2284
- msgstr "ليختنشتاين"
2285
-
2286
- #: profile-builder-2.0/admin/manage-fields.php:409
2287
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2288
- msgid "Lithuania"
2289
- msgstr "ليتوانيا"
2290
-
2291
- #: profile-builder-2.0/admin/manage-fields.php:410
2292
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2293
- msgid "Luxembourg"
2294
- msgstr "لوكسمبورغ"
2295
-
2296
- #: profile-builder-2.0/admin/manage-fields.php:411
2297
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2298
- msgid "Macao"
2299
- msgstr "ماكاو"
2300
-
2301
- #: profile-builder-2.0/admin/manage-fields.php:412
2302
- msgid "Macedonia"
2303
- msgstr "مقدونيا"
2304
-
2305
- #: profile-builder-2.0/admin/manage-fields.php:413
2306
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2307
- msgid "Madagascar"
2308
- msgstr "مدغشقر"
2309
-
2310
- #: profile-builder-2.0/admin/manage-fields.php:414
2311
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2312
- msgid "Malawi"
2313
- msgstr "ملاوي"
2314
-
2315
- #: profile-builder-2.0/admin/manage-fields.php:415
2316
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2317
- msgid "Malaysia"
2318
- msgstr "ماليزيا"
2319
-
2320
- #: profile-builder-2.0/admin/manage-fields.php:416
2321
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2322
- msgid "Maldives"
2323
- msgstr "المالديف"
2324
-
2325
- #: profile-builder-2.0/admin/manage-fields.php:417
2326
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2327
- msgid "Mali"
2328
- msgstr "مالي"
2329
-
2330
- #: profile-builder-2.0/admin/manage-fields.php:418
2331
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2332
- msgid "Malta"
2333
- msgstr "مالطا"
2334
-
2335
- #: profile-builder-2.0/admin/manage-fields.php:419
2336
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2337
- msgid "Marshall Islands"
2338
- msgstr "جزر مارشال"
2339
-
2340
- #: profile-builder-2.0/admin/manage-fields.php:420
2341
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2342
- msgid "Martinique"
2343
- msgstr "مارتينيك"
2344
-
2345
- #: profile-builder-2.0/admin/manage-fields.php:421
2346
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2347
- msgid "Mauritania"
2348
- msgstr "موريتانيا"
2349
-
2350
- #: profile-builder-2.0/admin/manage-fields.php:422
2351
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2352
- msgid "Mauritius"
2353
- msgstr "موريشيوس"
2354
-
2355
- #: profile-builder-2.0/admin/manage-fields.php:423
2356
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2357
- msgid "Mayotte"
2358
- msgstr "مايوت"
2359
-
2360
- #: profile-builder-2.0/admin/manage-fields.php:424
2361
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2362
- msgid "Mexico"
2363
- msgstr "المكسيك"
2364
-
2365
- #: profile-builder-2.0/admin/manage-fields.php:425
2366
- msgid "Micronesia"
2367
- msgstr "ميكرونيزيا"
2368
-
2369
- #: profile-builder-2.0/admin/manage-fields.php:426
2370
- msgid "Moldova"
2371
- msgstr "مولدوفا"
2372
-
2373
- #: profile-builder-2.0/admin/manage-fields.php:427
2374
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2375
- msgid "Monaco"
2376
- msgstr "موناكو"
2377
-
2378
- #: profile-builder-2.0/admin/manage-fields.php:428
2379
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2380
- msgid "Mongolia"
2381
- msgstr "منغوليا"
2382
-
2383
- #: profile-builder-2.0/admin/manage-fields.php:429
2384
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
- msgid "Montenegro"
2386
- msgstr "مونتنيغرو"
2387
-
2388
- #: profile-builder-2.0/admin/manage-fields.php:430
2389
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2390
- msgid "Montserrat"
2391
- msgstr "مونتسيرات"
2392
-
2393
- #: profile-builder-2.0/admin/manage-fields.php:431
2394
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2395
- msgid "Morocco"
2396
- msgstr "المغرب"
2397
-
2398
- #: profile-builder-2.0/admin/manage-fields.php:432
2399
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2400
- msgid "Mozambique"
2401
- msgstr "موزمبيق"
2402
-
2403
- #: profile-builder-2.0/admin/manage-fields.php:433
2404
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2405
- msgid "Myanmar"
2406
- msgstr "ميانمار"
2407
-
2408
- #: profile-builder-2.0/admin/manage-fields.php:434
2409
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2410
- msgid "Namibia"
2411
- msgstr "ناميبيا"
2412
-
2413
- #: profile-builder-2.0/admin/manage-fields.php:435
2414
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2415
- msgid "Nauru"
2416
- msgstr "ناورو"
2417
-
2418
- #: profile-builder-2.0/admin/manage-fields.php:436
2419
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2420
- msgid "Nepal"
2421
- msgstr "نيبال"
2422
-
2423
- #: profile-builder-2.0/admin/manage-fields.php:437
2424
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2425
- msgid "Netherlands"
2426
- msgstr "هولندا"
2427
-
2428
- #: profile-builder-2.0/admin/manage-fields.php:438
2429
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2430
- msgid "New Caledonia"
2431
- msgstr "كاليدونيا الجديدة"
2432
-
2433
- #: profile-builder-2.0/admin/manage-fields.php:439
2434
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2435
- msgid "New Zealand"
2436
- msgstr "نيوزيلندا"
2437
-
2438
- #: profile-builder-2.0/admin/manage-fields.php:440
2439
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2440
- msgid "Nicaragua"
2441
- msgstr "نيكاراغوا"
2442
-
2443
- #: profile-builder-2.0/admin/manage-fields.php:441
2444
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2445
- msgid "Niger"
2446
- msgstr "النيجر"
2447
-
2448
- #: profile-builder-2.0/admin/manage-fields.php:442
2449
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2450
- msgid "Nigeria"
2451
- msgstr "نيجيريا"
2452
-
2453
- #: profile-builder-2.0/admin/manage-fields.php:443
2454
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2455
- msgid "Niue"
2456
- msgstr "نيوي"
2457
-
2458
- #: profile-builder-2.0/admin/manage-fields.php:444
2459
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2460
- msgid "Norfolk Island"
2461
- msgstr "جزيرة نورفولك"
2462
-
2463
- #: profile-builder-2.0/admin/manage-fields.php:445
2464
- msgid "North Korea"
2465
- msgstr "كوريا الشمالية"
2466
-
2467
- #: profile-builder-2.0/admin/manage-fields.php:446
2468
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2469
- msgid "Northern Mariana Islands"
2470
- msgstr "جزر مريانا الشمالية"
2471
-
2472
- #: profile-builder-2.0/admin/manage-fields.php:447
2473
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2474
- msgid "Norway"
2475
- msgstr "النرويج"
2476
-
2477
- #: profile-builder-2.0/admin/manage-fields.php:448
2478
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2479
- msgid "Oman"
2480
- msgstr "عمان"
2481
-
2482
- #: profile-builder-2.0/admin/manage-fields.php:449
2483
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2484
- msgid "Pakistan"
2485
- msgstr "باكستان"
2486
-
2487
- #: profile-builder-2.0/admin/manage-fields.php:450
2488
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2489
- msgid "Palau"
2490
- msgstr "بالاو"
2491
-
2492
- #: profile-builder-2.0/admin/manage-fields.php:451
2493
- msgid "Palestinian Territory"
2494
- msgstr "فلسطين"
2495
-
2496
- #: profile-builder-2.0/admin/manage-fields.php:452
2497
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2498
- msgid "Panama"
2499
- msgstr "بنما"
2500
-
2501
- #: profile-builder-2.0/admin/manage-fields.php:453
2502
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2503
- msgid "Papua New Guinea"
2504
- msgstr "بابوا غينيا الجديدة"
2505
-
2506
- #: profile-builder-2.0/admin/manage-fields.php:454
2507
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2508
- msgid "Paraguay"
2509
- msgstr "باراغواي"
2510
-
2511
- #: profile-builder-2.0/admin/manage-fields.php:455
2512
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2513
- msgid "Peru"
2514
- msgstr "بيرو"
2515
-
2516
- #: profile-builder-2.0/admin/manage-fields.php:456
2517
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2518
- msgid "Philippines"
2519
- msgstr "الفلبين"
2520
-
2521
- #: profile-builder-2.0/admin/manage-fields.php:457
2522
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2523
- msgid "Pitcairn"
2524
- msgstr "بيتكيرن"
2525
-
2526
- #: profile-builder-2.0/admin/manage-fields.php:458
2527
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2528
- msgid "Poland"
2529
- msgstr "بولندا"
2530
-
2531
- #: profile-builder-2.0/admin/manage-fields.php:459
2532
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2533
- msgid "Portugal"
2534
- msgstr "البرتغال"
2535
-
2536
- #: profile-builder-2.0/admin/manage-fields.php:460
2537
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2538
- msgid "Puerto Rico"
2539
- msgstr "بورتوريكو"
2540
-
2541
- #: profile-builder-2.0/admin/manage-fields.php:461
2542
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2543
- msgid "Qatar"
2544
- msgstr "قطر"
2545
-
2546
- #: profile-builder-2.0/admin/manage-fields.php:462
2547
- msgid "Republic of the Congo"
2548
- msgstr "جمهورية الكونغو"
2549
-
2550
- #: profile-builder-2.0/admin/manage-fields.php:463
2551
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2552
- msgid "Reunion"
2553
- msgstr "جمع شمل"
2554
-
2555
- #: profile-builder-2.0/admin/manage-fields.php:464
2556
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2557
- msgid "Romania"
2558
- msgstr "رومانيا"
2559
-
2560
- #: profile-builder-2.0/admin/manage-fields.php:465
2561
- msgid "Russia"
2562
- msgstr "روسيا"
2563
-
2564
- #: profile-builder-2.0/admin/manage-fields.php:466
2565
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2566
- msgid "Rwanda"
2567
- msgstr "رواندا"
2568
-
2569
- #: profile-builder-2.0/admin/manage-fields.php:467
2570
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2571
- msgid "Saint Barthelemy"
2572
- msgstr "سانت بارتيليمي"
2573
-
2574
- #: profile-builder-2.0/admin/manage-fields.php:468
2575
- msgid "Saint Helena"
2576
- msgstr "سانت هيلانة"
2577
-
2578
- #: profile-builder-2.0/admin/manage-fields.php:469
2579
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2580
- msgid "Saint Kitts and Nevis"
2581
- msgstr "سانت كيتس ونيفيس"
2582
-
2583
- #: profile-builder-2.0/admin/manage-fields.php:470
2584
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2585
- msgid "Saint Lucia"
2586
- msgstr "القديسة لوسيا"
2587
-
2588
- #: profile-builder-2.0/admin/manage-fields.php:471
2589
- msgid "Saint Martin"
2590
- msgstr "القديس مارتن"
2591
-
2592
- #: profile-builder-2.0/admin/manage-fields.php:472
2593
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2594
- msgid "Saint Pierre and Miquelon"
2595
- msgstr "سانت بيير وميكلون"
2596
-
2597
- #: profile-builder-2.0/admin/manage-fields.php:473
2598
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2599
- msgid "Saint Vincent and the Grenadines"
2600
- msgstr "سانت فنسنت وجزر غرينادين"
2601
-
2602
- #: profile-builder-2.0/admin/manage-fields.php:474
2603
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2604
- msgid "Samoa"
2605
- msgstr "ساموا"
2606
-
2607
- #: profile-builder-2.0/admin/manage-fields.php:475
2608
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2609
- msgid "San Marino"
2610
- msgstr "سان مارينو"
2611
-
2612
- #: profile-builder-2.0/admin/manage-fields.php:476
2613
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2614
- msgid "Sao Tome and Principe"
2615
- msgstr "ساو تومي وبرينسيبي"
2616
-
2617
- #: profile-builder-2.0/admin/manage-fields.php:477
2618
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2619
- msgid "Saudi Arabia"
2620
- msgstr "المملكة العربية السعودية"
2621
-
2622
- #: profile-builder-2.0/admin/manage-fields.php:478
2623
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2624
- msgid "Senegal"
2625
- msgstr "السنغال"
2626
-
2627
- #: profile-builder-2.0/admin/manage-fields.php:479
2628
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2629
- msgid "Serbia"
2630
- msgstr "صربيا"
2631
-
2632
- #: profile-builder-2.0/admin/manage-fields.php:480
2633
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2634
- msgid "Seychelles"
2635
- msgstr "سيشيل"
2636
-
2637
- #: profile-builder-2.0/admin/manage-fields.php:481
2638
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2639
- msgid "Sierra Leone"
2640
- msgstr "سيراليون"
2641
-
2642
- #: profile-builder-2.0/admin/manage-fields.php:482
2643
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2644
- msgid "Singapore"
2645
- msgstr "سنغافورة"
2646
-
2647
- #: profile-builder-2.0/admin/manage-fields.php:483
2648
- msgid "Sint Maarten"
2649
- msgstr "سانت مارتن"
2650
-
2651
- #: profile-builder-2.0/admin/manage-fields.php:484
2652
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2653
- msgid "Slovakia"
2654
- msgstr "سلوفاكيا"
2655
-
2656
- #: profile-builder-2.0/admin/manage-fields.php:485
2657
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2658
- msgid "Slovenia"
2659
- msgstr "سلوفينيا"
2660
-
2661
- #: profile-builder-2.0/admin/manage-fields.php:486
2662
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2663
- msgid "Solomon Islands"
2664
- msgstr "جزر سليمان"
2665
-
2666
- #: profile-builder-2.0/admin/manage-fields.php:487
2667
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2668
- msgid "Somalia"
2669
- msgstr "الصومال"
2670
-
2671
- #: profile-builder-2.0/admin/manage-fields.php:488
2672
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2673
- msgid "South Africa"
2674
- msgstr "جنوب أفريقيا"
2675
-
2676
- #: profile-builder-2.0/admin/manage-fields.php:489
2677
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2678
- msgid "South Georgia and the South Sandwich Islands"
2679
- msgstr "جورجيا الجنوبية وجزر ساندويتش الجنوبية"
2680
-
2681
- #: profile-builder-2.0/admin/manage-fields.php:490
2682
- msgid "South Korea"
2683
- msgstr "كوريا الجنوبية"
2684
-
2685
- #: profile-builder-2.0/admin/manage-fields.php:491
2686
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2687
- msgid "South Sudan"
2688
- msgstr "جنوب السودان"
2689
-
2690
- #: profile-builder-2.0/admin/manage-fields.php:492
2691
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2692
- msgid "Spain"
2693
- msgstr "إسبانيا"
2694
-
2695
- #: profile-builder-2.0/admin/manage-fields.php:493
2696
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2697
- msgid "Sri Lanka"
2698
- msgstr "سريلانكا"
2699
-
2700
- #: profile-builder-2.0/admin/manage-fields.php:494
2701
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2702
- msgid "Sudan"
2703
- msgstr "السودان"
2704
-
2705
- #: profile-builder-2.0/admin/manage-fields.php:495
2706
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2707
- msgid "Suriname"
2708
- msgstr "سورينام"
2709
-
2710
- #: profile-builder-2.0/admin/manage-fields.php:496
2711
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2712
- msgid "Svalbard and Jan Mayen"
2713
- msgstr "سفالبارد وجان ماين"
2714
-
2715
- #: profile-builder-2.0/admin/manage-fields.php:497
2716
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2717
- msgid "Swaziland"
2718
- msgstr "سوازيلاند"
2719
-
2720
- #: profile-builder-2.0/admin/manage-fields.php:498
2721
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2722
- msgid "Sweden"
2723
- msgstr "السويد"
2724
-
2725
- #: profile-builder-2.0/admin/manage-fields.php:499
2726
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2727
- msgid "Switzerland"
2728
- msgstr "سويسرا"
2729
-
2730
- #: profile-builder-2.0/admin/manage-fields.php:500
2731
- msgid "Syria"
2732
- msgstr "سوريا"
2733
-
2734
- #: profile-builder-2.0/admin/manage-fields.php:501
2735
- msgid "Taiwan"
2736
- msgstr "تايوان"
2737
-
2738
- #: profile-builder-2.0/admin/manage-fields.php:502
2739
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2740
- msgid "Tajikistan"
2741
- msgstr "طاجاكستان"
2742
-
2743
- #: profile-builder-2.0/admin/manage-fields.php:503
2744
- msgid "Tanzania"
2745
- msgstr "تنزانيا"
2746
-
2747
- #: profile-builder-2.0/admin/manage-fields.php:504
2748
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2749
- msgid "Thailand"
2750
- msgstr "تايلند"
2751
-
2752
- #: profile-builder-2.0/admin/manage-fields.php:505
2753
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2754
- msgid "Togo"
2755
- msgstr "توغو"
2756
-
2757
- #: profile-builder-2.0/admin/manage-fields.php:506
2758
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2759
- msgid "Tokelau"
2760
- msgstr "توكيلاو"
2761
-
2762
- #: profile-builder-2.0/admin/manage-fields.php:507
2763
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2764
- msgid "Tonga"
2765
- msgstr "تونغا"
2766
-
2767
- #: profile-builder-2.0/admin/manage-fields.php:508
2768
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2769
- msgid "Trinidad and Tobago"
2770
- msgstr "ترينداد وتوباغو"
2771
-
2772
- #: profile-builder-2.0/admin/manage-fields.php:509
2773
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2774
- msgid "Tunisia"
2775
- msgstr "تونس"
2776
-
2777
- #: profile-builder-2.0/admin/manage-fields.php:510
2778
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2779
- msgid "Turkey"
2780
- msgstr "تركيا"
2781
-
2782
- #: profile-builder-2.0/admin/manage-fields.php:511
2783
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2784
- msgid "Turkmenistan"
2785
- msgstr "تركمانستان"
2786
-
2787
- #: profile-builder-2.0/admin/manage-fields.php:512
2788
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2789
- msgid "Turks and Caicos Islands"
2790
- msgstr "جزر تركس وكايكوس"
2791
-
2792
- #: profile-builder-2.0/admin/manage-fields.php:513
2793
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2794
- msgid "Tuvalu"
2795
- msgstr "توفالو"
2796
-
2797
- #: profile-builder-2.0/admin/manage-fields.php:514
2798
- msgid "U.S. Virgin Islands"
2799
- msgstr "جزر فيرجن الأمريكية"
2800
-
2801
- #: profile-builder-2.0/admin/manage-fields.php:515
2802
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2803
- msgid "Uganda"
2804
- msgstr "أوغندا"
2805
-
2806
- #: profile-builder-2.0/admin/manage-fields.php:516
2807
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2808
- msgid "Ukraine"
2809
- msgstr "أوكرانيا"
2810
-
2811
- #: profile-builder-2.0/admin/manage-fields.php:517
2812
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2813
- msgid "United Arab Emirates"
2814
- msgstr "الإمارات العربية المتحدة"
2815
-
2816
- #: profile-builder-2.0/admin/manage-fields.php:518
2817
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2818
- msgid "United Kingdom"
2819
- msgstr "المملكة المتحدة"
2820
-
2821
- #: profile-builder-2.0/admin/manage-fields.php:519
2822
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2823
- msgid "United States"
2824
- msgstr "الولايات المتحدة الأمريكية"
2825
-
2826
- #: profile-builder-2.0/admin/manage-fields.php:520
2827
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2828
- msgid "United States Minor Outlying Islands"
2829
- msgstr "جزر الولايات المتحدة البعيدة الصغرى"
2830
-
2831
- #: profile-builder-2.0/admin/manage-fields.php:521
2832
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2833
- msgid "Uruguay"
2834
- msgstr "أوروغواي"
2835
-
2836
- #: profile-builder-2.0/admin/manage-fields.php:522
2837
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2838
- msgid "Uzbekistan"
2839
- msgstr "أوزبكستان"
2840
-
2841
- #: profile-builder-2.0/admin/manage-fields.php:523
2842
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2843
- msgid "Vanuatu"
2844
- msgstr "فانواتو"
2845
-
2846
- #: profile-builder-2.0/admin/manage-fields.php:524
2847
- msgid "Vatican"
2848
- msgstr "فاتيكان"
2849
-
2850
- #: profile-builder-2.0/admin/manage-fields.php:525
2851
- msgid "Venezuela"
2852
- msgstr "فنزويلا"
2853
-
2854
- #: profile-builder-2.0/admin/manage-fields.php:526
2855
- msgid "Vietnam"
2856
- msgstr "فيتنام"
2857
-
2858
- #: profile-builder-2.0/admin/manage-fields.php:527
2859
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2860
- msgid "Wallis and Futuna"
2861
- msgstr "واليس وفوتونا"
2862
-
2863
- #: profile-builder-2.0/admin/manage-fields.php:528
2864
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2865
- msgid "Western Sahara"
2866
- msgstr "الصحراء الغربية"
2867
-
2868
- #: profile-builder-2.0/admin/manage-fields.php:529
2869
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2870
- msgid "Yemen"
2871
- msgstr "اليمن"
2872
-
2873
- #: profile-builder-2.0/admin/manage-fields.php:530
2874
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2875
- msgid "Zambia"
2876
- msgstr "زامبيا"
2877
-
2878
- #: profile-builder-2.0/admin/manage-fields.php:531
2879
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2880
- msgid "Zimbabwe"
2881
- msgstr "زمبابوي"
2882
-
2883
- #: profile-builder-2.0/admin/manage-fields.php:1219
2884
- msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2885
- msgstr "مع Profile Builder Pro v2 يمكنك عرض حقول مختلفة في تسجيل وتعديل نماذج الملف الشخصي، وذلك باستخدام نماذج الوحدة النمطية المتعددة تسجيل وتحرير ملف ."
2886
-
2887
- #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
2888
- msgid "Your account has to be confirmed by an administrator before you can log in."
2889
- msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من تسجيل الدخول."
2890
-
2891
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
2892
- msgid "Your account has been successfully created!"
2893
- msgstr "تم إنشاء حسابك بنجاح!"
2894
-
2895
- #: profile-builder-2.0/features/functions.php:678
2896
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
2897
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
2898
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2899
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
2900
- msgid "Please enter a (valid) reCAPTCHA value"
2901
- msgstr "الرجاء إدخال قيمة ريكابتشا (صالحة)"
2902
-
2903
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2904
- msgid "Click the BACK button on your browser, and try again."
2905
- msgstr "انقر على زر الرجوع في المتصفح، ثم أعد المحاولة."
2906
-
2907
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2908
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2909
- msgid "Sorry, you cannot upload this file type for this field."
2910
- msgstr "عذرا، لا يمكنك تحميل هذا النوع من الملفات لهذا الحقل."
2911
-
2912
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2913
- msgid "An error occurred, please try again later."
2914
- msgstr "لقد حدث خطأ، رجاء أعد المحاولة لاحقا."
2915
-
2916
- #: profile-builder-2.0/modules/user-listing/userlisting.php:282
2917
- msgid "More"
2918
- msgstr "المزيد"
2919
-
2920
- #: profile-builder-2.0/modules/user-listing/userlisting.php:376
2921
- msgid "You do not have permission to view this user list."
2922
- msgstr "ليس لديك الصلاحيات لعرض قائمة المستخدمين هذه."
2923
-
2924
- #: profile-builder-2.0/modules/user-listing/userlisting.php:389
2925
- msgid "You do not have the required user role to view this user list."
2926
- msgstr "ليس لديك دور المستخدم المطلوب لعرض قائمة المستخدمين هذه."
2927
-
2928
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
2929
- msgid "Ascending"
2930
- msgstr "تصاعدي"
2931
-
2932
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
2933
- msgid "Descending"
2934
- msgstr "تنازلي"
2935
-
2936
- #: profile-builder-2.0/admin/add-ons.php:148
2937
- #: profile-builder-2.0/admin/add-ons.php:248
2938
- #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2939
- #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2940
- msgid "Download Now"
2941
- msgstr "تحميل الآن"
2942
-
2943
- #: profile-builder-2.0/admin/admin-functions.php:200
2944
- msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
2945
- msgstr "إذا كنت تستمتع باستخدام <strong> %1$s </ strong> فالرجاء <a href=\"%2$s\" target=\"_blank\"> تقييمنا على WordPress.org </a>. المزيد من المستخدمين السعداء يعني المزيد من الميزات، مشاكل أقل ودعم أفضل للجميع."
2946
-
2947
- #: profile-builder-2.0/admin/manage-fields.php:82
2948
- msgid "Choose one of the supported field types"
2949
- msgstr "اختر أحد أنواع الحقول المدعومة"
2950
-
2951
- #: profile-builder-2.0/admin/manage-fields.php:84
2952
- msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2953
- msgstr ". تتوفر أنواع الحقول الإضافية في <a href=\"%s\"> إصدارات Hobbyist أو PRO</a>."
2954
-
2955
- #: profile-builder-2.0/admin/manage-fields.php:131
2956
- msgid "Site Key"
2957
- msgstr "مفتاح الموقع"
2958
-
2959
- #: profile-builder-2.0/admin/manage-fields.php:131
2960
- msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2961
- msgstr "مفتاح الموقع من Google، <a href=\"http://www.google.com/recaptcha\" target=\"_blank\"> www.google.com/recaptcha </a>"
2962
-
2963
- #: profile-builder-2.0/admin/manage-fields.php:132
2964
- msgid "Secret Key"
2965
- msgstr "المفتاح السري"
2966
-
2967
- #: profile-builder-2.0/admin/manage-fields.php:132
2968
- msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2969
- msgstr "المفتاح السري من Google، <a href=\"http://www.google.com/recaptcha\" target=\"_blank\"> www.google.com/recaptcha </a>"
2970
-
2971
- #: profile-builder-2.0/admin/manage-fields.php:1023
2972
- msgid "You must enter the site key\n"
2973
- msgstr "يجب إدخال مفتاح الموقع\n"
2974
-
2975
- #: profile-builder-2.0/admin/manage-fields.php:1025
2976
- msgid "You must enter the secret key\n"
2977
- msgstr "يجب إدخال المفتاح السري\n"
2978
-
2979
- #: profile-builder-2.0/admin/add-ons.php:10
2980
- #: profile-builder-2.0/admin/add-ons.php:32
2981
- msgid "Add-Ons"
2982
- msgstr "إضافات"
2983
-
2984
- #: profile-builder-2.0/admin/add-ons.php:34
2985
- #: profile-builder-2.0/admin/add-ons.php:129
2986
- #: profile-builder-2.0/admin/add-ons.php:231
2987
- #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2988
- #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2989
- #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2990
- msgid "Activate"
2991
- msgstr "تفعيل"
2992
-
2993
- #: profile-builder-2.0/admin/add-ons.php:36
2994
- #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2995
- msgid "Downloading and installing..."
2996
- msgstr "جار التحميل والتثبيت ..."
2997
-
2998
- #: profile-builder-2.0/admin/add-ons.php:37
2999
- #: profile-builder-2.0/admin/pms-cross-promotion.php:81
3000
- msgid "Installation complete"
3001
- msgstr "اكتمل التثبيت"
3002
-
3003
- #: profile-builder-2.0/admin/add-ons.php:39
3004
- msgid "Add-On is Active"
3005
- msgstr "الإضافة مفعلة"
3006
-
3007
- #: profile-builder-2.0/admin/add-ons.php:40
3008
- msgid "Add-On has been activated"
3009
- msgstr "تم تفعيل الإضافة"
3010
-
3011
- #: profile-builder-2.0/admin/add-ons.php:41
3012
- #: profile-builder-2.0/admin/pms-cross-promotion.php:85
3013
- msgid "Retry Install"
3014
- msgstr "إعادة التثبيت"
3015
-
3016
- #: profile-builder-2.0/admin/add-ons.php:43
3017
- #: profile-builder-2.0/admin/add-ons.php:140
3018
- msgid "Add-On is <strong>active</strong>"
3019
- msgstr "الإضافة <strong>مفعلة</strong>"
3020
-
3021
- #: profile-builder-2.0/admin/add-ons.php:44
3022
- #: profile-builder-2.0/admin/add-ons.php:138
3023
- msgid "Add-On is <strong>inactive</strong>"
3024
- msgstr "الإضافة <strong>غير مفعلة</strong>"
3025
-
3026
- #: profile-builder-2.0/admin/add-ons.php:46
3027
- #: profile-builder-2.0/admin/add-ons.php:133
3028
- #: profile-builder-2.0/admin/add-ons.php:235
3029
- #: profile-builder-2.0/admin/pms-cross-promotion.php:90
3030
- #: profile-builder-2.0/admin/pms-cross-promotion.php:118
3031
- #: profile-builder-2.0/admin/pms-cross-promotion.php:197
3032
- msgid "Deactivate"
3033
- msgstr "تعطيل"
3034
-
3035
- #: profile-builder-2.0/admin/add-ons.php:47
3036
- msgid "Add-On has been deactivated."
3037
- msgstr "تم تعطيل الإضافة."
3038
-
3039
- #: profile-builder-2.0/admin/add-ons.php:59
3040
- msgid "Something went wrong, we could not connect to the server. Please try again later."
3041
- msgstr "حدث خطأ ما، لم نتمكن من الاتصال بالخادم. الرجاء معاودة المحاولة في وقت لاحق."
3042
-
3043
- #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3044
- #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3045
- msgid "Install Now"
3046
- msgstr "تثبيت الآن"
3047
-
3048
- #: profile-builder-2.0/admin/add-ons.php:153
3049
- #: profile-builder-2.0/admin/add-ons.php:251
3050
- #: profile-builder-2.0/admin/pms-cross-promotion.php:141
3051
- #: profile-builder-2.0/admin/pms-cross-promotion.php:220
3052
- msgid "Compatible with your version of Profile Builder."
3053
- msgstr "متوافق مع الإصدار الخاص بك من Profile Builder."
3054
-
3055
- #: profile-builder-2.0/admin/add-ons.php:162
3056
- msgid "Upgrade Profile Builder"
3057
- msgstr "ترقية Profile Builder"
3058
-
3059
- #: profile-builder-2.0/admin/add-ons.php:163
3060
- msgid "Not compatible with Profile Builder"
3061
- msgstr "غير متوافق مع Profile Builder"
3062
-
3063
- #: profile-builder-2.0/admin/add-ons.php:171
3064
- msgid "Not compatible with your version of Profile Builder."
3065
- msgstr "متوافق مع الإصدار الخاص بك من Profile Builder."
3066
-
3067
- #: profile-builder-2.0/admin/add-ons.php:172
3068
- msgid "Minimum required Profile Builder version:"
3069
- msgstr "إصدار Profile Builder الأدنى المطلوب:"
3070
-
3071
- #: profile-builder-2.0/admin/add-ons.php:177
3072
- msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
3073
- msgstr "تعذر تثبيت الإضافة. أعد المحاولة أو <a href=\"%s\" target=\"_blank\"> ثبت يدويا </a>."
3074
-
3075
- #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3076
- msgid "You must enter a valid email address."
3077
- msgstr "ينبغي إدخال بريد الكتروني صالح."
3078
-
3079
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3080
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3081
- msgid "This username is invalid because it uses illegal characters."
3082
- msgstr "اسم المستخدم هذا غير صالح لأنه يستخدم أحرفا غير قانونية."
3083
-
3084
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3085
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3086
- msgid "Please enter a valid username."
3087
- msgstr "الرجاءادخال اسم مستخدم صحيح."
3088
-
3089
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
3090
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
3091
- msgid "Only administrators can see this field on edit profile forms."
3092
- msgstr "يمكن للمشرفين فقط مشاهدة هذا الحقل في نماذج الملف الشخصي للتعديل."
3093
-
3094
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
3095
- msgid "As an administrator you cannot change your role."
3096
- msgstr "بصفتك مشرفا، لا يمكنك تغيير دورك."
3097
-
3098
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3099
- msgid ""
3100
- "\n"
3101
- "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3102
- "<p>His/her new password is: {{password}}</p>\n"
3103
- msgstr ""
3104
- "\n"
3105
- "<p> {{username}} قام بطلب تغيير كلمة المرور عبر ميزة إعادة تعيين كلمة المرور. </ p>\n"
3106
- "<p> كلمة المرور الجديدة هي: {{password}} </ p>\n"
3107
-
3108
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3109
- msgid "Admin Notification for User Password Reset"
3110
- msgstr "إعلام المشرف للمستخدم عند إعادة تعيين كلمة المرور"
3111
-
3112
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
3113
- msgid "Reset Key"
3114
- msgstr "مفتاح إعادة التعيين"
3115
-
3116
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
3117
- msgid "Reset Url"
3118
- msgstr "إعادة تعيين Url"
3119
-
3120
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
3121
- msgid "Reset Link"
3122
- msgstr "رابط إعادة التعيين"
3123
-
3124
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3125
- msgid ""
3126
- "\n"
3127
- "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3128
- "Username: {{username}}</p>\n"
3129
- "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3130
- "<p>To reset your password, visit the following address:<br/>\n"
3131
- "{{{reset_link}}}</p>\n"
3132
- msgstr ""
3133
- "\n"
3134
- "<p> طلب شخص ما إعادة تعيين كلمة المرور للحساب التالي: {{site_name}} <br/>\n"
3135
- "اسم المستخدم: {{username}} </ p>\n"
3136
- "<p> إذا كان هذا خطأ، فتجاهل هذا البريد الإلكتروني ولن يحدث أي شيء. </ p>\n"
3137
- "<p> لإعادة تعيين كلمة المرور، انتقل إلى العنوان التالي: <br/>\n"
3138
- "{{{reset_link}}} </ P>\n"
3139
-
3140
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3141
- msgid "[{{site_name}}] Password Reset"
3142
- msgstr "[{{site_name}}] إعادة تعيين كلمة المرور"
3143
-
3144
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3145
- msgid "Password Reset Email"
3146
- msgstr "بريد إعادة كلمة المرور"
3147
-
3148
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3149
- msgid ""
3150
- "\n"
3151
- "<p>You have successfully reset your password to: {{password}}</p>\n"
3152
- msgstr ""
3153
- "\n"
3154
- "<p> لقد أعدت تعيين كلمة المرور بنجاح إلى: {{password}} </ p>\n"
3155
-
3156
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3157
- msgid "[{{site_name}}] Password Reset Successfully"
3158
- msgstr "[{{site_name}}] إعادة تعيين كلمة المرور بنجاح"
3159
-
3160
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3161
- msgid "Password Reset Success Email"
3162
- msgstr "بريد نجاح إعادة تعيين كلمة المرور"
3163
-
3164
- #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3165
- msgid "User Nicename"
3166
- msgstr "اسم مستخدم لطيف"
3167
-
3168
- #: pb-add-on-woocommerce/woosync-page.php:80
3169
- #: pb-add-on-woocommerce/woosync-page.php:114
3170
- #: profile-builder-2.0/modules/user-listing/userlisting.php:499
3171
- msgid "None"
3172
- msgstr "لا شيء"
3173
-
3174
- #: profile-builder-2.0/admin/admin-functions.php:132
3175
- msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3176
- msgstr "<strong> خطأ </ strong>: يجب أن يكون الحد الأدنى لعدد أحرف كلمة المرور %s"
3177
-
3178
- #: profile-builder-2.0/admin/admin-functions.php:148
3179
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3180
- msgstr "<strong> خطأ </ strong>: يجب أن يكون الحد الأدنى من القوة لكلمة المرور %s"
3181
-
3182
- #: profile-builder-2.0/admin/general-settings.php:179
3183
- msgid "Username and Email"
3184
- msgstr "اسم المستخدم و البريد الإلكتروني"
3185
-
3186
- #: profile-builder-2.0/admin/general-settings.php:184
3187
- msgid "\"Username and Email\" - users can Log In with both Username and Email."
3188
- msgstr "\"اسم المستخدم والبريد الإلكتروني\" - يمكن للمستخدمين تسجيل الدخول بكل من اسم المستخدم والبريد الإلكتروني."
3189
-
3190
- #: profile-builder-2.0/admin/general-settings.php:185
3191
- msgid "\"Username\" - users can Log In only with Username."
3192
- msgstr "\"اسم المستخدم\" - يمكن للمستخدمين تسجيل الدخول باسم المستخدم فقط."
3193
-
3194
- #: profile-builder-2.0/admin/general-settings.php:186
3195
- msgid "\"Email\" - users can Log In only with Email."
3196
- msgstr "\"البريد الإلكتروني\" - يمكن للمستخدمين تسجيل الدخول بالبريد الإلكتروني فقط."
3197
-
3198
- #: profile-builder-2.0/admin/manage-fields.php:124
3199
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3200
- msgstr "حدد الإضافة (الإضافات) التي تريد تقييدها <br/> مثال: .ext1، .ext2، .ext3 <br/> إذا لم يتم تحديد، الإعدادات الافتراضية تكون: .jpg، .jpeg، .gif، .png (. *)"
3201
-
3202
- #: profile-builder-2.0/admin/manage-fields.php:125
3203
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
3204
- msgstr "حدد الإضافة (الإضافات) التي تريد تقييدها <br/> مثال: .ext1، .ext2، .ext3 <br/> إذا لم يتم تحديدها، الإعدادات الافتراضية ستكون كل الامتدادات المسموحة في ووردبريس (. *)"
3205
-
3206
- #: profile-builder-2.0/admin/manage-fields.php:135
3207
- msgid "User Roles"
3208
- msgstr "أدوار المستخدمين"
3209
-
3210
- #: profile-builder-2.0/admin/manage-fields.php:135
3211
- msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3212
- msgstr "حدد أدوار المستخدم المراد عرضها للمستخدم (السحب والإفلات للترتيب)"
3213
-
3214
- #: profile-builder-2.0/admin/manage-fields.php:136
3215
- msgid "User Roles Order"
3216
- msgstr "ترتيب أدوار المستخدمين"
3217
-
3218
- #: profile-builder-2.0/admin/manage-fields.php:136
3219
- msgid "Save the user role order from the user roles checkboxes"
3220
- msgstr "احفظ ترتيب دور المستخدم من مربعات اختيار أدوار المستخدم"
3221
-
3222
- #: profile-builder-2.0/admin/manage-fields.php:1128
3223
- msgid "Please select at least one user role\n"
3224
- msgstr "يرجى تحديد دور مستخدم واحد على الأقل\n"
3225
-
3226
- #: profile-builder-2.0/admin/register-version.php:22
3227
- msgid "Profile Builder Register"
3228
- msgstr "تسجيل Profile Builder"
3229
-
3230
- #: profile-builder-2.0/admin/register-version.php:81
3231
- msgid "The serial number is about to expire soon!"
3232
- msgstr "الرقم التسلسلي على وشك الانتهاء قريبا!"
3233
-
3234
- #: profile-builder-2.0/admin/register-version.php:81
3235
- msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3236
- msgstr "الرقم التسلسلي الخاص بك على وشك الانتهاء، يرجى %1$s تجديد الترخيص الخاص بك%2$s."
3237
-
3238
- #: profile-builder-2.0/admin/register-version.php:83
3239
- msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3240
- msgstr "انتهت صلاحية الرقم التسلسلي، يرجى %1$s تجديد الترخيص%2$s."
3241
-
3242
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3243
- msgid "Add Entry"
3244
- msgstr "إضافة إدخال"
3245
-
3246
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3247
- msgid "show"
3248
- msgstr "إظهار"
3249
-
3250
- #: profile-builder-2.0/features/functions.php:736
3251
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3252
- msgstr "للسماح للمستخدمين بالتسجيل في موقع الويب الخاص بك عن طريق Profile Builder، يجب أولا تمكين تسجيل المستخدم. انتقل إلى %1$sاعدادات الشبكة%2$s, وتحت إعدادات التسجيل تأكد من التحقق من \"حسابات المستخدم قد تكون مسجلة”. %3$sتجاهل%4$s"
3253
-
3254
- #: profile-builder-2.0/front-end/class-formbuilder.php:659
3255
- msgid "User to edit:"
3256
- msgstr "تعديل بيانات المستخدم:"
3257
-
3258
- #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3259
- #: profile-builder-2.0/front-end/recover.php:262
3260
- msgid "The password must have the minimum length of %s characters"
3261
- msgstr "يجب أن يكون الحد الأدنى لعدد أحرف كلمة المرور %s"
3262
-
3263
- #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3264
- #: profile-builder-2.0/front-end/recover.php:266
3265
- msgid "The password must have a minimum strength of %s"
3266
- msgstr "يجب أن يكون لكلمة المرور الحد الأدنى من قوة %s"
3267
-
3268
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
3269
- msgid "You cannot register this user role"
3270
- msgstr "لا يمكنك تسجيل دور المستخدم هذا"
3271
-
3272
- #: profile-builder-2.0/front-end/login.php:153
3273
- msgid "username or email"
3274
- msgstr "اسم المستخدم أو البريد الإلكتروني"
3275
-
3276
- #: profile-builder-2.0/front-end/login.php:222
3277
- msgid "Username or Email"
3278
- msgstr "اسم المستخدم أو البريد الإلكتروني"
3279
-
3280
- #: profile-builder-2.0/front-end/logout.php:15
3281
- msgid "You are currently logged in as %s. "
3282
- msgstr "أنت الآن مسجل الدخول بالمستخدم %s. "
3283
-
3284
- #: profile-builder-2.0/front-end/logout.php:15
3285
- msgid "Log out &raquo;"
3286
- msgstr "تسجيل الخروج &raquo;"
3287
-
3288
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3289
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3290
- msgid "User Role"
3291
- msgstr "دور المستخدم"
3292
-
3293
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
3294
- msgid "View all extra shortcode parameters"
3295
- msgstr "عرض جميع معلمات الاختصارات الإضافية"
3296
-
3297
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3298
- msgid "displays only the users that you specified the user_id for"
3299
- msgstr "عرض المستخدمين الذين حددتهم user_id فقط ل"
3300
-
3301
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3302
- msgid "displays all users except the ones you specified the user_id for"
3303
- msgstr "عرض جميع المستخدمين باستثناء المستخدمين الذين حددتهم user_id ل"
3304
-
3305
- #: profile-builder-2.0/features/functions.php:566
3306
- msgid "Minimum length of %d characters"
3307
- msgstr "الحد الأدنى هو %d أحرف"
3308
-
3309
- #: profile-builder-2.0/front-end/class-formbuilder.php:146
3310
- #: profile-builder-2.0/front-end/class-formbuilder.php:149
3311
- msgid "This message is only visible by administrators"
3312
- msgstr "هذه الرسالة مرئية فقط من قبل المشرفين"
3313
-
3314
- #: profile-builder-2.0/modules/user-listing/userlisting.php:413
3315
- msgid "User not found"
3316
- msgstr "المستخدم غير موجود"
3317
-
3318
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3319
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3320
- msgid "Valid tags {{reply_to}} and {{site_name}}"
3321
- msgstr "الوسوم الصالحة {{reply_to}} و {{site_name}}"
3322
-
3323
- #: profile-builder-2.0/admin/admin-bar.php:48
3324
- msgid "Choose which user roles view the admin bar in the front-end of the website."
3325
- msgstr "اختر أدوار المستخدم التي تعرض شريط المشرف في الواجهة الأمامية للموقع."
3326
-
3327
- #: profile-builder-2.0/admin/manage-fields.php:129
3328
- msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3329
- msgstr "أدخل قائمة قيم مفصولة بفاصلات <br/> يمكن أن يكون أي شيء، لأنه مخفي عن المستخدم، ولكن يجب ألا يحتوي على أحرف خاصة أو الفواصل العليا"
3330
-
3331
- #: profile-builder-2.0/admin/manage-fields.php:1055
3332
- msgid "The meta-name cannot be empty\n"
3333
- msgstr "لا يمكن أن يكون الاسم الوصفي فارغا\n"
3334
-
3335
- #: profile-builder-2.0/admin/register-version.php:69
3336
- msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3337
- msgstr "الآن بعد أن حصلت على نسخة من %s، يجب أن تأخذ قليلاً من الوقت وتسجيله مع الرقم التسلسلي الذي تلقيته"
3338
-
3339
- #: profile-builder-2.0/admin/register-version.php:243
3340
- msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3341
- msgstr "<p> الرقم التسلسلي <strong> Profile Builder </ strong> غير صالح أو مفقود. <br/> يرجى%1$s تسجيل نسختك%2$s لتلقي إمكانية الوصول إلى التحديثات التلقائية والدعم. هل تحتاج إلى مفتاح ترخيص؟ %3$sاشتري واحد الآن%4$s </ p>"
3342
-
3343
- #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3344
- #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3345
- #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3346
- #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3347
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
3348
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
3349
- msgid "...Choose"
3350
- msgstr "...اختر"
3351
-
3352
- #: profile-builder-2.0/features/class-list-table.php:526
3353
- #: profile-builder-2.0/features/class-list-table.php:942
3354
- msgid "1 item"
3355
- msgstr "عنصر %s"
3356
-
3357
- #: profile-builder-2.0/features/functions.php:552
3358
- msgid "Very Weak"
3359
- msgstr "ضعيف جدا"
3360
-
3361
- #: profile-builder-2.0/features/functions.php:640
3362
- msgid "This field is required"
3363
- msgstr "هذا الحقل مطلوب"
3364
-
3365
- #: profile-builder-2.0/features/functions.php:704
3366
- msgid "Cancel"
3367
- msgstr "إلغاء"
3368
-
3369
- #: profile-builder-2.0/features/functions.php:740
3370
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3371
- msgstr "للسماح للمستخدمين بالتسجيل في موقع الويب الخاص بك عن طريق Profile Builder، يجب أولا تمكين تسجيل المستخدم. انتقل إلى %1$sاعدادات -> علامة التبويب عام%2$s, وتحت العضوية تأكد من تحقق \"يمكن لأي شخص التسجيل. %3$sتجاهل%4$s"
3372
-
3373
- #: profile-builder-2.0/front-end/login.php:144
3374
- msgid "Invalid username."
3375
- msgstr "اسم المستخدم غير صحيح"
3376
-
3377
- #: profile-builder-2.0/front-end/login.php:149
3378
- #: profile-builder-2.0/front-end/login.php:153
3379
- msgid "username"
3380
- msgstr "اسم المستخدم"
3381
-
3382
- #: profile-builder-2.0/front-end/login.php:149
3383
- msgid "email"
3384
- msgstr "البريد الإلكتروني"
3385
-
3386
- #: profile-builder-2.0/front-end/login.php:256
3387
- msgid "Lost your password?"
3388
- msgstr "نسيت كلمة المرور؟"
3389
-
3390
- #: profile-builder-2.0/index.php:34
3391
- msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3392
- msgstr "يتم التفعيل أيضا. تحتاج إلى إلغاء تفعيله قبل تفعيل هذا الإصدار من الإضافة."
3393
-
3394
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3395
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3396
- msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3397
- msgstr "يجب أن يكون عنوان بريد إلكتروني صالحا أو الوسم {{reply_to}} التي تكون افتراضية إلى البريد الإلكتروني للمشرف"
3398
-
3399
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3400
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3401
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
3402
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
3403
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
3404
- msgid "Your selected password at signup"
3405
- msgstr "قمت باختيار كلمة المرور عند الاشتراك"
3406
-
3407
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3408
- msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3409
- msgstr "يتم نسخ هذه الإعدادات أيضا في إعدادات \"مخصص البريد الإلكترونيللمسؤول\" عند الحفظ."
3410
-
3411
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3412
- msgid "This form is empty."
3413
- msgstr "هذا النموذج فارغ."
3414
-
3415
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3416
- msgid "Delete all items"
3417
- msgstr "حذف جميع العناصر"
3418
-
3419
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3420
- msgid "Delete all"
3421
- msgstr "حذف الكل"
3422
-
3423
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1621
3424
- msgid "Choose..."
3425
- msgstr "اختر..."
3426
-
3427
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3428
- msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3429
- msgstr "تعيين عدد المستخدمين ليتم عرضهم على كل جزء مرقم لكل المستخدمين"
3430
-
3431
- #: profile-builder-2.0/admin/admin-bar.php:10
3432
- msgid "Show/Hide the Admin Bar on the Front-End"
3433
- msgstr "إظهار / إخفاء شريط المشرف على الواجهة الأمامية"
3434
-
3435
- #: profile-builder-2.0/admin/admin-bar.php:10
3436
- #: profile-builder-2.0/admin/admin-bar.php:47
3437
- msgid "Admin Bar Settings"
3438
- msgstr "إعدادات شريط المشرف"
3439
-
3440
- #: profile-builder-2.0/admin/admin-bar.php:57
3441
- msgid "User-Role"
3442
- msgstr "دور المستخدم"
3443
-
3444
- #: profile-builder-2.0/admin/admin-bar.php:58
3445
- msgid "Visibility"
3446
- msgstr "الوضوح"
3447
-
3448
- #: profile-builder-2.0/admin/admin-bar.php:73
3449
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3450
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3451
- msgid "Default"
3452
- msgstr "الإفتراضي"
3453
-
3454
- #: profile-builder-2.0/admin/admin-bar.php:74
3455
- msgid "Show"
3456
- msgstr "إظهار"
3457
-
3458
- #: profile-builder-2.0/admin/admin-bar.php:75
3459
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1554
3460
- msgid "Hide"
3461
- msgstr "إخفاء"
3462
-
3463
- #: pb-add-on-woocommerce/woosync-page.php:147
3464
- #: profile-builder-2.0/admin/admin-bar.php:86
3465
- #: profile-builder-2.0/admin/general-settings.php:224
3466
- #: profile-builder-2.0/admin/register-version.php:95
3467
- #: profile-builder-2.0/features/functions.php:697
3468
- #: profile-builder-2.0/modules/modules.php:127
3469
- msgid "Save Changes"
3470
- msgstr "حفظ التغييرات"
3471
-
3472
- #: profile-builder-2.0/admin/admin-functions.php:37
3473
- msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
3474
- msgstr "يتم تعيين تسجيل باستخدام البريد الإلكتروني. لن يظهر هذا الحقل في الواجهة الأمامية! (يمكنك تغيير هذه الإعدادات ضمن علامة التبويب \"%s\")"
3475
-
3476
- #: profile-builder-2.0/admin/admin-functions.php:37
3477
- #: profile-builder-2.0/admin/general-settings.php:10
3478
- #: profile-builder-2.0/admin/general-settings.php:35
3479
- msgid "General Settings"
3480
- msgstr "الإعدادات العامة"
3481
-
3482
- #: profile-builder-2.0/admin/admin-functions.php:137
3483
- #: profile-builder-2.0/admin/general-settings.php:210
3484
- msgid "Very weak"
3485
- msgstr "ضعيف جدا"
3486
-
3487
- #: profile-builder-2.0/admin/admin-functions.php:137
3488
- #: profile-builder-2.0/admin/general-settings.php:211
3489
- #: profile-builder-2.0/features/functions.php:552
3490
- msgid "Weak"
3491
- msgstr "ضعيف"
3492
-
3493
- #: profile-builder-2.0/admin/admin-functions.php:137
3494
- #: profile-builder-2.0/admin/general-settings.php:212
3495
- #: profile-builder-2.0/features/functions.php:552
3496
- msgid "Medium"
3497
- msgstr "متوسط"
3498
-
3499
- #: profile-builder-2.0/admin/admin-functions.php:137
3500
- #: profile-builder-2.0/admin/general-settings.php:213
3501
- #: profile-builder-2.0/features/functions.php:552
3502
- msgid "Strong"
3503
- msgstr "قوي"
3504
-
3505
- #: profile-builder-2.0/admin/admin-functions.php:187
3506
- msgid "Add Field"
3507
- msgstr "إضافة حقل"
3508
-
3509
- #: profile-builder-2.0/admin/admin-functions.php:189
3510
- #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3511
- msgid "Save Settings"
3512
- msgstr "حفظ الإعدادات"
3513
-
3514
- #: profile-builder-2.0/admin/basic-info.php:10
3515
- msgid "Basic Information"
3516
- msgstr "معلومات اساسية"
3517
-
3518
- #: profile-builder-2.0/admin/basic-info.php:29
3519
- msgid "Version %s"
3520
- msgstr "الاصدار %s"
3521
-
3522
- #: profile-builder-2.0/admin/basic-info.php:30
3523
- msgid "<strong>Profile Builder </strong>"
3524
- msgstr "<strong>Profile Builder </strong>"
3525
-
3526
- #: profile-builder-2.0/admin/basic-info.php:31
3527
- msgid "The best way to add front-end registration, edit profile and login forms."
3528
- msgstr "أفضل طريقة لإضافة تسجيل الواجهة الأمامية, تعديل الملف الشخصي واستمارات تسجيل الدخول."
3529
-
3530
- #: profile-builder-2.0/admin/basic-info.php:33
3531
- msgid "For Modern User Interaction"
3532
- msgstr "لتفاعل المستخدم الحديث"
3533
-
3534
- #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3535
- #: profile-builder-2.0/admin/basic-info.php:36
3536
- #: profile-builder-2.0/features/login-widget/login-widget.php:59
3537
- msgid "Login"
3538
- msgstr "تسجيل الدخول"
3539
-
3540
- #: profile-builder-2.0/admin/basic-info.php:40
3541
- msgid "Registration"
3542
- msgstr "التسجيل"
3543
-
3544
- #: profile-builder-2.0/admin/basic-info.php:44
3545
- msgid "Edit Profile"
3546
- msgstr "تعديل الملف الشخصي"
3547
-
3548
- #: profile-builder-2.0/admin/basic-info.php:51
3549
- msgid "Extra Features"
3550
- msgstr "ميزات اضافية"
3551
-
3552
- #: profile-builder-2.0/admin/basic-info.php:52
3553
- msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3554
- msgstr "الميزات التي تمنحك مزيدا من التحكم في المستخدمين ,زيادة الأمان وتساعدك على محاربة الرسائل غير المرغوب فيها لتسجيل المستخدمين."
3555
-
3556
- #: profile-builder-2.0/admin/basic-info.php:53
3557
- msgid "Enable extra features"
3558
- msgstr "تمكين ميزات إضافية"
3559
-
3560
- #: profile-builder-2.0/admin/basic-info.php:57
3561
- msgid "Recover Password"
3562
- msgstr "إستعادة كلمة المرور"
3563
-
3564
- #: profile-builder-2.0/admin/basic-info.php:61
3565
- msgid "Admin Approval (*)"
3566
- msgstr "موافقة المشرف (*)"
3567
-
3568
- #: profile-builder-2.0/admin/basic-info.php:62
3569
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3570
- msgstr "عليك أن تقرر من هو المستخدم على موقع الويب الخاص بك. الحصول على إخطار عبر البريد الإلكتروني أو الموافقة على عدة مستخدمين في وقت واحد من واجهة المستخدم ووردبريس."
3571
-
3572
- #: profile-builder-2.0/admin/basic-info.php:65
3573
- msgid "Email Confirmation"
3574
- msgstr "تأكيد البريد الإلكتروني"
3575
-
3576
- #: profile-builder-2.0/admin/basic-info.php:66
3577
- msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3578
- msgstr "تأكد من تسجيل المستخدمين من خلال عناوين بريد إلكتروني حقيقية. عند التسجيل سوف يتلقى المستخدمين إخطارا لتأكيد عنوان بريدهم الإلكتروني."
3579
-
3580
- #: profile-builder-2.0/admin/basic-info.php:69
3581
- msgid "Minimum Password Length and Strength Meter"
3582
- msgstr "الحد الأدنى لطول كلمة المرور وقوتها"
3583
-
3584
- #: profile-builder-2.0/admin/basic-info.php:70
3585
- msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3586
- msgstr "القضاء على كلمات المرور الضعيفة تماما عن طريق وضع الحد الأدنى لطول كلمة المرور وإنفاذ قوة كلمة مرور معينة."
3587
-
3588
- #: profile-builder-2.0/admin/basic-info.php:73
3589
- msgid "Login with Email or Username"
3590
- msgstr "تسجيل الدخول عن طريق اسم المستخدم أو البريد الإلكتروني"
3591
-
3592
- #: profile-builder-2.0/admin/basic-info.php:74
3593
- msgid "Allow users to log in with their email or username when accessing your site."
3594
- msgstr "السماح للمستخدمين بتسجيل الدخول باستخدام البريد الإلكتروني أو اسم المستخدم عند الدخول إلى موقعك."
3595
-
3596
- #: profile-builder-2.0/admin/basic-info.php:87
3597
- msgid "Customize Your Forms The Way You Want (*)"
3598
- msgstr "تخصيص النماذج بالطريقة التي تريدها (*)"
3599
-
3600
- #: profile-builder-2.0/admin/basic-info.php:88
3601
- msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3602
- msgstr "مع حقول الملف الشخصي الإضافية يمكنك إنشاء نموذج التسجيل الدقيق الذي يحتاجه المشروع الخاص بك."
3603
-
3604
- #: profile-builder-2.0/admin/basic-info.php:90
3605
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3606
- msgstr "حقول الملف الشخصي إضافية متوفرة في إصدارات Hobbyist أو PRO"
3607
-
3608
- #: profile-builder-2.0/admin/basic-info.php:92
3609
- msgid "Get started with extra fields"
3610
- msgstr "بدء استخدام حقول إضافية"
3611
-
3612
- #: profile-builder-2.0/admin/basic-info.php:95
3613
- msgid "Avatar Upload"
3614
- msgstr "رفع الصورة الرمزية"
3615
-
3616
- #: profile-builder-2.0/admin/basic-info.php:96
3617
- msgid "Generic Uploads"
3618
- msgstr "رفع ملفات عامة"
3619
-
3620
- #: profile-builder-2.0/admin/basic-info.php:97
3621
- msgid "Agree To Terms Checkbox"
3622
- msgstr "موافق على مربع الشروط"
3623
-
3624
- #: profile-builder-2.0/admin/basic-info.php:98
3625
- msgid "Datepicker"
3626
- msgstr "منتقي التاريخ"
3627
-
3628
- #: profile-builder-2.0/admin/basic-info.php:101
3629
- msgid "reCAPTCHA"
3630
- msgstr "اختبار reCAPTCHA"
3631
-
3632
- #: profile-builder-2.0/admin/basic-info.php:102
3633
- msgid "Country Select"
3634
- msgstr "تحديد البلد"
3635
-
3636
- #: profile-builder-2.0/admin/basic-info.php:104
3637
- msgid "Timezone Select"
3638
- msgstr "تحديد المنطقة الزمنية"
3639
-
3640
- #: profile-builder-2.0/admin/basic-info.php:108
3641
- msgid "Input / Hidden Input"
3642
- msgstr "الإدخال / الإدخال الخفي"
3643
-
3644
- #: profile-builder-2.0/admin/basic-info.php:110
3645
- msgid "Checkbox"
3646
- msgstr "مربع اختيار"
3647
-
3648
- #: profile-builder-2.0/admin/basic-info.php:111
3649
- msgid "Select"
3650
- msgstr "تحديد"
3651
-
3652
- #: profile-builder-2.0/admin/basic-info.php:112
3653
- msgid "Radio Buttons"
3654
- msgstr "أزرار الراديو"
3655
-
3656
- #: profile-builder-2.0/admin/basic-info.php:113
3657
- msgid "Textarea"
3658
- msgstr "مساحة النص"
3659
-
3660
- #: profile-builder-2.0/admin/basic-info.php:125
3661
- msgid "Powerful Modules (**)"
3662
- msgstr "وحدات قوية (**)"
3663
-
3664
- #: profile-builder-2.0/admin/basic-info.php:126
3665
- msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3666
- msgstr "كل ما تحتاجه لإدارة المستخدمين الخاص بك هو على الأرجح متاح بالفعل باستخدام وحدات Pro."
3667
-
3668
- #: profile-builder-2.0/admin/basic-info.php:128
3669
- msgid "Enable your modules"
3670
- msgstr "تمكين الوحدات الخاصة بك"
3671
-
3672
- #: profile-builder-2.0/admin/basic-info.php:131
3673
- msgid "Find out more about PRO Modules"
3674
- msgstr "معرفة المزيد عن وحدات PRO"
3675
-
3676
- #: profile-builder-2.0/admin/basic-info.php:136
3677
- #: profile-builder-2.0/modules/modules.php:89
3678
- #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3679
- #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3680
- #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3681
- #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3682
- msgid "User Listing"
3683
- msgstr "قائمة المستخدمين"
3684
-
3685
- #: profile-builder-2.0/admin/basic-info.php:138
3686
- msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3687
- msgstr "من السهل تعديل النماذج لإدراج مستخدمي موقعك على الويب بالإضافة إلى إنشاء صفحات مستخدم واحد. يعتمد على الرمز القصير، ويقدم العديد من الخيارات لتخصيص القوائم الخاصة بك."
3688
-
3689
- #: profile-builder-2.0/admin/basic-info.php:144
3690
- msgid "Email Customizer"
3691
- msgstr "مخصص البريد الإلكتروني"
3692
-
3693
- #: profile-builder-2.0/admin/basic-info.php:145
3694
- msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3695
- msgstr "تخصيص جميع الرسائل الإلكترونية المرسلة إلى المستخدمين أو المشرفين. على التسجيل، تأكيد البريد الإلكتروني، موافقة المشرف / أو إلغاء الموافقة."
3696
-
3697
- #: profile-builder-2.0/admin/basic-info.php:148
3698
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3699
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3700
- #: profile-builder-2.0/modules/modules.php:110
3701
- msgid "Custom Redirects"
3702
- msgstr "عمليات إعادة التوجيه المخصصة"
3703
-
3704
- #: profile-builder-2.0/admin/basic-info.php:149
3705
- msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3706
- msgstr "حافظ على المستخدمين خارج لوحة معلومات وردبريس, إعادة توجيههم إلى الصفحة الأولى بعد تسجيل الدخول أو التسجيل, كل شيء على بعد نقرات قليلة."
3707
-
3708
- #: profile-builder-2.0/admin/basic-info.php:154
3709
- #: profile-builder-2.0/modules/modules.php:75
3710
- msgid "Multiple Registration Forms"
3711
- msgstr "نماذج التسجيل المتعددة"
3712
-
3713
- #: profile-builder-2.0/admin/basic-info.php:155
3714
- msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3715
- msgstr "إعداد نماذج تسجيل متعددة مع حقول مختلفة لأدوار معينة للمستخدم. التقاط معلومات مختلفة من أنواع مختلفة من المستخدمين."
3716
-
3717
- #: profile-builder-2.0/admin/basic-info.php:158
3718
- #: profile-builder-2.0/modules/modules.php:82
3719
- msgid "Multiple Edit-profile Forms"
3720
- msgstr "نماذج تحرير الملف الشخصي المتعددة"
3721
-
3722
- #: profile-builder-2.0/admin/basic-info.php:159
3723
- msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3724
- msgstr "السماح لأدوار المستخدمين المختلفة بتعديل معلوماتهم الخاصة. إعداد نماذج تعديل الملف الشخصي متعددة مع حقول مختلفة لبعض أدوار المستخدم."
3725
-
3726
- #: profile-builder-2.0/admin/basic-info.php:187
3727
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3728
- msgstr "* متوفر فقط في إصدارات %1$sHobbyist و Pro%2$s."
3729
-
3730
- #: profile-builder-2.0/admin/basic-info.php:188
3731
- msgid "** only available in the %1$sPro version%2$s."
3732
- msgstr "* متوفر فقط في %1$sإصدارات Pro%2$s."
3733
-
3734
- #: profile-builder-2.0/admin/general-settings.php:39
3735
- msgid "Load Profile Builder's own CSS file in the front-end:"
3736
- msgstr "تحميل ملف CSS ل Profile Builder الخاص بك في الواجهة الأمامية:"
3737
-
3738
- #: profile-builder-2.0/admin/general-settings.php:42
3739
- #: profile-builder-2.0/admin/general-settings.php:55
3740
- #: profile-builder-2.0/admin/general-settings.php:104
3741
- #: profile-builder-2.0/admin/general-settings.php:151
3742
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3743
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3744
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3745
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
3746
- msgid "Yes"
3747
- msgstr "نعم"
3748
-
3749
- #: profile-builder-2.0/admin/general-settings.php:44
3750
- msgid "You can find the default file here: %1$s"
3751
- msgstr "يمكنك العثور على الملف الافتراضي هنا: %1$s"
3752
-
3753
- #: profile-builder-2.0/admin/general-settings.php:51
3754
- msgid "\"Email Confirmation\" Activated:"
3755
- msgstr "\"تأكيد البريد الإلكتروني\" مفعل:"
3756
-
3757
- #: profile-builder-2.0/admin/general-settings.php:56
3758
- #: profile-builder-2.0/admin/general-settings.php:105
3759
- #: profile-builder-2.0/admin/general-settings.php:150
3760
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3761
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3762
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3763
- msgid "No"
3764
- msgstr "لا"
3765
-
3766
- #: profile-builder-2.0/admin/general-settings.php:61
3767
- msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3768
- msgstr "يمكنك العثور على قائمة بعناوين البريد الإلكتروني غير المؤكدة %1$sالمستخدمين > كل المستخدمين > تأكيد البريد الإلكتروني%2$s."
3769
-
3770
- #: profile-builder-2.0/admin/general-settings.php:69
3771
- msgid "\"Email Confirmation\" Landing Page:"
3772
- msgstr "صفحة هبوط \"تأكيد البريد الإلكتروني\":"
3773
-
3774
- #: profile-builder-2.0/admin/general-settings.php:74
3775
- msgid "Existing Pages"
3776
- msgstr "الصفحات الحالية"
3777
-
3778
- #: profile-builder-2.0/admin/general-settings.php:89
3779
- msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3780
- msgstr "حدد الصفحة التي سيتم توجيه المستخدمين إليها عند تأكيد حساب البريد الإلكتروني. قد تختلف هذه الصفحة عن صفحة (صفحات) التسجيل ويمكن تغييرها في أي وقت. إذا لم يتم تحديد أي شيء، سيتم عرض صفحة تأكيد بسيطة للمستخدم."
3781
-
3782
- #: profile-builder-2.0/admin/general-settings.php:100
3783
- msgid "\"Admin Approval\" Activated:"
3784
- msgstr "\"موافقة المشرف\" مفعلة"
3785
-
3786
- #: profile-builder-2.0/admin/general-settings.php:108
3787
- msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3788
- msgstr "يمكنك العثور على قائمة المستخدمين في %1$sالمستخدمين > كل المستخدمين > موافقة المشرف%2$s."
3789
-
3790
- #: profile-builder-2.0/admin/general-settings.php:165
3791
- msgid "\"Admin Approval\" Feature:"
3792
- msgstr "ميزة \"موافقة المشرف\":"
3793
-
3794
- #: profile-builder-2.0/admin/general-settings.php:168
3795
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3796
- msgstr "يمكنك أن تقرر من هو المستخدم على موقع الويب الخاص بك. الحصول على إخطار عبر البريد الإلكتروني أو الموافقة على عدة مستخدمين في وقت واحد من واجهة المستخدم ووردبريس. تمكين موافقة المشرف من خلال الترقية إلى %1$sاصدارات Hobbyist أو PRO %2$s."
3797
-
3798
- #: profile-builder-2.0/admin/general-settings.php:175
3799
- msgid "Allow Users to Log in With:"
3800
- msgstr "السماح للمستخدمين بتسجيل الدخول باستخدام:"
3801
-
3802
- #: profile-builder-2.0/admin/general-settings.php:180
3803
- #: profile-builder-2.0/admin/manage-fields.php:201
3804
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3805
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3806
- #: profile-builder-2.0/front-end/login.php:85
3807
- #: profile-builder-2.0/front-end/login.php:99
3808
- #: profile-builder-2.0/front-end/login.php:218
3809
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3810
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3811
- #: profile-builder-2.0/modules/user-listing/userlisting.php:102
3812
- #: profile-builder-2.0/modules/user-listing/userlisting.php:277
3813
- #: profile-builder-2.0/modules/user-listing/userlisting.php:730
3814
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2219
3815
- msgid "Username"
3816
- msgstr "اسم المستخدم"
3817
-
3818
- #: profile-builder-2.0/admin/general-settings.php:181
3819
- #: profile-builder-2.0/front-end/login.php:215
3820
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3821
- #: profile-builder-2.0/modules/user-listing/userlisting.php:736
3822
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2220
3823
- msgid "Email"
3824
- msgstr "البريد الإلكتروني"
3825
-
3826
- #: profile-builder-2.0/admin/general-settings.php:193
3827
- msgid "Minimum Password Length:"
3828
- msgstr "الحد الأدنى لطول كلمة المرور:"
3829
-
3830
- #: profile-builder-2.0/admin/general-settings.php:198
3831
- msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3832
- msgstr "أدخل الحد الأدنى من الحروف التي يجب أن تحتوي عليها كلمة المرور. اتركه فارغا لعدم تحديد الحد الأدنى"
3833
-
3834
- #: profile-builder-2.0/admin/general-settings.php:205
3835
- msgid "Minimum Password Strength:"
3836
- msgstr "الحد الأدنى لقوة كلمة المرور:"
3837
-
3838
- #: profile-builder-2.0/admin/general-settings.php:209
3839
- msgid "Disabled"
3840
- msgstr "تعطيل"
3841
-
3842
- #: profile-builder-2.0/admin/manage-fields.php:12
3843
- msgid "Manage Fields"
3844
- msgstr "إدارة الحقول"
3845
-
3846
- #: profile-builder-2.0/admin/manage-fields.php:13
3847
- msgid "Manage Default and Extra Fields"
3848
- msgstr "إدارة الحقول الافتراضية والإضافية"
3849
-
3850
- #: profile-builder-2.0/admin/manage-fields.php:118
3851
- msgid "Field Title"
3852
- msgstr "عنوان الحقل"
3853
-
3854
- #: profile-builder-2.0/admin/manage-fields.php:118
3855
- msgid "Title of the field"
3856
- msgstr "عنوان الحقل"
3857
-
3858
- #: profile-builder-2.0/admin/manage-fields.php:119
3859
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3860
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3861
- msgid "Field"
3862
- msgstr "حقل"
3863
-
3864
- #: profile-builder-2.0/admin/manage-fields.php:120
3865
- msgid "Meta-name"
3866
- msgstr "اسم ميتا"
3867
-
3868
- #: profile-builder-2.0/admin/manage-fields.php:121
3869
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3870
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3871
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3872
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3873
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3874
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3875
- msgid "ID"
3876
- msgstr "معرف فريد"
3877
-
3878
- #: profile-builder-2.0/admin/manage-fields.php:121
3879
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3880
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3881
- msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
3882
- msgstr "معرف فريد يتم إنشاؤه تلقائيا لهذا الحقل بالذات <br/> يمكنك استخدام هذا الخيار مع فلاتر لاستهداف هذا العنصر إذا لزم الأمر <br/> لا يمكن تعديله"
3883
-
3884
- #: profile-builder-2.0/admin/manage-fields.php:122
3885
- msgid "Description"
3886
- msgstr "وصف"
3887
-
3888
- #: profile-builder-2.0/admin/manage-fields.php:122
3889
- msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3890
- msgstr "أدخل وصفا (مفصلا) للخيار لكي يقرأه المستخدمين النهائيين <br/> اختياري"
3891
-
3892
- #: profile-builder-2.0/admin/manage-fields.php:123
3893
- msgid "Row Count"
3894
- msgstr "عدد الصفوف"
3895
-
3896
- #: profile-builder-2.0/admin/manage-fields.php:123
3897
- msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3898
- msgstr "حدد عدد الصفوف لحقل 'مساحة النص' <br/> إذا لم يتم تحديدها، فسيكون الإعداد الافتراضي هو 5"
3899
-
3900
- #: profile-builder-2.0/admin/manage-fields.php:124
3901
- msgid "Allowed Image Extensions"
3902
- msgstr "صيغ الصور المسموح بها"
3903
-
3904
- #: profile-builder-2.0/admin/manage-fields.php:125
3905
- msgid "Allowed Upload Extensions"
3906
- msgstr "الصيغ المسموح رفعها"
3907
-
3908
- #: profile-builder-2.0/admin/manage-fields.php:126
3909
- msgid "Avatar Size"
3910
- msgstr "حجم الصورة الرمزية"
3911
-
3912
- #: profile-builder-2.0/admin/manage-fields.php:126
3913
- msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3914
- msgstr "أدخل قيمة (بين 20 و 200) لحجم \"الصورة الرمزية\" <br/> إذا لم يتم تحديدها، فسيكون الإعداد الافتراضي هو 100"
3915
-
3916
- #: profile-builder-2.0/admin/manage-fields.php:127
3917
- msgid "Date-format"
3918
- msgstr "صيغة التاريخ"
3919
-
3920
- #: profile-builder-2.0/admin/manage-fields.php:128
3921
- msgid "Terms of Agreement"
3922
- msgstr "شروط الاتفاق"
3923
-
3924
- #: profile-builder-2.0/admin/manage-fields.php:128
3925
- msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3926
- msgstr "أدخل وصفا تفصيليا لشروط الاتفاق ليتمكن المستخدم من قراءته.<br/>يمكن إدراج الروابط باستخدام بنية HTML القياسية: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3927
-
3928
- #: profile-builder-2.0/admin/manage-fields.php:129
3929
- msgid "Options"
3930
- msgstr "خيارات"
3931
-
3932
- #: profile-builder-2.0/admin/manage-fields.php:130
3933
- msgid "Labels"
3934
- msgstr "تسميات"
3935
-
3936
- #: profile-builder-2.0/admin/manage-fields.php:130
3937
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
3938
- msgstr "أدخل قائمة تسميات مفصولة بفواصل <br/> مرئية للمستخدم"
3939
-
3940
- #: profile-builder-2.0/admin/manage-fields.php:137
3941
- msgid "Default Value"
3942
- msgstr "القيمة الافتراضية"
3943
-
3944
- #: profile-builder-2.0/admin/manage-fields.php:137
3945
- msgid "Default value of the field"
3946
- msgstr "القيمة الافتراضية للحقل"
3947
-
3948
- #: profile-builder-2.0/admin/manage-fields.php:138
3949
- #: profile-builder-2.0/admin/manage-fields.php:140
3950
- #: profile-builder-2.0/admin/manage-fields.php:141
3951
- #: profile-builder-2.0/admin/manage-fields.php:142
3952
- msgid "Default Option"
3953
- msgstr "الخيار الافتراضي"
3954
-
3955
- #: profile-builder-2.0/admin/manage-fields.php:138
3956
- msgid "Specify the option which should be selected by default"
3957
- msgstr "حدد الخيار الذي يجب تحديده بشكل افتراضي"
3958
-
3959
- #: profile-builder-2.0/admin/manage-fields.php:139
3960
- msgid "Default Option(s)"
3961
- msgstr "الخيار الافتراضي (الخيارات)"
3962
-
3963
- #: profile-builder-2.0/admin/manage-fields.php:139
3964
- msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3965
- msgstr "حدد الخيار الذي يجب تحديده افتراضيا <br/> إذا كانت هناك قيم متعددة، فقم بفصلها مع '،' (فاصلة)"
3966
-
3967
- #: profile-builder-2.0/admin/manage-fields.php:153
3968
- msgid "Default Content"
3969
- msgstr "المحتوى الافتراضي"
3970
-
3971
- #: profile-builder-2.0/admin/manage-fields.php:153
3972
- msgid "Default value of the textarea"
3973
- msgstr "القيمة الافتراضية لمساحة النص"
3974
-
3975
- #: pb-add-on-woocommerce/index.php:306
3976
- #: profile-builder-2.0/admin/manage-fields.php:160
3977
- msgid "Required"
3978
- msgstr "مطلوب"
3979
-
3980
- #: profile-builder-2.0/admin/manage-fields.php:160
3981
- msgid "Whether the field is required or not"
3982
- msgstr "ما إذا كان الحقل مطلوب أم لا"
3983
-
3984
- #: profile-builder-2.0/admin/manage-fields.php:161
3985
- msgid "Overwrite Existing"
3986
- msgstr "استبدال الحالي"
3987
-
3988
- #: profile-builder-2.0/admin/manage-fields.php:161
3989
- msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
3990
- msgstr "سيؤدي تحديد \"نعم\" إلى إضافة الحقل إلى القائمة، ولكن سيتم استبدال أي حقل آخر في قاعدة البيانات التي تحتوي على الاسم الوصفي نفسه <br/> استخدم هذا على مسؤوليتك الخاصة"
3991
-
3992
- #: profile-builder-2.0/admin/manage-fields.php:167
3993
- msgid "Field Properties"
3994
- msgstr "خصائص الحقل"
3995
-
3996
- #: profile-builder-2.0/admin/manage-fields.php:181
3997
- msgid "Registration & Edit Profile"
3998
- msgstr "تسجيل وتحرير الملف الشخصي"
3999
-
4000
- #: profile-builder-2.0/admin/manage-fields.php:200
4001
- msgid "Name"
4002
- msgstr "الاسم"
4003
-
4004
- #: profile-builder-2.0/admin/manage-fields.php:201
4005
- msgid "Usernames cannot be changed."
4006
- msgstr "اسم المستخدم لا يمكن تغييره."
4007
-
4008
- #: pb-add-on-woocommerce/billing-fields.php:6
4009
- #: pb-add-on-woocommerce/shipping-fields.php:6
4010
- #: profile-builder-2.0/admin/manage-fields.php:202
4011
- msgid "First Name"
4012
- msgstr "الاسم الأول"
4013
-
4014
- #: pb-add-on-woocommerce/billing-fields.php:7
4015
- #: pb-add-on-woocommerce/shipping-fields.php:7
4016
- #: profile-builder-2.0/admin/manage-fields.php:203
4017
- msgid "Last Name"
4018
- msgstr "الاسم الأخير"
4019
-
4020
- #: profile-builder-2.0/admin/manage-fields.php:204
4021
- #: profile-builder-2.0/modules/user-listing/userlisting.php:769
4022
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2227
4023
- msgid "Nickname"
4024
- msgstr "الكنية"
4025
-
4026
- #: profile-builder-2.0/admin/manage-fields.php:205
4027
- msgid "Display name publicly as"
4028
- msgstr "عرض الاسم بشكل عام ك"
4029
-
4030
- #: profile-builder-2.0/admin/manage-fields.php:206
4031
- msgid "Contact Info"
4032
- msgstr "بيانات التواصل"
4033
-
4034
- #: profile-builder-2.0/admin/manage-fields.php:207
4035
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
4036
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
4037
- #: profile-builder-2.0/front-end/recover.php:118
4038
- #: profile-builder-2.0/modules/user-listing/userlisting.php:108
4039
- msgid "E-mail"
4040
- msgstr "البريد الإلكتروني"
4041
-
4042
- #: profile-builder-2.0/admin/manage-fields.php:208
4043
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
4044
- #: profile-builder-2.0/modules/user-listing/userlisting.php:111
4045
- #: profile-builder-2.0/modules/user-listing/userlisting.php:751
4046
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2221
4047
- msgid "Website"
4048
- msgstr "الموقع"
4049
-
4050
- #: profile-builder-2.0/admin/manage-fields.php:212
4051
- msgid "AIM"
4052
- msgstr "AIM"
4053
-
4054
- #: profile-builder-2.0/admin/manage-fields.php:213
4055
- msgid "Yahoo IM"
4056
- msgstr "Yahoo IM"
4057
-
4058
- #: profile-builder-2.0/admin/manage-fields.php:214
4059
- msgid "Jabber / Google Talk"
4060
- msgstr "Jabber / Google Talk"
4061
-
4062
- #: profile-builder-2.0/admin/manage-fields.php:217
4063
- msgid "About Yourself"
4064
- msgstr "عن الكاتب"
4065
-
4066
- #: profile-builder-2.0/admin/manage-fields.php:218
4067
- #: profile-builder-2.0/modules/user-listing/userlisting.php:114
4068
- #: profile-builder-2.0/modules/user-listing/userlisting.php:754
4069
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2222
4070
- msgid "Biographical Info"
4071
- msgstr "السيرة الذاتية"
4072
-
4073
- #: profile-builder-2.0/admin/manage-fields.php:218
4074
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4075
- msgstr "مشاركة معلومات عن السيرة الذاتية لملء ملفك الشخصي. قد تظهر ذلك علنا."
4076
-
4077
- #: profile-builder-2.0/admin/manage-fields.php:219
4078
- #: profile-builder-2.0/front-end/recover.php:73
4079
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4080
- msgid "Password"
4081
- msgstr "كلمة المرور"
4082
-
4083
- #: profile-builder-2.0/admin/manage-fields.php:219
4084
- msgid "Type your password."
4085
- msgstr "قم بكتابة كلمة المرور."
4086
-
4087
- #: profile-builder-2.0/admin/manage-fields.php:220
4088
- #: profile-builder-2.0/front-end/recover.php:74
4089
- msgid "Repeat Password"
4090
- msgstr "إعادة كلمة المرور"
4091
-
4092
- #: profile-builder-2.0/admin/manage-fields.php:220
4093
- msgid "Type your password again. "
4094
- msgstr "أعد كتابة كلمة المرور مرة أخرى."
4095
-
4096
- #: profile-builder-2.0/admin/manage-fields.php:980
4097
- #: profile-builder-2.0/admin/manage-fields.php:1137
4098
- msgid "You must select a field\n"
4099
- msgstr "يجب تحديد حقل\n"
4100
-
4101
- #: profile-builder-2.0/admin/manage-fields.php:990
4102
- msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4103
- msgstr "يرجى اختيار نوع حقل مختلف لأن هذا الحقل موجود بالفعل في النموذج (يجب أن يكون فريدا)\n"
4104
-
4105
- #: profile-builder-2.0/admin/manage-fields.php:1001
4106
- msgid "The entered avatar size is not between 20 and 200\n"
4107
- msgstr "حجم الصورة الرمزية الذي تم إدخاله لا يتراوح بين 20 و 200\n"
4108
-
4109
- #: profile-builder-2.0/admin/manage-fields.php:1004
4110
- msgid "The entered avatar size is not numerical\n"
4111
- msgstr "حجم الصورة الرمزية المدخلة ليست رقمية\n"
4112
-
4113
- #: profile-builder-2.0/admin/manage-fields.php:1012
4114
- msgid "The entered row number is not numerical\n"
4115
- msgstr "رقم الصف الذي تم إدخاله غير رقمي\n"
4116
-
4117
- #: profile-builder-2.0/admin/manage-fields.php:1015
4118
- msgid "You must enter a value for the row number\n"
4119
- msgstr "يجب إدخال قيمة لرقم الصف\n"
4120
-
4121
- #: profile-builder-2.0/admin/manage-fields.php:1036
4122
- msgid "The entered value for the Datepicker is not a valid date-format\n"
4123
- msgstr "القيمة المدخلة لمنسق التاريخ ليست تنسيق تاريخ صالح\n"
4124
-
4125
- #: profile-builder-2.0/admin/manage-fields.php:1039
4126
- msgid "You must enter a value for the date-format\n"
4127
- msgstr "يجب إدخال قيمة لتنسيق التاريخ\n"
4128
-
4129
- #: profile-builder-2.0/admin/manage-fields.php:1067
4130
- #: profile-builder-2.0/admin/manage-fields.php:1075
4131
- #: profile-builder-2.0/admin/manage-fields.php:1086
4132
- msgid "That meta-name is already in use\n"
4133
- msgstr "هذا الاسم الوصفي قيد الاستخدام \n"
4134
-
4135
- #: profile-builder-2.0/admin/manage-fields.php:1117
4136
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4137
- msgstr "لم يتطابق الخيار (الخيارات) التالي مع الخيارات الموجودة في قائمة الخيارات:%s\n"
4138
-
4139
- #: profile-builder-2.0/admin/manage-fields.php:1121
4140
- msgid "The following option did not coincide with the ones in the options list: %s\n"
4141
- msgstr "لم يتطابق الخيار التالي مع تلك الموجودة في قائمة الخيارات: %s\n"
4142
-
4143
- #: profile-builder-2.0/admin/manage-fields.php:1144
4144
- msgid "That field is already added in this form\n"
4145
- msgstr "تمت إضافة هذا الحقل مسبقا في هذا النموذج\n"
4146
-
4147
- #: profile-builder-2.0/admin/manage-fields.php:1193
4148
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4149
- msgstr "<pre>العنوان</pre><pre>النوع</pre><pre>الاسم الوصفي</pre><pre class=\"wppb-mb-head-required\">مطلوب</pre>"
4150
-
4151
- #: profile-builder-2.0/admin/manage-fields.php:1193
4152
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4153
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4154
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4155
- #: profile-builder-2.0/features/functions.php:718
4156
- #: profile-builder-2.0/features/functions.php:725
4157
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4158
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4159
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4160
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4161
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4162
- msgid "Edit"
4163
- msgstr "تعديل"
4164
-
4165
- #: profile-builder-2.0/admin/manage-fields.php:1193
4166
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4167
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4168
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4169
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4170
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4171
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4172
- #: profile-builder-2.0/features/functions.php:711
4173
- #: profile-builder-2.0/features/functions.php:725
4174
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4175
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4176
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4177
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4178
- msgid "Delete"
4179
- msgstr "حذف"
4180
-
4181
- #: profile-builder-2.0/admin/manage-fields.php:1208
4182
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4183
- msgstr "استخدم هذه الرموز القصيرة على الصفحات التي تريد عرض النماذج عليها:"
4184
-
4185
- #: profile-builder-2.0/admin/register-version.php:14
4186
- msgid "Register Your Version"
4187
- msgstr "تسجيل الإصدار الخاص بك"
4188
-
4189
- #: profile-builder-2.0/admin/register-version.php:14
4190
- msgid "Register Version"
4191
- msgstr "تسجيل الإصدار"
4192
-
4193
- #: profile-builder-2.0/admin/register-version.php:70
4194
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4195
- msgstr "إذا قمت بتسجيل هذا الإصدار من Profile Builder، فستتلقى معلومات بشأن عمليات الترقية والتصحيحات والدعم الفني."
4196
-
4197
- #: profile-builder-2.0/admin/register-version.php:72
4198
- msgid " Serial Number:"
4199
- msgstr "الرقم التسلسلي"
4200
-
4201
- #: profile-builder-2.0/admin/register-version.php:77
4202
- msgid "The serial number was successfully validated!"
4203
- msgstr "تم التحقق من صحة الرقم التسلسلي!"
4204
-
4205
- #: profile-builder-2.0/admin/register-version.php:79
4206
- msgid "The serial number entered couldn't be validated!"
4207
- msgstr "تعذر التحقق من الرقم التسلسلي الذي تم إدخاله!"
4208
-
4209
- #: profile-builder-2.0/admin/register-version.php:83
4210
- msgid "The serial number couldn't be validated because it expired!"
4211
- msgstr "تعذر التحقق من الرقم التسلسلي لأنه منتهي!"
4212
-
4213
- #: profile-builder-2.0/admin/register-version.php:85
4214
- msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
4215
- msgstr "تعذر التحقق من الرقم التسلسلي بسبب انتهاء مهلة العملية. من ممكن أن يكون بسبب مشكلة في الخادم. الرجاء معاودة المحاولة في وقت لاحق!"
4216
-
4217
- #: profile-builder-2.0/admin/register-version.php:87
4218
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4219
- msgstr "(مثال. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4220
-
4221
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4222
- #: profile-builder-2.0/features/functions.php:725
4223
- msgid "Content"
4224
- msgstr "محتوى"
4225
-
4226
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4227
- msgid "Edit this item"
4228
- msgstr "تعديل هذا العنصر"
4229
-
4230
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4231
- msgid "Delete this item"
4232
- msgstr "حذف هذا العنصر"
4233
-
4234
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4235
- msgid "Please enter a value for the required field "
4236
- msgstr "الرجاء إدخال قيمة للحقل المطلوب"
4237
-
4238
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4239
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4240
- msgid "Select File"
4241
- msgstr "حدد ملف"
4242
-
4243
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4244
- #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4245
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4246
- msgid "Remove"
4247
- msgstr "إزالة"
4248
-
4249
- #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4250
- msgid "You can add the information for the %s after you add a entry"
4251
- msgstr "يمكنك إضافة المعلومات ل %s بعد إضافة إدخال"
4252
-
4253
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4254
- #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4255
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4256
- msgid "Upload "
4257
- msgstr "رفع"
4258
-
4259
- #: profile-builder-2.0/features/class-list-table.php:184
4260
- msgid "No items found."
4261
- msgstr "لاتوجد نتائج."
4262
-
4263
- #: profile-builder-2.0/features/class-list-table.php:308
4264
- msgid "Bulk Actions"
4265
- msgstr "إجراءات جملة"
4266
-
4267
- #: profile-builder-2.0/features/class-list-table.php:318
4268
- msgid "Apply"
4269
- msgstr "تطبيق"
4270
-
4271
- #: profile-builder-2.0/features/class-list-table.php:402
4272
- msgid "Show all dates"
4273
- msgstr "إظهار كل التواريخ"
4274
-
4275
- #: profile-builder-2.0/features/class-list-table.php:415
4276
- msgid "%1$s %2$d"
4277
- msgstr "%1$s %2$d"
4278
-
4279
- #: profile-builder-2.0/features/class-list-table.php:431
4280
- msgid "List View"
4281
- msgstr "عرض القائمة"
4282
-
4283
- #: profile-builder-2.0/features/class-list-table.php:432
4284
- msgid "Excerpt View"
4285
- msgstr "عرض مقتطف"
4286
-
4287
- #: profile-builder-2.0/features/class-list-table.php:458
4288
- msgid "%s pending"
4289
- msgstr "%s معلقة"
4290
-
4291
- #: profile-builder-2.0/features/class-list-table.php:566
4292
- msgid "%1$s of %2$s"
4293
- msgstr "%1$s من %2$s"
4294
-
4295
- #: profile-builder-2.0/features/class-list-table.php:713
4296
- msgid "Select All"
4297
- msgstr "تحديد الكل"
4298
-
4299
- #: profile-builder-2.0/features/functions.php:526
4300
- msgid "Strength indicator"
4301
- msgstr "مؤشر القوة"
4302
-
4303
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4304
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4305
- msgid "Admin Approval"
4306
- msgstr "موافقة المشرف"
4307
-
4308
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4309
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4310
- msgid "Do you want to"
4311
- msgstr "هل تريد أن"
4312
-
4313
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4314
- msgid "Your session has expired! Please refresh the page and try again"
4315
- msgstr "انتهت صلاحية جلسة العمل الخاصة بك! يرجى تحديث الصفحة وحاول مرة أخرى"
4316
-
4317
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
4318
- msgid "User successfully approved!"
4319
- msgstr "تمت الموافقة على المستخدم بنجاح"
4320
-
4321
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:74
4322
- msgid "User successfully unapproved!"
4323
- msgstr "تم إلغاء الموافقة للمستخدم بنجاح!"
4324
-
4325
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:80
4326
- msgid "User successfully deleted!"
4327
- msgstr "تم حذف المستخدم بنجاح!"
4328
-
4329
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:85
4330
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:131
4331
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
4332
- msgid "You either don't have permission for that action or there was an error!"
4333
- msgstr "إما لم يكن لديك صلاحية لهذا الإجراء أو كان هناك خطأ!"
4334
-
4335
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
4336
- msgid "Your session has expired! Please refresh the page and try again."
4337
- msgstr "انتهت صلاحية جلسة العمل الخاصة بك! يرجى تحديث الصفحة وحاول مرة أخرى."
4338
-
4339
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
4340
- msgid "Users successfully approved!"
4341
- msgstr "تمت الموافقة على المستخدمين بنجاح!"
4342
-
4343
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:119
4344
- msgid "Users successfully unapproved!"
4345
- msgstr "تم إلغاء الموافقة للمستخدمين بنجاح!"
4346
-
4347
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:127
4348
- msgid "Users successfully deleted!"
4349
- msgstr "تم حذف المستخدمين بنجاح!"
4350
-
4351
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:147
4352
- msgid "Your account on %1$s has been approved!"
4353
- msgstr "تمت الموافقة على حسابك في%1$s !"
4354
-
4355
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:148
4356
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:151
4357
- msgid "approved"
4358
- msgstr "موافقة"
4359
-
4360
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4361
- msgid "An administrator has just approved your account on %1$s (%2$s)."
4362
- msgstr "لقد وافق المشرف على حسابك للتو على %1$s (%2$s)."
4363
-
4364
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:155
4365
- msgid "Your account on %1$s has been unapproved!"
4366
- msgstr "لم يتم اعتماد حسابك على %1$s"
4367
-
4368
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:156
4369
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:159
4370
- msgid "unapproved"
4371
- msgstr "إلغاء الموافقة"
4372
-
4373
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:158
4374
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4375
- msgstr "لم يوافق المشرف سوى على حسابك في %1$s (%2$s)."
4376
-
4377
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
4378
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4379
- msgstr "<strong> خطأ </ strong>: يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من تسجيل الدخول."
4380
-
4381
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
4382
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4383
- msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من استخدام ميزة \"استعادة كلمة المرور\"."
4384
-
4385
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4386
- msgid "delete this user?"
4387
- msgstr "حذف هذا المستخدم؟"
4388
-
4389
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4390
- msgid "unapprove this user?"
4391
- msgstr "إلغاء الموافقة على هذا المستخدم؟"
4392
-
4393
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4394
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4395
- msgid "Unapprove"
4396
- msgstr "إلغاء الموافقة"
4397
-
4398
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4399
- msgid "approve this user?"
4400
- msgstr "الموافقة على هذا المستخدم؟"
4401
-
4402
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4403
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4404
- msgid "Approve"
4405
- msgstr "موافقة"
4406
-
4407
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4408
- #: profile-builder-2.0/modules/user-listing/userlisting.php:278
4409
- #: profile-builder-2.0/modules/user-listing/userlisting.php:742
4410
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2224
4411
- msgid "Firstname"
4412
- msgstr "الاسم الأول"
4413
-
4414
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4415
- #: profile-builder-2.0/modules/user-listing/userlisting.php:745
4416
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2225
4417
- msgid "Lastname"
4418
- msgstr "الاسم الأخير"
4419
-
4420
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4421
- #: profile-builder-2.0/modules/user-listing/userlisting.php:149
4422
- #: profile-builder-2.0/modules/user-listing/userlisting.php:279
4423
- #: profile-builder-2.0/modules/user-listing/userlisting.php:772
4424
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2229
4425
- msgid "Role"
4426
- msgstr "دور"
4427
-
4428
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4429
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4430
- msgid "Registered"
4431
- msgstr "مسجل"
4432
-
4433
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4434
- msgid "User-status"
4435
- msgstr "خالة المستخدم"
4436
-
4437
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4438
- msgid "Do you want to bulk approve the selected users?"
4439
- msgstr "هل تريد الموافقة على مجموعة المستخدمين المحددين؟"
4440
-
4441
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4442
- msgid "Do you want to bulk unapprove the selected users?"
4443
- msgstr "هل تريد إلغاء الموافقة على مجموعة المستخدمين المحددين؟"
4444
-
4445
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4446
- msgid "Do you want to bulk delete the selected users?"
4447
- msgstr "هل تريد الحذف على مجموعة المستخدمين المحددين؟"
4448
-
4449
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4450
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4451
- msgid "Sorry, but you don't have permission to do that!"
4452
- msgstr "نأسف, ليس لديك الصلاحيات لفعل ذلك."
4453
-
4454
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4455
- msgid "Approved"
4456
- msgstr "موافقة"
4457
-
4458
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4459
- msgid "Unapproved"
4460
- msgstr "إلغاء الموافقة"
4461
-
4462
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4463
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4464
- msgid "All Users"
4465
- msgstr "كل المستخدمين"
4466
-
4467
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4468
- msgid "delete this user from the _signups table?"
4469
- msgstr "هل تريد حذف هذا المستخدم من جدول _signups؟"
4470
-
4471
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4472
- msgid "confirm this email yourself?"
4473
- msgstr "تأكيد البريد الإلكتروني بنفسك؟"
4474
-
4475
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4476
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4477
- msgid "Confirm Email"
4478
- msgstr "تأكيد البريد الإلكتروني"
4479
-
4480
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4481
- msgid "resend the activation link?"
4482
- msgstr "إعادة إرسال رابط التفعيل؟"
4483
-
4484
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4485
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4486
- msgid "Resend Activation Email"
4487
- msgstr "إعادة إرسال بريد التفعيل"
4488
-
4489
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4490
- msgid "%s couldn't be deleted"
4491
- msgstr "%s لا يمكن حذفها"
4492
-
4493
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4494
- msgid "All users have been successfully deleted"
4495
- msgstr "تم حذف جميع المستخدمين بنجاح"
4496
-
4497
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4498
- msgid "The selected users have been activated"
4499
- msgstr "تم تنشيط المستخدمين المحددين"
4500
-
4501
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4502
- msgid "The selected users have had their activation emails resent"
4503
- msgstr "تمت إعادة توجيه رسائل البريد الإلكتروني للتفعيل"
4504
-
4505
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4506
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4507
- msgid "Users with Unconfirmed Email Address"
4508
- msgstr "المستخدمون الذين لديهم عنوان بريد إلكتروني غير مؤكد"
4509
-
4510
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
4511
- msgid "There was an error performing that action!"
4512
- msgstr "حدث خطأ أثناء تنفيذ هذا الإجراء!"
4513
-
4514
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
4515
- msgid "The selected user couldn't be deleted"
4516
- msgstr "تعذر حذف المستخدم المحدد"
4517
-
4518
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
4519
- msgid "Email notification resent to user"
4520
- msgstr "تم إعادة إرسال إشعار البريد الإلكتروني للمستخدم"
4521
-
4522
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
4523
- msgid "[%1$s] Activate %2$s"
4524
- msgstr "[%1$s] تفعيل %2$s"
4525
-
4526
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
4527
- #: profile-builder-2.0/front-end/register.php:71
4528
- msgid "Could not create user!"
4529
- msgstr "تعذر إنشاء المستخدم!"
4530
-
4531
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
4532
- msgid "That username is already activated!"
4533
- msgstr "تم تفعيل هذا المستخدم مسبقاً!"
4534
-
4535
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468
4536
- msgid "There was an error while trying to activate the user"
4537
- msgstr "حدث خطأ أثناء محاولة تفعيل المستخدم"
4538
-
4539
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516
4540
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4541
- msgid "A new subscriber has (been) registered!"
4542
- msgstr "قد تم تسجيل مشترك جديد (تم)!"
4543
-
4544
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
4545
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4546
- msgstr "مشترك جديد في %1$s. <br/> <br/> اسم المستخدم:%2$s<br/> البريد الإلكتروني:%3$s<br/>"
4547
-
4548
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
4549
- msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
4550
- msgstr "تم تفعيل ميزة \"موافقة المشرف\" في وقت التسجيل، لذا يرجى تذكر أنك بحاجة إلى الموافقة على هذا المستخدم قبل أن يتمكن من تسجيل الدخول."
4551
-
4552
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
4553
- msgid "[%1$s] Your new account information"
4554
- msgstr "[%1$s] معلومات حسابك الجديد"
4555
-
4556
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
4557
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4558
- msgstr "مرحبا بك في %1$s! <br/> <br/> <br/> اسم المستخدم الخاص بك هو: %2$s وكلمة المرور: %3$s"
4559
-
4560
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
4561
- #: profile-builder-2.0/front-end/register.php:125
4562
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4563
- msgstr "قبل أن تتمكن من الدخول إلى حسابك، يحتاج المشرف إلى الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني."
4564
-
4565
- #: profile-builder-2.0/features/login-widget/login-widget.php:10
4566
- msgid "This login widget lets you add a login form in the sidebar."
4567
- msgstr "هذه الودجت تتيح لك إضافة نموذج تسجيل الدخول في الشريط الجانبي."
4568
-
4569
- #: profile-builder-2.0/features/login-widget/login-widget.php:15
4570
- msgid "Profile Builder Login Widget"
4571
- msgstr "ودجت تسجيل الدخول Profile Builder"
4572
-
4573
- #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4574
- #: profile-builder-2.0/front-end/class-formbuilder.php:415
4575
- #: profile-builder-2.0/front-end/login.php:250
4576
- msgid "Register"
4577
- msgstr "تسجيل عضو جديد"
4578
-
4579
- #: profile-builder-2.0/features/login-widget/login-widget.php:63
4580
- msgid "Title:"
4581
- msgstr "العنوان:"
4582
-
4583
- #: profile-builder-2.0/features/login-widget/login-widget.php:68
4584
- msgid "After login redirect URL (optional):"
4585
- msgstr "URL إعادة توجيه تسجيل الدخول (اختياري):"
4586
-
4587
- #: profile-builder-2.0/features/login-widget/login-widget.php:73
4588
- msgid "Register page URL (optional):"
4589
- msgstr "URL التسجيل (اختياري):"
4590
-
4591
- #: profile-builder-2.0/features/login-widget/login-widget.php:78
4592
- msgid "Password Recovery page URL (optional):"
4593
- msgstr "URL استعادة كلمة المرور (اختياري):"
4594
-
4595
- #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4596
- #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4597
- msgid "The usernames cannot be changed."
4598
- msgstr "اسم المستخدم لا يمكن تغييره."
4599
-
4600
- #: profile-builder-2.0/front-end/class-formbuilder.php:136
4601
- msgid "Only an administrator can add new users."
4602
- msgstr "يمكن للمشرف فقط إضافة مستخدمين جدد."
4603
-
4604
- #: profile-builder-2.0/front-end/class-formbuilder.php:146
4605
- msgid "Users can register themselves or you can manually create users here."
4606
- msgstr "بإمكان المستخدمين تسجيل عضويتهم أو بإمكانك إضافة أعضاء جدد في هذه الشاشة."
4607
-
4608
- #: profile-builder-2.0/front-end/class-formbuilder.php:149
4609
- msgid "Users cannot currently register themselves, but you can manually create users here."
4610
- msgstr "لا يمكن للمستخدمين تسجيل أنفسهم حاليا، ولكن يمكنك إنشاء المستخدمين يدويا هنا."
4611
-
4612
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4613
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
4614
- msgstr "أنت الآن مسجل الدخول بالمستخدم %1s. لا تحتاج إلى حساب آخر. %2s"
4615
-
4616
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4617
- msgid "Log out of this account."
4618
- msgstr "تسجيل الخروج من هذا الحساب"
4619
-
4620
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4621
- msgid "Logout"
4622
- msgstr "تسجيل الخروج"
4623
-
4624
- #: profile-builder-2.0/front-end/class-formbuilder.php:175
4625
- msgid "You must be logged in to edit your profile."
4626
- msgstr "يجب تسجيل الدخول لتعديل ملفك الشخصي."
4627
-
4628
- #: profile-builder-2.0/features/functions.php:994
4629
- msgid "here"
4630
- msgstr "هنا"
4631
-
4632
- #: profile-builder-2.0/features/functions.php:995
4633
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4634
- msgstr "سيتم قريبا إعادة توجيهك تلقائيا. إذا رأيت هذه الصفحة لأكثر من %1$d ثانية، يرجى النقر %2$s.%3$s"
4635
-
4636
- #: profile-builder-2.0/front-end/class-formbuilder.php:315
4637
- #: profile-builder-2.0/front-end/class-formbuilder.php:322
4638
- msgid "The account %1s has been successfully created!"
4639
- msgstr "تم إنشاء الحساب %1s بنجاح!"
4640
-
4641
- #: profile-builder-2.0/front-end/class-formbuilder.php:318
4642
- #: profile-builder-2.0/front-end/class-formbuilder.php:328
4643
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4644
- msgstr "قبل أن تتمكن من الدخول إلى حسابك %1s، يجب تأكيد عنوان بريدك الإلكتروني. يرجى التحقق من البريد الوارد والنقر على رابط التفعيل."
4645
-
4646
- #: profile-builder-2.0/front-end/class-formbuilder.php:324
4647
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4648
- msgstr "قبل أن تتمكن من الدخول إلى حسابك %1s، يحتاج المشرف إلى الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني."
4649
-
4650
- #: profile-builder-2.0/front-end/class-formbuilder.php:347
4651
- msgid "Your profile has been successfully updated!"
4652
- msgstr "تم تحديث ملفك الشخصي بنجاح!"
4653
-
4654
- #: profile-builder-2.0/front-end/class-formbuilder.php:358
4655
- msgid "There was an error in the submitted form"
4656
- msgstr "حدث خطأ في النموذج المقدم"
4657
-
4658
- #: profile-builder-2.0/front-end/class-formbuilder.php:415
4659
- msgid "Add User"
4660
- msgstr "أضف مستخدم جديد"
4661
-
4662
- #: profile-builder-2.0/admin/add-ons.php:170
4663
- #: profile-builder-2.0/front-end/class-formbuilder.php:418
4664
- msgid "Update"
4665
- msgstr "تحديث"
4666
-
4667
- #: profile-builder-2.0/front-end/class-formbuilder.php:481
4668
- msgid "Send these credentials via email."
4669
- msgstr "إرسال كلمة المرور عن طريق البريد الإلكتروني"
4670
-
4671
- #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4672
- #: profile-builder-2.0/front-end/login.php:137
4673
- #: profile-builder-2.0/front-end/login.php:144
4674
- #: profile-builder-2.0/front-end/login.php:158
4675
- #: profile-builder-2.0/front-end/recover.php:17
4676
- #: profile-builder-2.0/front-end/recover.php:245
4677
- msgid "ERROR"
4678
- msgstr "خطأ"
4679
-
4680
- #: profile-builder-2.0/front-end/login.php:137
4681
- msgid "The password you entered is incorrect."
4682
- msgstr "كلمة المرور التي أدخلتها غير صحيحة."
4683
-
4684
- #: profile-builder-2.0/front-end/login.php:138
4685
- #: profile-builder-2.0/front-end/login.php:145
4686
- msgid "Password Lost and Found."
4687
- msgstr "تم فقدان كلمة المرور واسترجاعها"
4688
-
4689
- #: profile-builder-2.0/front-end/login.php:138
4690
- #: profile-builder-2.0/front-end/login.php:145
4691
- msgid "Lost your password"
4692
- msgstr "نسيت كلمة المرور"
4693
-
4694
- #: profile-builder-2.0/front-end/login.php:158
4695
- msgid "Both fields are empty."
4696
- msgstr "كلا الحقلين فارغين"
4697
-
4698
- #: profile-builder-2.0/front-end/login.php:296
4699
- msgid "You are currently logged in as %1$s. %2$s"
4700
- msgstr "أنت الآن مسجل الدخول بالمستخدم %1$s. %2$s"
4701
-
4702
- #: profile-builder-2.0/front-end/login.php:295
4703
- #: profile-builder-2.0/front-end/logout.php:25
4704
- msgid "Log out of this account"
4705
- msgstr "تسجيل الخروج من هذا الحساب"
4706
-
4707
- #: profile-builder-2.0/front-end/login.php:295
4708
- msgid "Log out"
4709
- msgstr "تسجيل الخروج"
4710
-
4711
- #: profile-builder-2.0/front-end/recover.php:17
4712
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4713
- msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من استخدام ميزة \"استعادة كلمة المرور\"."
4714
-
4715
- #: profile-builder-2.0/front-end/recover.php:94
4716
- msgid "Reset Password"
4717
- msgstr "إعادة كلمة المرور"
4718
-
4719
- #: profile-builder-2.0/front-end/recover.php:121
4720
- msgid "Please enter your username or email address."
4721
- msgstr "الرجاء إدخال اسم المستخدم أو عنوان البريد الإلكتروني."
4722
-
4723
- #: profile-builder-2.0/front-end/recover.php:125
4724
- msgid "You will receive a link to create a new password via email."
4725
- msgstr "ستتلقى رابطا لإنشاء كلمة مرور جديدة عبر البريد الإلكتروني."
4726
-
4727
- #: profile-builder-2.0/front-end/recover.php:122
4728
- msgid "Username or E-mail"
4729
- msgstr "أسم المستخدم او البريد الإلكتروني"
4730
-
4731
- #: profile-builder-2.0/front-end/recover.php:138
4732
- msgid "Get New Password"
4733
- msgstr "احصل على كلمة سر جديدة"
4734
-
4735
- #: profile-builder-2.0/front-end/recover.php:185
4736
- msgid "The username entered wasn't found in the database!"
4737
- msgstr "لم يتم العثور على اسم المستخدم الذي تم إدخاله في قاعدة البيانات!"
4738
-
4739
- #: profile-builder-2.0/front-end/recover.php:185
4740
- msgid "Please check that you entered the correct username."
4741
- msgstr "يرجى التحقق من إدخال اسم المستخدم الصحيح."
4742
-
4743
- #: profile-builder-2.0/front-end/recover.php:200
4744
- msgid "Check your e-mail for the confirmation link."
4745
- msgstr "تحقق من بريدك الإلكتروني للحصول على رابط التأكيد."
4746
-
4747
- #: profile-builder-2.0/front-end/recover.php:235
4748
- msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
4749
- msgstr "طلب أحد الأشخاص إعادة تعيين كلمة المرور للحساب التالي: <b>%1$s</ b> <br/> إذا كان هذا خطأ، فتجاهل هذه الرسالة الإلكترونية ولن يحدث أي شيء. <br/> لإعادة تعيين كلمة المرور ، انتقل إلى الرابط التالي:%2$s"
4750
-
4751
- #: profile-builder-2.0/front-end/recover.php:238
4752
- msgid "Password Reset from \"%1$s\""
4753
- msgstr "إعادة تعيين كلمة المرور من \"%1$s\""
4754
-
4755
- #: profile-builder-2.0/front-end/recover.php:245
4756
- msgid "There was an error while trying to send the activation link to %1$s!"
4757
- msgstr "حدث خطأ أثناء محاولة إرسال رابط التفعيل إلى %1$s!"
4758
-
4759
- #: profile-builder-2.0/front-end/recover.php:207
4760
- msgid "The email address entered wasn't found in the database!"
4761
- msgstr "لم يتم العثور على عنوان البريد الإلكتروني الذي تم إدخاله في قاعدة البيانات!"
4762
-
4763
- #: profile-builder-2.0/front-end/recover.php:207
4764
- msgid "Please check that you entered the correct email address."
4765
- msgstr "يرجى التحقق من إدخال البريد الإلكتروني الصحيح."
4766
-
4767
- #: profile-builder-2.0/front-end/recover.php:273
4768
- msgid "Your password has been successfully changed!"
4769
- msgstr "كلمة السر الخاصة بك تم تغييرها بنجاح!"
4770
-
4771
- #: profile-builder-2.0/front-end/recover.php:292
4772
- msgid "You have successfully reset your password to: %1$s"
4773
- msgstr "لقد أعدت تعيين كلمة المرور بنجاح إلى: %1$s"
4774
-
4775
- #: profile-builder-2.0/front-end/recover.php:295
4776
- #: profile-builder-2.0/front-end/recover.php:306
4777
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
4778
- msgstr "تم بنجاح إعادة تعيين كلمة المرور ل %1$s على \"%2$s\""
4779
-
4780
- #: profile-builder-2.0/front-end/recover.php:303
4781
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4782
- msgstr "%1$s قام بطلب تغيير كلمة المرور عبر ميزة إعادة تعيين كلمة المرور. <br/> كلمة المرور الجديدة هي:%2$s"
4783
-
4784
- #: profile-builder-2.0/front-end/recover.php:320
4785
- msgid "The entered passwords don't match!"
4786
- msgstr "لا تتطابق كلمات المرور المدخلة!"
4787
-
4788
- #: profile-builder-2.0/front-end/recover.php:375
4789
- msgid "ERROR:"
4790
- msgstr "خطأ:"
4791
-
4792
- #: profile-builder-2.0/front-end/recover.php:375
4793
- msgid "Invalid key!"
4794
- msgstr "مفتاح غير صالح!"
4795
-
4796
- #: profile-builder-2.0/front-end/register.php:56
4797
- msgid "Invalid activation key!"
4798
- msgstr "مفتاح التنشيط غير صالح!"
4799
-
4800
- #: profile-builder-2.0/front-end/register.php:60
4801
- msgid "This username is now active!"
4802
- msgstr "اسم المستخدم مفعل الآن!"
4803
-
4804
- #: profile-builder-2.0/front-end/register.php:74
4805
- msgid "This username is already activated!"
4806
- msgstr "تم تفعيل هذا المستخدم مسبقاً!"
4807
-
4808
- #: profile-builder-2.0/front-end/register.php:124
4809
- msgid "Your email was successfully confirmed."
4810
- msgstr "تم تأكيد بريدك الإلكتروني بنجاح."
4811
-
4812
- #: profile-builder-2.0/front-end/register.php:153
4813
- msgid "There was an error while trying to activate the user."
4814
- msgstr "حدث خطأ أثناء محاولة تفعيل المستخدم."
4815
-
4816
- #: pb-add-on-woocommerce/index.php:393
4817
- #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4818
- msgid "The email you entered is not a valid email address."
4819
- msgstr "البريد الإلكتروني الذي أدخلته ليس عنوان بريد إلكتروني صالح."
4820
-
4821
- #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4822
- #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4823
- msgid "This email is already reserved to be used soon."
4824
- msgstr "هذه الرسالة الإلكترونية محفوظة بالفعل لاستخدامها قريبا."
4825
-
4826
- #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4827
- #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4828
- #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4829
- #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4830
- #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4831
- #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4832
- msgid "Please try a different one!"
4833
- msgstr "الرجاء محاولة واحدة مختلفة!"
4834
-
4835
- #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4836
- #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4837
- msgid "This email is already in use."
4838
- msgstr "هذا البريد استخدم من قبل."
4839
-
4840
- #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4841
- #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4842
- msgid "The passwords do not match"
4843
- msgstr "كلمات السر لا تتطابق"
4844
-
4845
- #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4846
- msgid "This username already exists."
4847
- msgstr "اسم المستخدم هذا موجود بالفعل."
4848
-
4849
- #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4850
- msgid "This username is already reserved to be used soon."
4851
- msgstr "اسم المستخدم هذا محفوظ مسبقا لاستخدامه قريبا."
4852
-
4853
- #: profile-builder-2.0/modules/user-listing/userlisting.php:276
4854
- msgid "Avatar"
4855
- msgstr "الصورة الرمزية"
4856
-
4857
- #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4858
- #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4859
- #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4860
- #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4861
- #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4862
- #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4863
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4864
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4865
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4866
- #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4867
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52
4868
- #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4869
- #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4870
- #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4871
- #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4872
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4873
- #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4874
- msgid "required"
4875
- msgstr "مطلوب"
4876
-
4877
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48
4878
- msgid "To use reCAPTCHA you must get an API key from"
4879
- msgstr "لاستخدام ريكابتشا يجب أن تحصل على مفتاح عام لواجهة برمجة التطبيقات من"
4880
-
4881
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
4882
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4883
- msgstr "لأسباب أمنية، يجب تمرير عنوان بروتوكول الإنترنت عن بعد ل ريكابتشا!"
4884
-
4885
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
4886
- msgid "To use reCAPTCHA you must get an API public key from:"
4887
- msgstr "لاستخدام ريكابتشا يجب أن تحصل على مفتاح عام لواجهة برمجة التطبيقات من:"
4888
-
4889
- #: profile-builder-2.0/modules/modules.php:11
4890
- #: profile-builder-2.0/modules/modules.php:58
4891
- msgid "Modules"
4892
- msgstr "وحدات"
4893
-
4894
- #: profile-builder-2.0/modules/modules.php:59
4895
- msgid "Here you can activate / deactivate available modules for Profile Builder."
4896
- msgstr "هنا يمكنك تفعيل / إلغاء تفعيل الوحدات النمطية المتاحة ل Profile Builder."
4897
-
4898
- #: profile-builder-2.0/modules/modules.php:69
4899
- msgid "Name/Description"
4900
- msgstr "اسم / الوصف"
4901
-
4902
- #: profile-builder-2.0/modules/modules.php:70
4903
- msgid "Status"
4904
- msgstr "الحالة"
4905
-
4906
- #: profile-builder-2.0/modules/modules.php:77
4907
- #: profile-builder-2.0/modules/modules.php:84
4908
- #: profile-builder-2.0/modules/modules.php:91
4909
- #: profile-builder-2.0/modules/modules.php:98
4910
- #: profile-builder-2.0/modules/modules.php:105
4911
- #: profile-builder-2.0/modules/modules.php:112
4912
- #: profile-builder-2.0/modules/modules.php:119
4913
- msgid "Active"
4914
- msgstr "مفعّل"
4915
-
4916
- #: profile-builder-2.0/modules/modules.php:78
4917
- #: profile-builder-2.0/modules/modules.php:85
4918
- #: profile-builder-2.0/modules/modules.php:92
4919
- #: profile-builder-2.0/modules/modules.php:99
4920
- #: profile-builder-2.0/modules/modules.php:106
4921
- #: profile-builder-2.0/modules/modules.php:113
4922
- #: profile-builder-2.0/modules/modules.php:120
4923
- msgid "Inactive"
4924
- msgstr "غير مفعّل"
4925
-
4926
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4927
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4928
- #: profile-builder-2.0/modules/modules.php:96
4929
- msgid "Admin Email Customizer"
4930
- msgstr "مخصص البريد الإلكتروني للمشرف"
4931
-
4932
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4933
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4934
- #: profile-builder-2.0/modules/modules.php:103
4935
- msgid "User Email Customizer"
4936
- msgstr "مخصص البريد الإلكتروني"
4937
-
4938
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
4939
- #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253
4940
- msgid "Save"
4941
- msgstr "حفظ"
4942
-
4943
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4944
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4945
- msgid "Redirect"
4946
- msgstr "إعادة توجيه"
4947
-
4948
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4949
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4950
- msgid "URL"
4951
- msgstr "URL"
4952
-
4953
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4954
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4955
- msgstr "يتم نسخ هذه الإعدادات أيضا في إعدادات \"مخصص البريد الإلكتروني للمستخدم\" عند الحفظ."
4956
-
4957
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4958
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4959
- msgid "From (name)"
4960
- msgstr "من (الاسم)"
4961
-
4962
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4963
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4964
- msgid "From (reply-to email)"
4965
- msgstr "من (الرد إلى البريد الإلكتروني)"
4966
-
4967
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4968
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4969
- msgid "Common Settings"
4970
- msgstr "الإعدادات العامة"
4971
-
4972
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4973
- msgid ""
4974
- "\n"
4975
- "<p>New subscriber on {{site_name}}.</p>\n"
4976
- "<p>Username:{{username}}</p>\n"
4977
- "<p>E-mail:{{user_email}}</p>\n"
4978
- msgstr ""
4979
- "\n"
4980
- "<p> مشترك جديد في {{site_name}}. </ p>\n"
4981
- "<p> اسم المستخدم: {{username}} </ P>\n"
4982
- "<p> البريد الالكتروني: {{user_email}} </ P>\n"
4983
-
4984
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4985
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4986
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4987
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4988
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4989
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4990
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4991
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4992
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4993
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4994
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4995
- msgid "Email Subject"
4996
- msgstr "موضوع البريد الإلكتروني"
4997
-
4998
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
4999
- msgid "Default Registration & Registration with Email Confirmation"
5000
- msgstr "التسجيل الافتراضي والتسجيل مع تأكيد البريد الإلكتروني"
5001
-
5002
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
5003
- msgid ""
5004
- "\n"
5005
- "<p>New subscriber on {{site_name}}.</p>\n"
5006
- "<p>Username:{{username}}</p>\n"
5007
- "<p>E-mail:{{user_email}}</p>\n"
5008
- "<p>The Admin Approval feature was activated at the time of registration,\n"
5009
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
5010
- msgstr ""
5011
- "\n"
5012
- "<p> مشترك جديد في {{site_name}}. </ p>\n"
5013
- "<p> اسم المستخدم: {{username}} </ P>\n"
5014
- "<p> البريد الالكتروني: {{user_email}} </ P>\n"
5015
- "<p> تم تنشيط ميزة الموافقة على المشرف في وقت التسجيل،\n"
5016
- "لذا يرجى تذكر أنك تحتاج إلى الموافقة على هذا المستخدم قبل أن يتمكن من تسجيل الدخول! </ p>\n"
5017
-
5018
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5019
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
5020
- msgid "Registration with Admin Approval"
5021
- msgstr "التسجيل باستخدام موافقة المشرف"
5022
-
5023
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
5024
- msgid "Available Tags"
5025
- msgstr "الوسوم المتاحة"
5026
-
5027
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
5028
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
5029
- msgid "User Meta"
5030
- msgstr "ميتا المستخدم"
5031
-
5032
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
5033
- msgid "Site Url"
5034
- msgstr "رابط الموقع"
5035
-
5036
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
5037
- msgid "Site Name"
5038
- msgstr "اسم الموقع"
5039
-
5040
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
5041
- #: profile-builder-2.0/modules/user-listing/userlisting.php:158
5042
- msgid "User Id"
5043
- msgstr "معرف المستخدم"
5044
-
5045
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
5046
- msgid "Reply To"
5047
- msgstr "الرد على"
5048
-
5049
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40
5050
- msgid "Activation Key"
5051
- msgstr "مفتاح التفعيل"
5052
-
5053
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41
5054
- msgid "Activation Url"
5055
- msgstr "Url التفعيل"
5056
-
5057
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
5058
- msgid "Activation Link"
5059
- msgstr "رابط التفعيل"
5060
-
5061
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5062
- msgid ""
5063
- "\n"
5064
- "<h3>Welcome to {{site_name}}!</h3>\n"
5065
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5066
- msgstr ""
5067
- "\n"
5068
- "<h3> مرحبا بك في {{site_name}}! </ h3>\n"
5069
- "<p> اسم المستخدم هو: {{username}} وكلمة المرور: {{password}} </ p>\n"
5070
-
5071
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5072
- msgid "Default Registration"
5073
- msgstr "التسجيل الافتراضي"
5074
-
5075
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5076
- msgid ""
5077
- "\n"
5078
- "<p>To activate your user, please click the following link:<br/>\n"
5079
- "{{{activation_link}}}</p>\n"
5080
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
5081
- msgstr ""
5082
- "\n"
5083
- "<p> لتنشيط المستخدم، يرجى النقر على الرابط التالي: <br/>\n"
5084
- "{{{activation_link}}} </ P>\n"
5085
- "<p> بعد التنشيط، ستتلقى رسالة بريد إلكتروني أخرى تتضمن بيانات اعتمادك. </ p>\n"
5086
-
5087
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5088
- msgid "[{{site_name}}] Activate {{username}}"
5089
- msgstr "[{{site_name}}] تفعيل {{username}}"
5090
-
5091
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5092
- msgid "Registration with Email Confirmation"
5093
- msgstr "التسجيل مع تأكيد البريد الإلكتروني"
5094
-
5095
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5096
- msgid ""
5097
- "\n"
5098
- "<h3>Welcome to {{site_name}}!</h3>\n"
5099
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5100
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
5101
- msgstr ""
5102
- "\n"
5103
- "<h3> مرحبا بك في {{site_name}}! </ h3>\n"
5104
- "<p> اسم المستخدم هو: {{username}} وكلمة المرور: {{password}} </ p>\n"
5105
- "<p> قبل أن تتمكن من الدخول إلى حسابك، يجب على المشرف الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني. </ p>\n"
5106
-
5107
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5108
- msgid "A new account has been created for you on {{site_name}}"
5109
- msgstr "تم إنشاء حساب جديد لك على {{site_name}}"
5110
-
5111
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5112
- msgid ""
5113
- "\n"
5114
- "<h3>Good News!</h3>\n"
5115
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5116
- msgstr ""
5117
- "\n"
5118
- "<h3> أخبار جيدة! </ h3>\n"
5119
- "<p> وافق المشرف على حسابك: {{username}} على {{site_name}}. </ p>\n"
5120
-
5121
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5122
- msgid "Your account on {{site_name}} has been approved!"
5123
- msgstr "تمت الموافقة على حسابك في {{site_name}}!"
5124
-
5125
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5126
- msgid "User Approval Notification"
5127
- msgstr "إشعار الموافقة على المستخدم"
5128
-
5129
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5130
- msgid ""
5131
- "\n"
5132
- "<h3>Hello,</h3>\n"
5133
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5134
- msgstr ""
5135
- "\n"
5136
- "<H3> مرحبا، </ H3>\n"
5137
- "<p> للأسف، لم قام المشرف بعدم الموافقة على حسابك: {{username}} على {{site_name}}. </ p>\n"
5138
-
5139
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5140
- msgid "Your account on {{site_name}} has been unapproved!"
5141
- msgstr "لم تتم الموافقة على حسابك في {{site_name}}!"
5142
-
5143
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5144
- msgid "Unapproved User Notification"
5145
- msgstr "إشعار مستخدم غير موافق عليه"
5146
-
5147
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5148
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5149
- msgid "Edit-profile Form"
5150
- msgstr "استمارة تعديل الملف الشخصي"
5151
-
5152
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5153
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5154
- #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5155
- msgid "Add New"
5156
- msgstr "إضافة جديد"
5157
-
5158
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5159
- msgid "Add new Edit-profile Form"
5160
- msgstr "إضافة استمارة جديدة لتعديل الملف الشخصي"
5161
-
5162
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5163
- msgid "Edit the Edit-profile Forms"
5164
- msgstr "تعديل استمارات تعديل الملف الشخصي"
5165
-
5166
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5167
- msgid "New Edit-profile Form"
5168
- msgstr "استمارة تعديل الملف الشخصي جديدة"
5169
-
5170
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5171
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5172
- msgid "Edit-profile Forms"
5173
- msgstr "استمارات تعديل الملف الشخصي"
5174
-
5175
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5176
- msgid "View the Edit-profile Form"
5177
- msgstr "عرض نموذج تعديل الملف الشخصي"
5178
-
5179
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5180
- msgid "Search the Edit-profile Forms"
5181
- msgstr "ابحث في نماذج تعديل الملف الشخصي"
5182
-
5183
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5184
- msgid "No Edit-profile Form found"
5185
- msgstr "لم يتم العثور على نموذج تعديل الملف الشخصي"
5186
-
5187
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5188
- msgid "No Edit-profile Forms found in trash"
5189
- msgstr "لم يتم العثور على نماذج تعديل الملف الشخصي في المهملات"
5190
-
5191
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5192
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5193
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2115
5194
- msgid "Shortcode"
5195
- msgstr "رمز قصير"
5196
-
5197
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5198
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5199
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5200
- msgid "(no title)"
5201
- msgstr "(لايوجد عنوان)"
5202
-
5203
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5204
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5205
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2156
5206
- msgid "The shortcode will be available after you publish this form."
5207
- msgstr "سيكون الرمز القصير متاحا بعد نشر هذا النموذج."
5208
-
5209
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5210
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5211
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5212
- msgid "Use this shortcode on the page you want the form to be displayed:"
5213
- msgstr "استخدم هذا الرمز القصير في الصفحة التي تريد عرض النموذج عليها:"
5214
-
5215
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5216
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5217
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5218
- msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5219
- msgstr "<span style=\"color:red;\">ملاحظة:</span> يؤدي تغيير عنوان النموذج أيضا إلى تغيير الرمز القصير!!"
5220
-
5221
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5222
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5223
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
5224
- msgid "Form Shortcode"
5225
- msgstr "شكل رمز قصير"
5226
-
5227
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5228
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5229
- msgid "Whether to redirect the user to a specific page or not"
5230
- msgstr "سواء لإعادة توجيه المستخدم إلى صفحة معينة أم لا"
5231
-
5232
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5233
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5234
- msgid "Display Messages"
5235
- msgstr "عرض الرسائل"
5236
-
5237
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5238
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5239
- msgid "Allowed time to display any success messages (in seconds)"
5240
- msgstr "الوقت المسموح به لعرض أية رسائل نجاح (بالثواني)"
5241
-
5242
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5243
- msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
5244
- msgstr "حدد عنوان URL للصفحة التي سيتم إعادة توجيه المستخدمين إليها بعد تحديث ملفهم الشخصي باستخدام هذا النموذج <br/> استخدم التنسيق التالي: http://www.mysite.com"
5245
-
5246
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5247
- msgid "After Profile Update..."
5248
- msgstr "بعد تعديل الملف الشخصي..."
5249
-
5250
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5251
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5252
- msgid "Add New Field to the List"
5253
- msgstr "Add New Field to the List"
5254
-
5255
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5256
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5257
- msgid "Choose one of the supported fields you manage <a href=\""
5258
- msgstr "اختر أحد الحقول المدعومة التي تديرها <a href= \""
5259
-
5260
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5261
- msgid "<pre>Title (Type)</pre>"
5262
- msgstr "<pre>العنوان (نوع)</pre>"
5263
-
5264
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5265
- msgid "You need to specify the title of the form before creating it"
5266
- msgstr "يجب تحديد عنوان النموذج قبل إنشائه"
5267
-
5268
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5269
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5270
- msgid "Registration Form"
5271
- msgstr "استمارة تسجيل"
5272
-
5273
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5274
- msgid "Add new Registration Form"
5275
- msgstr "إضافة استمارة تسجيل جديده"
5276
-
5277
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5278
- msgid "Edit the Registration Forms"
5279
- msgstr "تعديل نماذج التسجيل"
5280
-
5281
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5282
- msgid "New Registration Form"
5283
- msgstr "استمارة تسجيل جديده"
5284
-
5285
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5286
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5287
- msgid "Registration Forms"
5288
- msgstr "نماذج التسجيل"
5289
-
5290
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5291
- msgid "View the Registration Form"
5292
- msgstr "عرض نموذج التسجيل"
5293
-
5294
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5295
- msgid "Search the Registration Forms"
5296
- msgstr "ابحث في نماذج التسجيل"
5297
-
5298
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5299
- msgid "No Registration Form found"
5300
- msgstr "لم يتم العثور على نموذج تسجيل"
5301
-
5302
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5303
- msgid "No Registration Forms found in trash"
5304
- msgstr "لم يتم العثور على نماذج تسجيل في المهملات"
5305
-
5306
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5307
- msgid "Default Role"
5308
- msgstr "الدور الافتراضي"
5309
-
5310
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5311
- msgid "Set Role"
5312
- msgstr "تعيين الدور"
5313
-
5314
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5315
- msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
5316
- msgstr "اختر الدور الذي سيحصل عليه المستخدم بعد تسجيله <br/> إذا لم يتم تحديده، فسيتم تعيين الإعدادات الافتراضية على الدور المحدد في إعدادات ووردبريس"
5317
-
5318
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5319
- msgid "Automatically Log In"
5320
- msgstr "تسجيل الدخول تلقائيا"
5321
-
5322
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5323
- msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
5324
- msgstr "ما إذا كان سيتم تسجيل الدخول تلقائيا إلى المستخدم المسجل حديثا أم لا <br/> يعمل فقط على مواقع فردية بدون تفعيل ميزة \"موافقة المشرف\" و \"تأكيد البريد الإلكتروني\" <br/> تحذير: يؤدي التخزين المؤقت لنموذج التسجيل إلى عدم تسجيل الدخول التلقائي"
5325
-
5326
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5327
- msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
5328
- msgstr "حدد عنوان Url للصفحة التي سيتم إعادة توجيه المستخدمين إليها بمجرد تسجيلهم باستخدام هذا النموذج <br/> استخدم التنسيق التالي: http://www.mysite.com"
5329
-
5330
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5331
- msgid "After Registration..."
5332
- msgstr "بعد التسجيل..."
5333
-
5334
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1038
5335
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1485
5336
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1953
5337
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2426
5338
- msgid "Search Users by All Fields"
5339
- msgstr "البحث عن المستخدمين من قبل جميع الحقول"
5340
-
5341
- #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5342
- msgid "Add new User Listing"
5343
- msgstr "إضافة قائمة مستخدم جديدة"
5344
-
5345
- #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5346
- msgid "Edit the User Listing"
5347
- msgstr "تعديل قائمة المستخدم"
5348
-
5349
- #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5350
- msgid "New User Listing"
5351
- msgstr "قائمة مستخدم جديدة"
5352
-
5353
- #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5354
- msgid "View the User Listing"
5355
- msgstr "عرض قائمة المستخدم"
5356
-
5357
- #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5358
- msgid "Search the User Listing"
5359
- msgstr "ابحث في قائمة المستخدم"
5360
-
5361
- #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5362
- msgid "No User Listing found"
5363
- msgstr "لم يتم العثور على قائمة مستخدمين"
5364
-
5365
- #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5366
- msgid "No User Listing found in trash"
5367
- msgstr "لم يتم العثور على قائمة مستخدمين في المهملات"
5368
-
5369
- #: profile-builder-2.0/modules/user-listing/userlisting.php:105
5370
- msgid "Display name as"
5371
- msgstr "إظهار الاسم ك"
5372
-
5373
- #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5374
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2223
5375
- msgid "Registration Date"
5376
- msgstr "تاريخ التسجيل"
5377
-
5378
- #: profile-builder-2.0/modules/user-listing/userlisting.php:151
5379
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2228
5380
- msgid "Number of Posts"
5381
- msgstr "عدد المقالات"
5382
-
5383
- #: profile-builder-2.0/modules/user-listing/userlisting.php:155
5384
- msgid "More Info"
5385
- msgstr "معلومات أكثر"
5386
-
5387
- #: profile-builder-2.0/modules/user-listing/userlisting.php:156
5388
- msgid "More Info Url"
5389
- msgstr "مزيد من المعلومات Url"
5390
-
5391
- #: profile-builder-2.0/modules/user-listing/userlisting.php:157
5392
- msgid "Avatar or Gravatar"
5393
- msgstr "صورة رمزية أو Gravatar"
5394
-
5395
- #: profile-builder-2.0/modules/user-listing/userlisting.php:196
5396
- #: profile-builder-2.0/modules/user-listing/userlisting.php:227
5397
- msgid "Extra Functions"
5398
- msgstr "وظائف إضافية"
5399
-
5400
- #: profile-builder-2.0/modules/user-listing/userlisting.php:199
5401
- msgid "Pagination"
5402
- msgstr "ترقيم الصفحات"
5403
-
5404
- #: profile-builder-2.0/modules/user-listing/userlisting.php:200
5405
- msgid "Search all Fields"
5406
- msgstr "بحث كل الحقول"
5407
-
5408
- #: profile-builder-2.0/modules/user-listing/userlisting.php:229
5409
- msgid "Go Back Link"
5410
- msgstr "رابط الرجوع للخلف"
5411
-
5412
- #: profile-builder-2.0/modules/user-listing/userlisting.php:247
5413
- msgid "All-userlisting Template"
5414
- msgstr "قالب قائمة جميع المستخدمين"
5415
-
5416
- #: profile-builder-2.0/modules/user-listing/userlisting.php:250
5417
- msgid "Single-userlisting Template"
5418
- msgstr "نموذج قائمة مستخدم واحد"
5419
-
5420
- #: profile-builder-2.0/modules/user-listing/userlisting.php:733
5421
- msgid "First/Lastname"
5422
- msgstr "الاسم الأول/الأخير"
5423
-
5424
- #: profile-builder-2.0/modules/user-listing/userlisting.php:281
5425
- #: profile-builder-2.0/modules/user-listing/userlisting.php:739
5426
- msgid "Sign-up Date"
5427
- msgstr "تاريخ التسجيل"
5428
-
5429
- #: profile-builder-2.0/modules/user-listing/userlisting.php:748
5430
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2226
5431
- msgid "Display Name"
5432
- msgstr "اسم العرض"
5433
-
5434
- #: profile-builder-2.0/modules/user-listing/userlisting.php:280
5435
- #: profile-builder-2.0/modules/user-listing/userlisting.php:757
5436
- msgid "Posts"
5437
- msgstr "المقالات"
5438
-
5439
- #: profile-builder-2.0/modules/user-listing/userlisting.php:760
5440
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2233
5441
- msgid "Aim"
5442
- msgstr "Aim"
5443
-
5444
- #: profile-builder-2.0/modules/user-listing/userlisting.php:763
5445
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2234
5446
- msgid "Yim"
5447
- msgstr "Yim"
5448
-
5449
- #: profile-builder-2.0/modules/user-listing/userlisting.php:766
5450
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2235
5451
- msgid "Jabber"
5452
- msgstr "Jabber"
5453
-
5454
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5455
- msgid "Click here to see more information about this user"
5456
- msgstr "انقر هنا للاطلاع على مزيد من المعلومات حول هذا المستخدم."
5457
-
5458
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5459
- msgid "More..."
5460
- msgstr "المزيد..."
5461
-
5462
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1293
5463
- msgid "Click here to see more information about this user."
5464
- msgstr "انقر هنا للاطلاع على مزيد من المعلومات حول هذا المستخدم."
5465
-
5466
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5467
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1442
5468
- msgid "Click here to go back"
5469
- msgstr "اضغط هنا للرجوع للخلف"
5470
-
5471
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5472
- msgid "Back"
5473
- msgstr "رجوع"
5474
-
5475
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1472
5476
- msgid "&laquo;&laquo; First"
5477
- msgstr "&laquo;&laquo; الأول"
5478
-
5479
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1473
5480
- msgid "&laquo; Prev"
5481
- msgstr "&laquo; السابق"
5482
-
5483
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1474
5484
- msgid "Next &raquo; "
5485
- msgstr "التالي &raquo; "
5486
-
5487
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1475
5488
- msgid "Last &raquo;&raquo;"
5489
- msgstr "آخر &raquo;&raquo;"
5490
-
5491
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1504
5492
- msgid "You don't have any pagination settings on this userlisting!"
5493
- msgstr "ليس لديك أي إعدادات ترقيم صفحات في قائمة المستخدمين!"
5494
-
5495
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1970
5496
- msgid "Search"
5497
- msgstr "بحث"
5498
-
5499
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1971
5500
- msgid "Clear Results"
5501
- msgstr "حذف النتائج"
5502
-
5503
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2165
5504
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
5505
- msgid "Extra shortcode parameters"
5506
- msgstr "معلمات اختصارات إضافية"
5507
-
5508
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
5509
- msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5510
- msgstr "يعرض المستخدمين الذين لديهم قيمة وصفية معينة ضمن حقل ميتا (إضافي) معين"
5511
-
5512
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
5513
- msgid "Example:"
5514
- msgstr "مثال:"
5515
-
5516
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
5517
- msgid "Remember though, that the field-value combination must exist in the database."
5518
- msgstr "تذكر, أن مزيج قيمة الحقل يجب أن تكون موجودة في قاعدة البيانات."
5519
-
5520
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
5521
- msgid "Random (very slow on large databases > 10K user)"
5522
- msgstr "عشوائي (بطيء جدا على قواعد البيانات الكبيرة> 10 آلاف مستخدم)"
5523
-
5524
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5525
- msgid "Roles to Display"
5526
- msgstr "الأدوار التي يتم عرضها"
5527
-
5528
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5529
- msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5530
- msgstr "قصر قائمة المستخدمين على هذه الأدوار المحددة فقط <br/> إذا لم يتم تحديدها، فسيكون افتراضيا لجميع الأدوار الحالية"
5531
-
5532
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5533
- msgid "Number of Users/Page"
5534
- msgstr "عدد المستخدمين / الصفحة"
5535
-
5536
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5537
- msgid "Default Sorting Criteria"
5538
- msgstr "معايير الفرز الإفتراضية"
5539
-
5540
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5541
- msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5542
- msgstr "تعيين معايير الفرز الافتراضية <br/> يمكن تغيير هذا مؤقتا لكل جلسة جديدة"
5543
-
5544
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5545
- msgid "Default Sorting Order"
5546
- msgstr "ترتيب الفرز الإفتراضي"
5547
-
5548
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5549
- msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5550
- msgstr "تعيين ترتيب الفرز الافتراضي <br/> يمكن تغيير هذا مؤقتا لكل جلسة جديدة"
5551
-
5552
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5553
- msgid "Avatar Size (All-userlisting)"
5554
- msgstr "حجم الصورة الرمزية (كل المستخدمين)"
5555
-
5556
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5557
- msgid "Set the avatar size on the all-userlisting only"
5558
- msgstr "تعيين حجم الصورة الرمزية على جميع-المستخدمين فقط"
5559
-
5560
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5561
- msgid "Avatar Size (Single-userlisting)"
5562
- msgstr "حجم الصورة الرمزية (قائمة مستخدم واحد)"
5563
-
5564
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5565
- msgid "Set the avatar size on the single-userlisting only"
5566
- msgstr "اضبط حجم الصورة الرمزية على قائمة المستخدمين الفردية فقط"
5567
-
5568
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5569
- msgid "Visible only to logged in users?"
5570
- msgstr "مرئية فقط للمستخدمين الذين سجلوا دخولهم؟"
5571
-
5572
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5573
- msgid "The userlisting will only be visible only to the logged in users"
5574
- msgstr "لن تكون قائمة المستخدمين مرئية إلا للمستخدمين المسجلين دخولهم"
5575
-
5576
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5577
- msgid "Visible to following Roles"
5578
- msgstr "مرئية للأدوار التالية"
5579
-
5580
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5581
- msgid "The userlisting will only be visible to the following roles"
5582
- msgstr "لن تكون قائمة المستخدمين مرئية إلا للأدوار التالية"
5583
-
5584
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2275
5585
- msgid "Userlisting Settings"
5586
- msgstr "إعدادات قائمة المستخدم"
5587
-
5588
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5589
- msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5590
- msgstr "تحتاج إلى تفعيل ميزة عرض المستخدمين من داخل \"وحدات\" علامة التبويب!"
5591
-
5592
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5593
- msgid "You can find it in the Profile Builder menu."
5594
- msgstr "بإمكانك إيجادها في قائمة Profile Builder"
5595
-
5596
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
5597
- msgid "No results found!"
5598
  msgstr "لاتوجد نتائج!"
1
+ # Translation of Profile Builder in Arabic
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-08-01 13:42:23+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Profile Builder\n"
12
+
13
+ #: profile-builder-2.0/admin/general-settings.php:154
14
+ msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
15
+ msgstr ""
16
+
17
+ #: profile-builder-2.0/admin/general-settings.php:146
18
+ msgid "\"Roles Editor\" Activated:"
19
+ msgstr ""
20
+
21
+ #: profile-builder-2.0/features/roles-editor/roles-editor.php:300
22
+ msgid "M j, Y @ G:i"
23
+ msgstr ""
24
+
25
+ #: profile-builder-2.0/front-end/recover.php:117
26
+ msgid "Please enter your email address."
27
+ msgstr ""
28
+
29
+ #: profile-builder-2.0/admin/manage-fields.php:127
30
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
31
+ msgstr "حدد تنسيق التاريخ عند استخدام منسق التاريخ <br/>الخيارات الصحيحة: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If إذا لم يتم تحديد mm/dd/yy"
32
+
33
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
34
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
35
+ msgstr "عمليات إعادة التوجيه الفردية المعرفة في الرموز القصيرة; <strong><em>redirect_priority=\"top\"</em></strong> يمكن إضافة المعاملات في أي رمز قصير، فستكون أولوية إعادة توجيه الرمز القصير هذه على جميع عمليات إعادة التوجيه الأخرى."
36
+
37
+ #: profile-builder-2.0/admin/manage-fields.php:1217
38
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
39
+ msgstr "إذا كنت مهتما بعرض حقول مختلفة في نماذج تسجيل الملف الشخصي وتعديلها، يرجى استخدام وحدات النماذج المتعددة للتسجيل والتعديل الشخصي للملفات الشخصية."
40
+
41
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
42
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
43
+ msgstr "إعدادات متعددة لإعادة التوجيه لنموذج تسجيل وتحرير الملف الشخصي"
44
+
45
+ #: profile-builder-2.0/admin/register-version.php:251
46
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
47
+ msgstr "<p>إن ترخيص <strong>Profile Builder</strong> على وشك الانتهاء في %5$s. <br/>الرجاء %1$s تجديد الترخيص %2$s لمتابعة تلقي إمكانية الوصول |إلى تحميل المنتجات والتحديثات التلقائية والدعم. %3$s جدد الآن واحصل على خصم 40&#37; %4$s %6$s تجاهل %7$s</p>"
48
+
49
+ #: profile-builder-2.0/admin/register-version.php:246
50
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
51
+ msgstr "<p>إن ترخيص <strong>Profile Builder</strong> قد انتهى. <br/>الرجاء %1$s تجديد الترخيص %2$s لمتابعة تلقي إمكانية الوصول |إلى تحميل المنتجات والتحديثات التلقائية والدعم. %3$s جدد الآن واحصل على خصم 40&#37; %4$s %6$s تجاهل %7$s</p>"
52
+
53
+ #: profile-builder-2.0/front-end/recover.php:159
54
+ msgid "You are already logged in. You can change your password on the edit profile form."
55
+ msgstr "لقد قمت بالفعل بتسجيل الدخول. يمكنك تغيير كلمة المرور الخاصة بك في نموذج تحرير الملف الشخصي."
56
+
57
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
58
+ msgid "Your site url will look like this:<br>"
59
+ msgstr "سيبدو عنوان موقعك على هذا النحو: <br>"
60
+
61
+ #: profile-builder-2.0/features/functions.php:909
62
+ msgid "<br><br>You can visit your site at "
63
+ msgstr "<br><br>يمكنك زيارة موقعك على"
64
+
65
+ #: profile-builder-2.0/features/functions.php:896
66
+ msgid "<br><br>Also, you will be able to visit your site at "
67
+ msgstr "<br><br>كما ستتمكن من زيارة موقعك على"
68
+
69
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
70
+ msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
71
+ msgstr "الخصوصية: أرغب في ظهور موقعي في محركات البحث، وفي القوائم العامة حول هذه الشبكة."
72
+
73
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
74
+ msgid "Site Title"
75
+ msgstr "عنوان الموقع"
76
+
77
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
78
+ msgid "Site URL slug"
79
+ msgstr "عنوان الموقع"
80
+
81
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
82
+ msgid "Yes, I'd like to create a new site"
83
+ msgstr "نعم، أريد إنشاء موقع جديد"
84
+
85
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
86
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:118
87
+ msgid "Blog URL"
88
+ msgstr "عنوان المدونة"
89
+
90
+ #: profile-builder-2.0/admin/admin-functions.php:44
91
+ msgid "Blog Details - only appears on the Registration page!"
92
+ msgstr "تفاصيل المدونة - يظهر فقط على صفحة التسجيل!"
93
+
94
+ #: profile-builder-2.0/admin/manage-fields.php:222
95
+ msgid "Blog Details"
96
+ msgstr "تفاصيل المدونة"
97
+
98
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:239
99
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
100
+ msgstr "السماح للمستخدمين بالحصول على <strong>حسابات مدفوعة باستخدام أداةProfile Builder</strong>. %1$sمعرفة المزيد >%2$s %3$sتجاهل%4$s"
101
+
102
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
103
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
104
+ msgstr "مرحبا بك في %1$s! <br/> <br/> <br/> اسم المستخدم الخاص بك هو: %2$s"
105
+
106
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
107
+ msgid "View Map"
108
+ msgstr "معاينة الخريطة"
109
+
110
+ #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
111
+ #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
112
+ #: pb-add-on-woocommerce/index.php:493
113
+ msgid "Address line 2"
114
+ msgstr ""
115
+
116
+ #: pb-add-on-woocommerce/index.php:256
117
+ msgid "Billing Fields"
118
+ msgstr ""
119
+
120
+ #: pb-add-on-woocommerce/index.php:256
121
+ msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
122
+ msgstr ""
123
+
124
+ #: pb-add-on-woocommerce/index.php:257
125
+ msgid "Billing Fields Order"
126
+ msgstr ""
127
+
128
+ #: pb-add-on-woocommerce/index.php:257
129
+ msgid "Save the billing fields order from the billing fields checkboxes"
130
+ msgstr ""
131
+
132
+ #: pb-add-on-woocommerce/index.php:258
133
+ msgid "Billing Fields Name"
134
+ msgstr ""
135
+
136
+ #: pb-add-on-woocommerce/index.php:258
137
+ msgid "Save the billing fields names"
138
+ msgstr ""
139
+
140
+ #: pb-add-on-woocommerce/index.php:275
141
+ msgid "Shipping Fields"
142
+ msgstr ""
143
+
144
+ #: pb-add-on-woocommerce/index.php:275
145
+ msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
146
+ msgstr ""
147
+
148
+ #: pb-add-on-woocommerce/index.php:276
149
+ msgid "Shipping Fields Order"
150
+ msgstr ""
151
+
152
+ #: pb-add-on-woocommerce/index.php:276
153
+ msgid "Save the shipping fields order from the billing fields checkboxes"
154
+ msgstr ""
155
+
156
+ #: pb-add-on-woocommerce/index.php:277
157
+ msgid "Shipping Fields Name"
158
+ msgstr ""
159
+
160
+ #: pb-add-on-woocommerce/index.php:277
161
+ msgid "Save the shipping fields names"
162
+ msgstr ""
163
+
164
+ #: pb-add-on-woocommerce/index.php:305
165
+ msgid "Field Name"
166
+ msgstr ""
167
+
168
+ #: pb-add-on-woocommerce/index.php:369
169
+ msgid "Click to edit "
170
+ msgstr ""
171
+
172
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
173
+ msgid "is not a valid phone number."
174
+ msgstr ""
175
+
176
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
177
+ msgid "is not a number."
178
+ msgstr ""
179
+
180
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
181
+ msgid "must be a multiplier of "
182
+ msgstr ""
183
+
184
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
185
+ msgid "must be a greater than or equal to "
186
+ msgstr ""
187
+
188
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
189
+ msgid "must be less than or equal to "
190
+ msgstr ""
191
+
192
+ #: profile-builder-2.0/admin/add-ons.php:103
193
+ msgid "Available in Hobbyist and Pro Versions"
194
+ msgstr "متوفر في اصدارات Hobbyist و Pro"
195
+
196
+ #: profile-builder-2.0/admin/add-ons.php:105
197
+ msgid "Available in All Versions"
198
+ msgstr "متوفر في جميع الإصدارات"
199
+
200
+ #: profile-builder-2.0/admin/add-ons.php:148
201
+ msgid "Learn More"
202
+ msgstr "تعلم المزيد"
203
+
204
+ #: profile-builder-2.0/admin/basic-info.php:99
205
+ msgid "Timepicker"
206
+ msgstr "منتقي الوقت"
207
+
208
+ #: profile-builder-2.0/admin/basic-info.php:100
209
+ msgid "Colorpicker"
210
+ msgstr "منتقي اللون"
211
+
212
+ #: profile-builder-2.0/admin/basic-info.php:103
213
+ msgid "Currency Select"
214
+ msgstr "تحديد العملة"
215
+
216
+ #: profile-builder-2.0/admin/basic-info.php:109
217
+ msgid "Number"
218
+ msgstr "رقم"
219
+
220
+ #: profile-builder-2.0/admin/basic-info.php:114
221
+ msgid "Validation"
222
+ msgstr "التحقق"
223
+
224
+ #: profile-builder-2.0/admin/basic-info.php:115
225
+ msgid "Map"
226
+ msgstr "خريطة"
227
+
228
+ #: profile-builder-2.0/admin/basic-info.php:116
229
+ msgid "HTML"
230
+ msgstr "HTML"
231
+
232
+ #: profile-builder-2.0/admin/basic-info.php:162
233
+ #: profile-builder-2.0/modules/modules.php:117
234
+ msgid "Repeater Fields"
235
+ msgstr "حقول التكرار"
236
+
237
+ #: profile-builder-2.0/admin/basic-info.php:163
238
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
239
+ msgstr "إعداد مجموعة متكررة من الحقول على نماذج التسجيل وتعديل الملف الشخصي. قم بتحديد عدد المجموعات المتكررة لكل دور مستخدم."
240
+
241
+ #: profile-builder-2.0/admin/general-settings.php:59
242
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
243
+ msgstr "يعمل مع نماذج الواجهة الأمامية فقط. يوصى بإعادة توجيه تسجيل الافتراضي ل WP إلى نموذج Profile Builder يستخدم وحدة \"إعادة توجيه مخصص\"."
244
+
245
+ #: profile-builder-2.0/admin/manage-fields.php:120
246
+ msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
247
+ msgstr "استخدم هذا مع وظائف ووردبريس لعرض القيمة في الصفحة التي تختارها <br/> الإكمال التلقائي ولكن في بعض الحالات قابل للتعديل (وفي هذه الحالة يجب أن تكون فريدة من نوعها) <br/> قد يستغرق تغيير هذا الأمر وقتا طويلا في حالة وجود عدد كبير من المستخدمين"
248
+
249
+ #: profile-builder-2.0/admin/manage-fields.php:143
250
+ msgid "Show Currency Symbol"
251
+ msgstr "إظهار رمز العملة"
252
+
253
+ #: profile-builder-2.0/admin/manage-fields.php:143
254
+ msgid "Whether the currency symbol should be displayed after the currency name in the select option."
255
+ msgstr "ما إذا كان يجب عرض رمز العملة بعد اسم العملة في الخيار المحدد."
256
+
257
+ #: profile-builder-2.0/admin/manage-fields.php:144
258
+ msgid "Show Post Type"
259
+ msgstr "عرض نوع المقال"
260
+
261
+ #: profile-builder-2.0/admin/manage-fields.php:144
262
+ msgid "Posts from what post type will be displayed in the select."
263
+ msgstr "سيتم عرض المقالات من نوع المقال في التحديد."
264
+
265
+ #: profile-builder-2.0/admin/manage-fields.php:145
266
+ msgid "Allowable Values"
267
+ msgstr "القيم المسموح بها"
268
+
269
+ #: profile-builder-2.0/admin/manage-fields.php:145
270
+ msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
271
+ msgstr "أدخل قائمة مفصولة بفواصل للقيم المحتملة. عند التسجيل إذا كانت القيمة المقدمة من قبل المستخدم لا تتطابق مع إحدى هذه القيم، لن يتم تسجيل المستخدم."
272
+
273
+ #: profile-builder-2.0/admin/manage-fields.php:146
274
+ msgid "Error Message"
275
+ msgstr "رسالة خطأ"
276
+
277
+ #: profile-builder-2.0/admin/manage-fields.php:146
278
+ msgid "Set a custom error message that will be displayed to the user."
279
+ msgstr "قم بتعيين رسالة خطأ مخصصة ليتم عرضها للمستخدم."
280
+
281
+ #: profile-builder-2.0/admin/manage-fields.php:147
282
+ msgid "Time Format"
283
+ msgstr "صيغة الوقت"
284
+
285
+ #: profile-builder-2.0/admin/manage-fields.php:147
286
+ msgid "Specify the time format."
287
+ msgstr "تحديد صيغة الوقت"
288
+
289
+ #: profile-builder-2.0/admin/manage-fields.php:148
290
+ msgid "Google Maps API Key"
291
+ msgstr "مفتاح API لخرائط Google"
292
+
293
+ #: profile-builder-2.0/admin/manage-fields.php:148
294
+ msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
295
+ msgstr "أدخل مفتاح واجهة برمجة تطبيقات خرائط Google (<a href=\"https://console.developers.google.com/flows/enableapi؟apiid=maps_backend\" target=\"_blank\"> احصل على مفتاح واجهة برمجة التطبيقات </a>). إذا تم إضافة أكثر من حقل خريطة إلى نموذج سيتم استخدام مفتاح API من الخريطة الأولى المعروضة."
296
+
297
+ #: profile-builder-2.0/admin/manage-fields.php:149
298
+ msgid "Default Latitude"
299
+ msgstr "خط العرض الافتراضي"
300
+
301
+ #: profile-builder-2.0/admin/manage-fields.php:149
302
+ msgid "The latitude at which the map should be displayed when no pins are attached."
303
+ msgstr "خط العرض الذي يجب أن يتم عرضه في الخريطة عند عدم ربط أي دبابيس."
304
+
305
+ #: profile-builder-2.0/admin/manage-fields.php:150
306
+ msgid "Default Longitude"
307
+ msgstr "الطول الافتراضي"
308
+
309
+ #: profile-builder-2.0/admin/manage-fields.php:150
310
+ msgid "The longitude at which the map should be displayed when no pins are attached."
311
+ msgstr "خط الطول الذي يجب أن يتم عرضه في الخريطة عند عدم ربط أي دبابيس."
312
+
313
+ #: profile-builder-2.0/admin/manage-fields.php:151
314
+ msgid "Default Zoom Level"
315
+ msgstr "مستوى التكبير الافتراضي"
316
+
317
+ #: profile-builder-2.0/admin/manage-fields.php:151
318
+ msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
319
+ msgstr "إضافة رقم من 0 إلى 19. كل ما زاد الرقم زاد التكبير."
320
+
321
+ #: profile-builder-2.0/admin/manage-fields.php:152
322
+ msgid "Map Height"
323
+ msgstr "ارتفاع الخريطة"
324
+
325
+ #: profile-builder-2.0/admin/manage-fields.php:152
326
+ msgid "The height of the map."
327
+ msgstr "ارتفاع الخريطة."
328
+
329
+ #: profile-builder-2.0/admin/manage-fields.php:154
330
+ msgid "HTML Content"
331
+ msgstr "محتوى HTML"
332
+
333
+ #: profile-builder-2.0/admin/manage-fields.php:154
334
+ msgid "Add your HTML (or text) content"
335
+ msgstr "أضف محتوى HTML (أو نص)"
336
+
337
+ #: profile-builder-2.0/admin/manage-fields.php:155
338
+ msgid "Phone Format"
339
+ msgstr "تنسيق الهاتف"
340
+
341
+ #: profile-builder-2.0/admin/manage-fields.php:155
342
+ msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
343
+ msgstr "يمكنك استخدام: # للأرقام، الأقواس ()، - علامة، + علامة، نقطة. والمساحات."
344
+
345
+ #: profile-builder-2.0/admin/manage-fields.php:155
346
+ msgid "Eg. (###) ###-####"
347
+ msgstr "مثال. (###) ###-####"
348
+
349
+ #: profile-builder-2.0/admin/manage-fields.php:155
350
+ msgid "Empty field won't check for correct phone number."
351
+ msgstr "لن يقوم الحقل الفارغ بالتحقق من رقم الهاتف الصحيح."
352
+
353
+ #: profile-builder-2.0/admin/manage-fields.php:156
354
+ msgid "Heading Tag"
355
+ msgstr "عنوان العلامة"
356
+
357
+ #: profile-builder-2.0/admin/manage-fields.php:156
358
+ msgid "Change heading field size on front-end forms"
359
+ msgstr "تغيير حجم حقل العنوان في نماذج الواجهة الأمامية"
360
+
361
+ #: profile-builder-2.0/admin/manage-fields.php:157
362
+ msgid "Min Number Value"
363
+ msgstr "الحد الأدنى لقيمة الرقم"
364
+
365
+ #: profile-builder-2.0/admin/manage-fields.php:157
366
+ msgid "Min allowed number value (0 to allow only positive numbers)"
367
+ msgstr "الحد الأدنى المسموح به لقيمة الرقم (0 للسماح للأرقام الإيجابية فقط)"
368
+
369
+ #: profile-builder-2.0/admin/manage-fields.php:157
370
+ msgid "Leave it empty for no min value"
371
+ msgstr "اتركه فارغا لعدم تحديد الحد الأدنى"
372
+
373
+ #: profile-builder-2.0/admin/manage-fields.php:158
374
+ msgid "Max Number Value"
375
+ msgstr "الحد الأعلى لقيمة الرقم"
376
+
377
+ #: profile-builder-2.0/admin/manage-fields.php:158
378
+ msgid "Max allowed number value (0 to allow only negative numbers)"
379
+ msgstr "الحد الأعلى المسموح به لقيمة الرقم (0 للسماح للأرقام الإيجابية فقط)"
380
+
381
+ #: profile-builder-2.0/admin/manage-fields.php:158
382
+ msgid "Leave it empty for no max value"
383
+ msgstr "اتركه فارغا لعدم تحديد الحد الأعلى"
384
+
385
+ #: profile-builder-2.0/admin/manage-fields.php:159
386
+ msgid "Number Step Value"
387
+ msgstr "قيمة خطوة الرقم"
388
+
389
+ #: profile-builder-2.0/admin/manage-fields.php:159
390
+ msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
391
+ msgstr "قيمة الخطوة 1 للسماح الأعداد الصحيحة فقط، 0.1 للسماح الأعداد الصحيحة والأرقام مع رقم عشري واحد"
392
+
393
+ #: profile-builder-2.0/admin/manage-fields.php:159
394
+ msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
395
+ msgstr "للسماح للعديد من الكسور العشرية المستخدمة على سبيل المثال. 0.01 (ل 2 عشري) وما إلى ذلك"
396
+
397
+ #: profile-builder-2.0/admin/manage-fields.php:159
398
+ msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
399
+ msgstr "يمكنك أيضا استخدام قيمة الخطوة لتحديد فترات الرقم القانوني (على سبيل المثال الخطوة 2 سوف تسمح فقط -4، -2، 0، 2 وما إلى ذلك)"
400
+
401
+ #: profile-builder-2.0/admin/manage-fields.php:159
402
+ msgid "Leave it empty for no restriction"
403
+ msgstr "اتركه فارغا بدون قيود"
404
+
405
+ #: profile-builder-2.0/admin/manage-fields.php:564
406
+ msgid "Albania Lek"
407
+ msgstr "ليك ألبانيا"
408
+
409
+ #: profile-builder-2.0/admin/manage-fields.php:565
410
+ msgid "Afghanistan Afghani"
411
+ msgstr "أفغانستان الأفغاني"
412
+
413
+ #: profile-builder-2.0/admin/manage-fields.php:566
414
+ msgid "Argentina Peso"
415
+ msgstr "البيزو الأرجنتيني"
416
+
417
+ #: profile-builder-2.0/admin/manage-fields.php:567
418
+ msgid "Aruba Guilder"
419
+ msgstr "أروبا غيلدر"
420
+
421
+ #: profile-builder-2.0/admin/manage-fields.php:568
422
+ msgid "Australia Dollar"
423
+ msgstr "دولار استرالي"
424
+
425
+ #: profile-builder-2.0/admin/manage-fields.php:569
426
+ msgid "Azerbaijan New Manat"
427
+ msgstr "أذربيجان الجديدة مانات"
428
+
429
+ #: profile-builder-2.0/admin/manage-fields.php:570
430
+ msgid "Bahamas Dollar"
431
+ msgstr "الدولار الباهاما"
432
+
433
+ #: profile-builder-2.0/admin/manage-fields.php:571
434
+ msgid "Barbados Dollar"
435
+ msgstr "دولار بربادوس"
436
+
437
+ #: profile-builder-2.0/admin/manage-fields.php:572
438
+ msgid "Bangladeshi taka"
439
+ msgstr "تاكا بنغلاديشية"
440
+
441
+ #: profile-builder-2.0/admin/manage-fields.php:573
442
+ msgid "Belarus Ruble"
443
+ msgstr "روبل روسيا البيضاء"
444
+
445
+ #: profile-builder-2.0/admin/manage-fields.php:574
446
+ msgid "Belize Dollar"
447
+ msgstr "دولار بليز"
448
+
449
+ #: profile-builder-2.0/admin/manage-fields.php:575
450
+ msgid "Bermuda Dollar"
451
+ msgstr "دولار برمودا"
452
+
453
+ #: profile-builder-2.0/admin/manage-fields.php:576
454
+ msgid "Bolivia Boliviano"
455
+ msgstr "بوليفيا بوليفيانو"
456
+
457
+ #: profile-builder-2.0/admin/manage-fields.php:577
458
+ msgid "Bosnia and Herzegovina Convertible Marka"
459
+ msgstr "ماركا للتحويل البوسنة والهرسك"
460
+
461
+ #: profile-builder-2.0/admin/manage-fields.php:578
462
+ msgid "Botswana Pula"
463
+ msgstr "بوتسوانا، بولا"
464
+
465
+ #: profile-builder-2.0/admin/manage-fields.php:579
466
+ msgid "Bulgaria Lev"
467
+ msgstr "بلغاريا ليف"
468
+
469
+ #: profile-builder-2.0/admin/manage-fields.php:580
470
+ msgid "Brazil Real"
471
+ msgstr "ريال برازيلي"
472
+
473
+ #: profile-builder-2.0/admin/manage-fields.php:581
474
+ msgid "Brunei Darussalam Dollar"
475
+ msgstr "دولار بروناى دار السلام"
476
+
477
+ #: profile-builder-2.0/admin/manage-fields.php:582
478
+ msgid "Cambodia Riel"
479
+ msgstr "ريال كمبودي"
480
+
481
+ #: profile-builder-2.0/admin/manage-fields.php:583
482
+ msgid "Canada Dollar"
483
+ msgstr "دولار كندي"
484
+
485
+ #: profile-builder-2.0/admin/manage-fields.php:584
486
+ msgid "Cayman Islands Dollar"
487
+ msgstr "دولار جزر كايمان"
488
+
489
+ #: profile-builder-2.0/admin/manage-fields.php:585
490
+ msgid "Chile Peso"
491
+ msgstr "شيلي بيزو"
492
+
493
+ #: profile-builder-2.0/admin/manage-fields.php:586
494
+ msgid "China Yuan Renminbi"
495
+ msgstr "الصين يوان رينمينبي"
496
+
497
+ #: profile-builder-2.0/admin/manage-fields.php:587
498
+ msgid "Colombia Peso"
499
+ msgstr "بيزو كولومبيا"
500
+
501
+ #: profile-builder-2.0/admin/manage-fields.php:588
502
+ msgid "Costa Rica Colon"
503
+ msgstr "كوستاريكا كولون"
504
+
505
+ #: profile-builder-2.0/admin/manage-fields.php:589
506
+ msgid "Croatia Kuna"
507
+ msgstr "كونا كرواتية"
508
+
509
+ #: profile-builder-2.0/admin/manage-fields.php:590
510
+ msgid "Cuba Peso"
511
+ msgstr "كوبا بيزو"
512
+
513
+ #: profile-builder-2.0/admin/manage-fields.php:591
514
+ msgid "Czech Republic Koruna"
515
+ msgstr "الجمهورية التشيكية كورونا"
516
+
517
+ #: profile-builder-2.0/admin/manage-fields.php:592
518
+ msgid "Denmark Krone"
519
+ msgstr "كرون دنماركي"
520
+
521
+ #: profile-builder-2.0/admin/manage-fields.php:593
522
+ msgid "Dominican Republic Peso"
523
+ msgstr "بيزو جمهورية الدومينيكان"
524
+
525
+ #: profile-builder-2.0/admin/manage-fields.php:594
526
+ msgid "East Caribbean Dollar"
527
+ msgstr "دولار شرق الكاريبي"
528
+
529
+ #: profile-builder-2.0/admin/manage-fields.php:595
530
+ msgid "Egypt Pound"
531
+ msgstr "جنيه مصري"
532
+
533
+ #: profile-builder-2.0/admin/manage-fields.php:596
534
+ msgid "El Salvador Colon"
535
+ msgstr "السلفادور، الكولون"
536
+
537
+ #: profile-builder-2.0/admin/manage-fields.php:597
538
+ msgid "Estonia Kroon"
539
+ msgstr "إستونيا كرون"
540
+
541
+ #: profile-builder-2.0/admin/manage-fields.php:598
542
+ msgid "Euro"
543
+ msgstr "يورو"
544
+
545
+ #: profile-builder-2.0/admin/manage-fields.php:599
546
+ msgid "Falkland Islands (Malvinas) Pound"
547
+ msgstr "جزر فوكلاند (مالفيناس) جنيه"
548
+
549
+ #: profile-builder-2.0/admin/manage-fields.php:600
550
+ msgid "Fiji Dollar"
551
+ msgstr "دولار فيجى"
552
+
553
+ #: profile-builder-2.0/admin/manage-fields.php:601
554
+ msgid "Ghana Cedis"
555
+ msgstr "غانا سيديس"
556
+
557
+ #: profile-builder-2.0/admin/manage-fields.php:602
558
+ msgid "Gibraltar Pound"
559
+ msgstr "جنيه جبل طارق"
560
+
561
+ #: profile-builder-2.0/admin/manage-fields.php:603
562
+ msgid "Guatemala Quetzal"
563
+ msgstr "غواتيمالا كيتزال"
564
+
565
+ #: profile-builder-2.0/admin/manage-fields.php:604
566
+ msgid "Guernsey Pound"
567
+ msgstr "جنيه غيرنسي"
568
+
569
+ #: profile-builder-2.0/admin/manage-fields.php:605
570
+ msgid "Guyana Dollar"
571
+ msgstr "دولار غيانا"
572
+
573
+ #: profile-builder-2.0/admin/manage-fields.php:606
574
+ msgid "Honduras Lempira"
575
+ msgstr "هندوراس ليمبيرا"
576
+
577
+ #: profile-builder-2.0/admin/manage-fields.php:607
578
+ msgid "Hong Kong Dollar"
579
+ msgstr "دولار هونج كونج"
580
+
581
+ #: profile-builder-2.0/admin/manage-fields.php:608
582
+ msgid "Hungary Forint"
583
+ msgstr "فورينت مجري"
584
+
585
+ #: profile-builder-2.0/admin/manage-fields.php:609
586
+ msgid "Iceland Krona"
587
+ msgstr "كرونا آيسلندي"
588
+
589
+ #: profile-builder-2.0/admin/manage-fields.php:610
590
+ msgid "India Rupee"
591
+ msgstr "روبية هندية"
592
+
593
+ #: profile-builder-2.0/admin/manage-fields.php:611
594
+ msgid "Indonesia Rupiah"
595
+ msgstr "روبية إندونيسية"
596
+
597
+ #: profile-builder-2.0/admin/manage-fields.php:612
598
+ msgid "Iran Rial"
599
+ msgstr "ريال إيراني"
600
+
601
+ #: profile-builder-2.0/admin/manage-fields.php:613
602
+ msgid "Isle of Man Pound"
603
+ msgstr "جنيه جزيرة آيل أوف مان"
604
+
605
+ #: profile-builder-2.0/admin/manage-fields.php:614
606
+ msgid "Israel Shekel"
607
+ msgstr "شيكل الكيان الصهيوني"
608
+
609
+ #: profile-builder-2.0/admin/manage-fields.php:615
610
+ msgid "Jamaica Dollar"
611
+ msgstr "دولار جامايكي"
612
+
613
+ #: profile-builder-2.0/admin/manage-fields.php:616
614
+ msgid "Japan Yen"
615
+ msgstr "الين الياباني"
616
+
617
+ #: profile-builder-2.0/admin/manage-fields.php:617
618
+ msgid "Jersey Pound"
619
+ msgstr "جنيه جيرزي"
620
+
621
+ #: profile-builder-2.0/admin/manage-fields.php:618
622
+ msgid "Kazakhstan Tenge"
623
+ msgstr "كازاخستان تنغي"
624
+
625
+ #: profile-builder-2.0/admin/manage-fields.php:619
626
+ msgid "Korea (North) Won"
627
+ msgstr "كوريا (الشمالية) وون"
628
+
629
+ #: profile-builder-2.0/admin/manage-fields.php:620
630
+ msgid "Korea (South) Won"
631
+ msgstr "كوريا (الجنوبية) وون"
632
+
633
+ #: profile-builder-2.0/admin/manage-fields.php:621
634
+ msgid "Kyrgyzstan Som"
635
+ msgstr "قيرغيزستان سوم"
636
+
637
+ #: profile-builder-2.0/admin/manage-fields.php:622
638
+ msgid "Laos Kip"
639
+ msgstr "لاوس كيب"
640
+
641
+ #: profile-builder-2.0/admin/manage-fields.php:623
642
+ msgid "Latvia Lat"
643
+ msgstr "لاتفيا لات"
644
+
645
+ #: profile-builder-2.0/admin/manage-fields.php:624
646
+ msgid "Lebanon Pound"
647
+ msgstr "جنيه لبناني"
648
+
649
+ #: profile-builder-2.0/admin/manage-fields.php:625
650
+ msgid "Liberia Dollar"
651
+ msgstr "دولار الليبيري"
652
+
653
+ #: profile-builder-2.0/admin/manage-fields.php:626
654
+ msgid "Lithuania Litas"
655
+ msgstr "ليتوانيا الليتاس"
656
+
657
+ #: profile-builder-2.0/admin/manage-fields.php:627
658
+ msgid "Macedonia Denar"
659
+ msgstr "دينار مقدوني"
660
+
661
+ #: profile-builder-2.0/admin/manage-fields.php:628
662
+ msgid "Malaysia Ringgit"
663
+ msgstr "رينغيت ماليزيا"
664
+
665
+ #: profile-builder-2.0/admin/manage-fields.php:629
666
+ msgid "Mauritius Rupee"
667
+ msgstr "روبي موريشيوس"
668
+
669
+ #: profile-builder-2.0/admin/manage-fields.php:630
670
+ msgid "Mexico Peso"
671
+ msgstr "بيزو مكسيكي"
672
+
673
+ #: profile-builder-2.0/admin/manage-fields.php:631
674
+ msgid "Mongolia Tughrik"
675
+ msgstr "منغوليا توغريك"
676
+
677
+ #: profile-builder-2.0/admin/manage-fields.php:632
678
+ msgid "Mozambique Metical"
679
+ msgstr "موزمبيق ميتيكال"
680
+
681
+ #: profile-builder-2.0/admin/manage-fields.php:633
682
+ msgid "Namibia Dollar"
683
+ msgstr "دولار ناميبي"
684
+
685
+ #: profile-builder-2.0/admin/manage-fields.php:634
686
+ msgid "Nepal Rupee"
687
+ msgstr "روبية نيبال"
688
+
689
+ #: profile-builder-2.0/admin/manage-fields.php:635
690
+ msgid "Netherlands Antilles Guilder"
691
+ msgstr "هولندا أنتيليان غيلدر"
692
+
693
+ #: profile-builder-2.0/admin/manage-fields.php:636
694
+ msgid "New Zealand Dollar"
695
+ msgstr "دولار نيوزيلندي"
696
+
697
+ #: profile-builder-2.0/admin/manage-fields.php:637
698
+ msgid "Nicaragua Cordoba"
699
+ msgstr "نيكاراغوا قرطبة"
700
+
701
+ #: profile-builder-2.0/admin/manage-fields.php:638
702
+ msgid "Nigeria Naira"
703
+ msgstr "نيرة نيجيرية"
704
+
705
+ #: profile-builder-2.0/admin/manage-fields.php:639
706
+ msgid "Norway Krone"
707
+ msgstr "كرون نرويجي"
708
+
709
+ #: profile-builder-2.0/admin/manage-fields.php:640
710
+ msgid "Oman Rial"
711
+ msgstr "ريال عماني"
712
+
713
+ #: profile-builder-2.0/admin/manage-fields.php:641
714
+ msgid "Pakistan Rupee"
715
+ msgstr "روبية باكستانية"
716
+
717
+ #: profile-builder-2.0/admin/manage-fields.php:642
718
+ msgid "Panama Balboa"
719
+ msgstr "بنما بالبوا"
720
+
721
+ #: profile-builder-2.0/admin/manage-fields.php:643
722
+ msgid "Paraguay Guarani"
723
+ msgstr "جواراني باراجواي"
724
+
725
+ #: profile-builder-2.0/admin/manage-fields.php:644
726
+ msgid "Peru Nuevo Sol"
727
+ msgstr "بيرو نويفو سول"
728
+
729
+ #: profile-builder-2.0/admin/manage-fields.php:645
730
+ msgid "Philippines Peso"
731
+ msgstr "بيسو فلبيني"
732
+
733
+ #: profile-builder-2.0/admin/manage-fields.php:646
734
+ msgid "Poland Zloty"
735
+ msgstr "بولندا زلوتي"
736
+
737
+ #: profile-builder-2.0/admin/manage-fields.php:647
738
+ msgid "Qatar Riyal"
739
+ msgstr "ريال قطري"
740
+
741
+ #: profile-builder-2.0/admin/manage-fields.php:648
742
+ msgid "Romania New Leu"
743
+ msgstr "ليو روماني جديد"
744
+
745
+ #: profile-builder-2.0/admin/manage-fields.php:649
746
+ msgid "Russia Ruble"
747
+ msgstr "روبل روسي"
748
+
749
+ #: profile-builder-2.0/admin/manage-fields.php:650
750
+ msgid "Saint Helena Pound"
751
+ msgstr "جنيه سانت هيلانا"
752
+
753
+ #: profile-builder-2.0/admin/manage-fields.php:651
754
+ msgid "Saudi Arabia Riyal"
755
+ msgstr "ريال سعودي"
756
+
757
+ #: profile-builder-2.0/admin/manage-fields.php:652
758
+ msgid "Serbia Dinar"
759
+ msgstr "دينار صربي"
760
+
761
+ #: profile-builder-2.0/admin/manage-fields.php:653
762
+ msgid "Seychelles Rupee"
763
+ msgstr "روبية سيشيلية"
764
+
765
+ #: profile-builder-2.0/admin/manage-fields.php:654
766
+ msgid "Singapore Dollar"
767
+ msgstr "دولار سينغافوري"
768
+
769
+ #: profile-builder-2.0/admin/manage-fields.php:655
770
+ msgid "Solomon Islands Dollar"
771
+ msgstr "دولار جزر سليمان"
772
+
773
+ #: profile-builder-2.0/admin/manage-fields.php:656
774
+ msgid "Somalia Shilling"
775
+ msgstr "شلن صومالي"
776
+
777
+ #: profile-builder-2.0/admin/manage-fields.php:657
778
+ msgid "South Africa Rand"
779
+ msgstr "راند جنوب أفريقيا"
780
+
781
+ #: profile-builder-2.0/admin/manage-fields.php:658
782
+ msgid "Sri Lanka Rupee"
783
+ msgstr "روبية سريلانكا"
784
+
785
+ #: profile-builder-2.0/admin/manage-fields.php:659
786
+ msgid "Sweden Krona"
787
+ msgstr "كرونا سويدية"
788
+
789
+ #: profile-builder-2.0/admin/manage-fields.php:660
790
+ msgid "Switzerland Franc"
791
+ msgstr "فرنك سويسري"
792
+
793
+ #: profile-builder-2.0/admin/manage-fields.php:661
794
+ msgid "Suriname Dollar"
795
+ msgstr "دولار سورينام"
796
+
797
+ #: profile-builder-2.0/admin/manage-fields.php:662
798
+ msgid "Syria Pound"
799
+ msgstr "ليرة سورية"
800
+
801
+ #: profile-builder-2.0/admin/manage-fields.php:663
802
+ msgid "Taiwan New Dollar"
803
+ msgstr "تايوان الدولار الجديد"
804
+
805
+ #: profile-builder-2.0/admin/manage-fields.php:664
806
+ msgid "Thailand Baht"
807
+ msgstr "باهت تايلاندي"
808
+
809
+ #: profile-builder-2.0/admin/manage-fields.php:665
810
+ msgid "Trinidad and Tobago Dollar"
811
+ msgstr "دولار ترينيداد وتوباغو"
812
+
813
+ #: profile-builder-2.0/admin/manage-fields.php:666
814
+ #: profile-builder-2.0/admin/manage-fields.php:667
815
+ msgid "Turkey Lira"
816
+ msgstr "ليرا تركية"
817
+
818
+ #: profile-builder-2.0/admin/manage-fields.php:668
819
+ msgid "Tuvalu Dollar"
820
+ msgstr "دولار توفالو"
821
+
822
+ #: profile-builder-2.0/admin/manage-fields.php:669
823
+ msgid "Ukraine Hryvna"
824
+ msgstr "أوكرانيا هريفنيا"
825
+
826
+ #: profile-builder-2.0/admin/manage-fields.php:670
827
+ msgid "United Kingdom Pound"
828
+ msgstr "جنيه استرليني"
829
+
830
+ #: profile-builder-2.0/admin/manage-fields.php:671
831
+ msgid "Uganda Shilling"
832
+ msgstr "شلن أوغندي"
833
+
834
+ #: profile-builder-2.0/admin/manage-fields.php:672
835
+ msgid "US Dollar"
836
+ msgstr "دولار أمريكي"
837
+
838
+ #: profile-builder-2.0/admin/manage-fields.php:673
839
+ msgid "Uruguay Peso"
840
+ msgstr "بيسو أوروغواي"
841
+
842
+ #: profile-builder-2.0/admin/manage-fields.php:674
843
+ msgid "Uzbekistan Som"
844
+ msgstr "أوزبكستان سوم"
845
+
846
+ #: profile-builder-2.0/admin/manage-fields.php:675
847
+ msgid "Venezuela Bolivar"
848
+ msgstr "بوليفار فنزويلا"
849
+
850
+ #: profile-builder-2.0/admin/manage-fields.php:676
851
+ msgid "Viet Nam Dong"
852
+ msgstr "فيتنام دونغ"
853
+
854
+ #: profile-builder-2.0/admin/manage-fields.php:677
855
+ msgid "Yemen Rial"
856
+ msgstr "ريال يمني"
857
+
858
+ #: profile-builder-2.0/admin/manage-fields.php:678
859
+ msgid "Zimbabwe Dollar"
860
+ msgstr "دولار زمبابوي"
861
+
862
+ #: profile-builder-2.0/admin/manage-fields.php:1097
863
+ msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
864
+ msgstr "يمكن أن يحتوي الاسم الوصفي فقط على أحرف صغيرة وأرقام و _ و - وليس مسافات.\n"
865
+
866
+ #: profile-builder-2.0/admin/manage-fields.php:1314
867
+ msgid "Search Location"
868
+ msgstr "موقع البحث"
869
+
870
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
871
+ msgid "You are not allowed to do this."
872
+ msgstr "لا يسمح لك بذلك."
873
+
874
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
875
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
876
+ msgid "Search Users"
877
+ msgstr "البحث عن المستخدمين"
878
+
879
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
880
+ msgid "Conditional Logic"
881
+ msgstr "المنطق الشرطي"
882
+
883
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
884
+ msgid "Conditional Rules"
885
+ msgstr "القواعد المشروطة"
886
+
887
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
888
+ msgid "This field has conditional logic enabled."
889
+ msgstr "هذا الحقل لديه منطق شرطي مفعل."
890
+
891
+ #: profile-builder-2.0/features/functions.php:685
892
+ msgid "Incorrect phone number"
893
+ msgstr "رقم الهاتف غير صحيح"
894
+
895
+ #: profile-builder-2.0/front-end/class-formbuilder.php:124
896
+ msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
897
+ msgstr "تم تعيين دور المستخدم الذي تم إنشاؤه إلى الدور الافتراضي. لا يمكن تسجيل مستخدم له الدور المعين لهذا النموذج إلا من قبل المشرف."
898
+
899
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
900
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
901
+ msgid "Please add the Google Maps API key for this field."
902
+ msgstr "الرجاء إضافة مفتاح واجهة برمجة التطبيقات لخرائط غوغل لهذا الحقل."
903
+
904
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
905
+ msgid "Something went wrong. Please try again."
906
+ msgstr "هناك خطأ ما. حاول مرة اخرى."
907
+
908
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
909
+ msgid "Please enter numbers only"
910
+ msgstr "برجاء إدخال أرقام فقط"
911
+
912
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
913
+ msgid "Value must be a multiplier of %1$s"
914
+ msgstr "يجب أن تكون القيمة مضاعفا ل %1$s"
915
+
916
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
917
+ msgid "Value must be greater than or equal to %1$s"
918
+ msgstr "يجب أن تكون القيمة أكبر من أو تساوي %1$s"
919
+
920
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
921
+ msgid "Value must be less than or equal to %1$s"
922
+ msgstr "يجب أن تكون القيمة أكبر من أو تساوي %1$s"
923
+
924
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
925
+ msgid "Required phone number format: "
926
+ msgstr "تنسيق رقم الهاتف المطلوب:"
927
+
928
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
929
+ msgid "Bolivia, __( Plurinational State of"
930
+ msgstr "بوليفيا، __ (دولة - المتعددة القوميات"
931
+
932
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
933
+ msgid "Bonaire, __( Sint Eustatius and Saba"
934
+ msgstr "بونير، __ (سينت أوستاتيوس وسابا"
935
+
936
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
937
+ msgid "Brunei Darussalam"
938
+ msgstr "دولار بروناى دار السلام"
939
+
940
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
941
+ msgid "Cabo Verde"
942
+ msgstr "الرأس الأخضر"
943
+
944
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
945
+ msgid "Cocos (Keeling) Islands"
946
+ msgstr "جزر كوكوس"
947
+
948
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
949
+ msgid "Congo"
950
+ msgstr "جمهورية الكونغو"
951
+
952
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
953
+ msgid "Congo, __( the Democratic Republic of the"
954
+ msgstr "جمهورية الكونغو الديموقراطية"
955
+
956
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
957
+ msgid "Cote dIvoire"
958
+ msgstr "ساحل العاج"
959
+
960
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
961
+ msgid "Falkland Islands (Malvinas)"
962
+ msgstr "جزر فوكلاند (مالفيناس)"
963
+
964
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
965
+ msgid "Holy See (Vatican City State)"
966
+ msgstr "الكرسي الرسولي (دولة الفاتيكان)"
967
+
968
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
969
+ msgid "Iran, __( Islamic Republic of"
970
+ msgstr "إيران (جمهورية - الإسلامية)"
971
+
972
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
973
+ msgid "Korea, __( Democratic Peoples Republic of"
974
+ msgstr "كوريا، الجمهورية الشعبية الديمقراطية"
975
+
976
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
977
+ msgid "Korea, __( Republic of"
978
+ msgstr "جمهورية كوريا"
979
+
980
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
981
+ msgid "Lao Peoples Democratic Republic"
982
+ msgstr "جمهورية لاو الديمقراطية الشعبية"
983
+
984
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
985
+ msgid "Macedonia, __( the former Yugoslav Republic of"
986
+ msgstr "مقدونيا، __ (جمهورية يوغوسلافيا السابقة"
987
+
988
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
989
+ msgid "Micronesia, __( Federated States of"
990
+ msgstr "ميكرونيزيا، __ (ولايات - الموحدة"
991
+
992
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
993
+ msgid "Moldova, __( Republic of"
994
+ msgstr "مولدوفا، __ (جمهورية"
995
+
996
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
997
+ msgid "Palestine, __( State of"
998
+ msgstr "فلسطين"
999
+
1000
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1001
+ msgid "Russian Federation"
1002
+ msgstr "الاتحاد الروسي"
1003
+
1004
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1005
+ msgid "Saint Helena, __( Ascension and Tristan da Cunha"
1006
+ msgstr "سانت هيلينا، __ (أسينسيون وتريستان دا كونها"
1007
+
1008
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1009
+ msgid "Saint Martin (French part)"
1010
+ msgstr "سانت مارتن (الجزء الفرنسي)"
1011
+
1012
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1013
+ msgid "Sint Maarten (Dutch part)"
1014
+ msgstr "سانت مارتن (الجزء الهولندي)"
1015
+
1016
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1017
+ msgid "Syrian Arab Republic"
1018
+ msgstr "الجمهورية العربية السورية"
1019
+
1020
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1021
+ msgid "Taiwan, __( Province of China"
1022
+ msgstr "تايوان، __ (مقاطعة الصين"
1023
+
1024
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1025
+ msgid "Tanzania, __( United Republic of"
1026
+ msgstr "تنزانيا، __ (جمهورية - المتحدة"
1027
+
1028
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1029
+ msgid "Timor-Leste"
1030
+ msgstr "تيمور الشرقية"
1031
+
1032
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1033
+ msgid "Venezuela, __( Bolivarian Republic of"
1034
+ msgstr "فنزويلا، __ (جمهورية - البوليفارية"
1035
+
1036
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1037
+ msgid "Viet Nam"
1038
+ msgstr "فيتنام"
1039
+
1040
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1041
+ msgid "Virgin Islands, __( British"
1042
+ msgstr "جزر فيرجن، __ (البريطانية"
1043
+
1044
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1045
+ msgid "Virgin Islands, __( U.S."
1046
+ msgstr "جزر فيرجن، __ (الأمريكية."
1047
+
1048
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
1049
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:186
1050
+ msgid "User Fields Tags"
1051
+ msgstr "وسوم حقول المستخدم"
1052
+
1053
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479
1054
+ msgid "The users selected password at signup"
1055
+ msgstr "قام المستخدمين باختيار كلمة المرور عند الاشتراك"
1056
+
1057
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
1058
+ msgid "[{{site_name}}] Notice of Email Change"
1059
+ msgstr "[{{site_name}}] إشعار بتغيير البريد الإلكتروني"
1060
+
1061
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
1062
+ msgid "Changed Email Address Notification"
1063
+ msgstr "إشعار تغيير عنوان البريد الإلكتروني"
1064
+
1065
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1066
+ msgid "Limit"
1067
+ msgstr "حد"
1068
+
1069
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1070
+ msgid "Enable limit to the number of fields to be generated by users in front end forms "
1071
+ msgstr "تمكين الحد لعدد الحقول التي سيتم إنشاؤها بواسطة المستخدمين في نماذج الواجهة الأمامية"
1072
+
1073
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1074
+ msgid "General Limit"
1075
+ msgstr "الحد العام"
1076
+
1077
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1078
+ msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
1079
+ msgstr "الحد الافتراضي لهذه المجموعة المكرره. <br> اترك 0 بدون تحديد."
1080
+
1081
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1082
+ msgid "Limit reached message"
1083
+ msgstr "رسالة الوصول للحد الأقصى"
1084
+
1085
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1086
+ msgid "The maximum number of fields has been reached."
1087
+ msgstr "تم الوصول إلى الحد الأقصى لعدد الحقول."
1088
+
1089
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1090
+ msgid "The popup message to display when the limit of repeater groups is reached."
1091
+ msgstr "الرسالة المنبثقة تعرض عندما يتم الوصول إلى الحد الأقصى من المجموعات المكررة."
1092
+
1093
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1094
+ msgid "Limit per Role"
1095
+ msgstr "يوجد حد لكل دور"
1096
+
1097
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1098
+ msgid "Leave 0 for unlimited."
1099
+ msgstr "اترك 0 لغير محدود."
1100
+
1101
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1102
+ msgid "Repeated field group"
1103
+ msgstr "مجموعة الحقول المتكررة"
1104
+
1105
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1106
+ msgid "Manage field or group of fields that will be repeatable."
1107
+ msgstr "إدارة الحقل أو مجموعة الحقول التي سيتم تكرارها."
1108
+
1109
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1110
+ msgid "Edit field group"
1111
+ msgstr "تعديل مجموعة الحقول"
1112
+
1113
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
1114
+ msgid "Repeatable fields saved!"
1115
+ msgstr "تم حفظ الحقول القابلة للتكرار!"
1116
+
1117
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
1118
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
1119
+ msgid "Please enter a unique field title.\n"
1120
+ msgstr "الرجاء إدخال عنوان حقل فريد.\n"
1121
+
1122
+ #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
1123
+ msgid "Are you sure you want to delete this?"
1124
+ msgstr "هل أنت متأكد أنك تريد حذف هذا؟"
1125
+
1126
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:192
1127
+ msgid "Sort Tags"
1128
+ msgstr "فرز الوسوم"
1129
+
1130
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:201
1131
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2308
1132
+ msgid "Faceted Menus"
1133
+ msgstr "قوائم الأوجه"
1134
+
1135
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:202
1136
+ msgid "User Count"
1137
+ msgstr "عدد المستخدمين"
1138
+
1139
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1553
1140
+ msgid "Show All"
1141
+ msgstr "إظهار الكل"
1142
+
1143
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1144
+ msgid "No options available"
1145
+ msgstr "لاتوجد خيارات"
1146
+
1147
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
1148
+ msgid "Remove All Filters"
1149
+ msgstr "إزالة جميع معايير البحث"
1150
+
1151
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1152
+ msgid "Label"
1153
+ msgstr "ملصق"
1154
+
1155
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1156
+ msgid "Choose the facet name that appears on the frontend"
1157
+ msgstr "اختر اسم الواجهة الذي يظهر على الواجهة الأمامية"
1158
+
1159
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1160
+ msgid "Facet Type"
1161
+ msgstr "نوع الواجهه"
1162
+
1163
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1164
+ msgid "Choose the facet menu type"
1165
+ msgstr "اختر نوع قائمة الواجهه"
1166
+
1167
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1168
+ msgid "Facet Meta"
1169
+ msgstr "واجهة ميتا"
1170
+
1171
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1172
+ msgid "Choose the meta field for the facet menu"
1173
+ msgstr "اختر حقل ميتا لقائمة الواجهه"
1174
+
1175
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1176
+ msgid "Behaviour"
1177
+ msgstr "سلوك"
1178
+
1179
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1180
+ msgid "Narrow the results"
1181
+ msgstr "تضييق النتائج"
1182
+
1183
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1184
+ msgid "Expand the results"
1185
+ msgstr "توسيع النتائج"
1186
+
1187
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1188
+ msgid "Choose how multiple selections affect the results"
1189
+ msgstr "اختر كيفية تأثير التحديدات المتعددة على النتائج"
1190
+
1191
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1192
+ msgid "Visible choices"
1193
+ msgstr "الخيارات المرئية"
1194
+
1195
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1196
+ msgid "Show a toggle link after this many choices. Leave blank for all"
1197
+ msgstr "عرض رابط تبديل بعد هذه الخيارات المتعددة. اتركه فارغا للجميع"
1198
+
1199
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1200
+ msgid "Search Fields"
1201
+ msgstr "ابحث في الحقول"
1202
+
1203
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1204
+ msgid "Choose the fields in which the Search Field will look in"
1205
+ msgstr "اختر الحقول التي سيتم البحث فيها"
1206
+
1207
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2330
1208
+ msgid "Search Settings"
1209
+ msgstr "ابحث في الإعدادات"
1210
+
1211
+ #: pb-add-on-woocommerce/billing-fields.php:8
1212
+ #: pb-add-on-woocommerce/shipping-fields.php:8
1213
+ msgid "Company Name"
1214
+ msgstr ""
1215
+
1216
+ #: pb-add-on-woocommerce/billing-fields.php:9
1217
+ #: pb-add-on-woocommerce/shipping-fields.php:9
1218
+ msgid "Address"
1219
+ msgstr ""
1220
+
1221
+ #: pb-add-on-woocommerce/billing-fields.php:5
1222
+ #: pb-add-on-woocommerce/shipping-fields.php:5
1223
+ msgid "Country"
1224
+ msgstr ""
1225
+
1226
+ #: pb-add-on-woocommerce/billing-fields.php:11
1227
+ #: pb-add-on-woocommerce/shipping-fields.php:11
1228
+ msgid "Town / City"
1229
+ msgstr ""
1230
+
1231
+ #: pb-add-on-woocommerce/billing-fields.php:12
1232
+ #: pb-add-on-woocommerce/shipping-fields.php:12
1233
+ msgid "State / County"
1234
+ msgstr ""
1235
+
1236
+ #: pb-add-on-woocommerce/billing-fields.php:13
1237
+ #: pb-add-on-woocommerce/shipping-fields.php:13
1238
+ msgid "Postcode / Zip"
1239
+ msgstr ""
1240
+
1241
+ #: pb-add-on-woocommerce/billing-fields.php:14
1242
+ msgid "Email Address"
1243
+ msgstr ""
1244
+
1245
+ #: pb-add-on-woocommerce/billing-fields.php:15
1246
+ msgid "Phone"
1247
+ msgstr ""
1248
+
1249
+ #: pb-add-on-woocommerce/billing-fields.php:278
1250
+ msgid "Ship to a different address?"
1251
+ msgstr ""
1252
+
1253
+ #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1254
+ msgid "Billing Address"
1255
+ msgstr ""
1256
+
1257
+ #: pb-add-on-woocommerce/index.php:169
1258
+ msgid "Displays customer billing fields in front-end. "
1259
+ msgstr ""
1260
+
1261
+ #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1262
+ msgid "Shipping Address"
1263
+ msgstr ""
1264
+
1265
+ #: pb-add-on-woocommerce/index.php:173
1266
+ msgid "Displays customer shipping fields in front-end. "
1267
+ msgstr ""
1268
+
1269
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1270
+ msgid "Display on WooCommerce Checkout"
1271
+ msgstr ""
1272
+
1273
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1274
+ msgid "Whether the field should be added to the WooCommerce checkout form or not"
1275
+ msgstr ""
1276
+
1277
+ #: pb-add-on-woocommerce/index.php:541
1278
+ msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1279
+ msgstr ""
1280
+
1281
+ #: pb-add-on-woocommerce/woosync-page.php:23
1282
+ #: pb-add-on-woocommerce/woosync-page.php:70
1283
+ msgid "WooCommerce Sync"
1284
+ msgstr ""
1285
+
1286
+ #: pb-add-on-woocommerce/woosync-page.php:76
1287
+ msgid "Choose Register form to display on My Account page:"
1288
+ msgstr ""
1289
+
1290
+ #: pb-add-on-woocommerce/woosync-page.php:81
1291
+ msgid "Default Register"
1292
+ msgstr ""
1293
+
1294
+ #: pb-add-on-woocommerce/woosync-page.php:103
1295
+ msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1296
+ msgstr ""
1297
+
1298
+ #: pb-add-on-woocommerce/woosync-page.php:110
1299
+ msgid "Choose Edit Profile form to display on My Account page:"
1300
+ msgstr ""
1301
+
1302
+ #: pb-add-on-woocommerce/woosync-page.php:115
1303
+ msgid "Default Edit Profile"
1304
+ msgstr ""
1305
+
1306
+ #: pb-add-on-woocommerce/woosync-page.php:137
1307
+ msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1308
+ msgstr ""
1309
+
1310
+ #: profile-builder-2.0/admin/add-ons.php:190
1311
+ msgid "Recommended Plugins"
1312
+ msgstr "الإضافات الموصى بها"
1313
+
1314
+ #: profile-builder-2.0/admin/add-ons.php:219
1315
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1316
+ msgid "Free"
1317
+ msgstr "مجاني"
1318
+
1319
+ #: profile-builder-2.0/admin/add-ons.php:221
1320
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1321
+ msgstr "قبول دفعات المستخدم، إنشاء خطط الاشتراك وتقييد المحتوى على موقعك."
1322
+
1323
+ #: profile-builder-2.0/admin/add-ons.php:222
1324
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1325
+ msgid "More Details"
1326
+ msgstr "معلومات أكثر"
1327
+
1328
+ #: profile-builder-2.0/admin/add-ons.php:240
1329
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1330
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1331
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1332
+ msgid "Plugin is <strong>inactive</strong>"
1333
+ msgstr "الإضافة <strong>غير مفعلة</strong>"
1334
+
1335
+ #: profile-builder-2.0/admin/add-ons.php:242
1336
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1337
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1338
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1339
+ msgid "Plugin is <strong>active</strong>"
1340
+ msgstr "الإضافة <strong>مفعلة</strong>"
1341
+
1342
+ #: profile-builder-2.0/admin/add-ons.php:256
1343
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1344
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1345
+ msgstr "تعذر تثبيت الإضافة. أعد المحاولة أو <a href=\"%s\" target=\"_blank\"> ثبت يدويا </a>."
1346
+
1347
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1348
+ msgid "Paid Accounts"
1349
+ msgstr "الحسابات المدفوعة"
1350
+
1351
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1352
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1353
+ msgstr "العضوية مدفوعة الاشتراك - إضافة ووردبريس مجانية"
1354
+
1355
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1356
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1357
+ msgstr "باستخدام حقل الاشتراكات الجديد في Profile Builder، ستسمح استمارات التسجيل لمستخدميك بالاشتراك في الحسابات المدفوعة."
1358
+
1359
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1360
+ msgid "Paid & Free Subscriptions"
1361
+ msgstr "الاشتراكات المدفوعة والمجانية"
1362
+
1363
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1364
+ msgid "Restrict Content"
1365
+ msgstr "تقييد المحتوى"
1366
+
1367
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1368
+ msgid "Member Management"
1369
+ msgstr "إدارة الأعضاء"
1370
+
1371
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1372
+ msgid "Email Templates"
1373
+ msgstr "قوالب البريد الإلكتروني"
1374
+
1375
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1376
+ msgid "Account Management"
1377
+ msgstr "إدارة الحساب"
1378
+
1379
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1380
+ msgid "Subscription Management"
1381
+ msgstr "إدارة الاشتراكات"
1382
+
1383
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1384
+ msgid "Payment Management"
1385
+ msgstr "إدارة الدفع"
1386
+
1387
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1388
+ msgid "Plugin is Active"
1389
+ msgstr "الإضافة مفعلة"
1390
+
1391
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1392
+ msgid "Plugin has been activated"
1393
+ msgstr "تم تفعيل الإضافة"
1394
+
1395
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1396
+ msgid "Plugin has been deactivated."
1397
+ msgstr "تم تعطيل الإضافة."
1398
+
1399
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1400
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1401
+ msgstr "قبول دفعات المستخدم، إنشاء خطط الاشتراك وتقييد المحتوى على موقعك."
1402
+
1403
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1404
+ msgid "Step by Step Quick Setup"
1405
+ msgstr "الإعداد السريع خطوة بخطوة"
1406
+
1407
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
1408
+ msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1409
+ msgstr "لتفعيل المستخدم، يرجى النقر على الرابط التالي: <br> <br>%s%s%s<br> <br> بعد التفعيل، ستتلقى رسالة إلكترونية أخرى * مع تسجيل الدخول."
1410
+
1411
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1412
+ msgid "After Login"
1413
+ msgstr "بعد تسجيل الدخول"
1414
+
1415
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1416
+ msgid "After Logout"
1417
+ msgstr "بعد تسجيل الخروج"
1418
+
1419
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1420
+ msgid "After Registration"
1421
+ msgstr "بعد التسجيل"
1422
+
1423
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1424
+ msgid "After Edit Profile"
1425
+ msgstr "بعد تعديل الملف الشخصي"
1426
+
1427
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1428
+ msgid "After Successful Email Confirmation"
1429
+ msgstr "بعد تأكيد البريد الإلكتروني بنجاح"
1430
+
1431
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1432
+ msgid "After Successful Password Reset"
1433
+ msgstr "بعد إعادة كلمة المرور بنجاح"
1434
+
1435
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1436
+ msgid "Dashboard (redirect users from accessing the dashboard)"
1437
+ msgstr "لوحة التحكم (إعادة توجيه المستخدمين من الدخول إلى لوحة التحكم)"
1438
+
1439
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1440
+ msgid "User ID"
1441
+ msgstr "معرف المستخدم"
1442
+
1443
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1444
+ msgid "User ID or Username"
1445
+ msgstr "معرف المستخدم أو اسم المستخدم"
1446
+
1447
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1448
+ msgid "User ID / Username"
1449
+ msgstr "معرف المستخدم / اسم المستخدم"
1450
+
1451
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1452
+ msgid "Please select and enter the ID or username of your user."
1453
+ msgstr "يرجى تحديد وإدخال الرقم التعريفي للمستخدم أو اسم المستخدم الخاص به."
1454
+
1455
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1456
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1457
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1458
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1459
+ msgid "Redirect Type"
1460
+ msgstr "نوع إعادة التوجيه"
1461
+
1462
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1463
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1464
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1465
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1466
+ msgid "Redirect URL"
1467
+ msgstr "URL إعادة التوجيه"
1468
+
1469
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1470
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1471
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1472
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1473
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1474
+ msgstr "يمكن أن يحتوي على الوسوم الديناميكية التالية:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1475
+
1476
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1477
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1478
+ msgid "Individual User Redirects"
1479
+ msgstr "عمليات إعادة توجيه المستخدمين الفرديين"
1480
+
1481
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1482
+ msgid "... Choose"
1483
+ msgstr "... اختر"
1484
+
1485
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1486
+ msgid "Select a user role."
1487
+ msgstr "حدد دور المستخدم."
1488
+
1489
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1490
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1491
+ msgid "User Role based Redirects"
1492
+ msgstr "عمليات إعادة التوجيه استنادا إلى دور المستخدم"
1493
+
1494
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1495
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1496
+ msgid "Global Redirects"
1497
+ msgstr "عمليات إعادة التوجيه العالمية"
1498
+
1499
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1500
+ msgid "Login ( wp_login.php )"
1501
+ msgstr "تسجيل الدخول ( wp_login.php )"
1502
+
1503
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1504
+ msgid "Register ( wp-login.php?action=register )"
1505
+ msgstr "التسجيل ( wp-login.php?action=register )"
1506
+
1507
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1508
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
1509
+ msgstr "فقدت كلمة المرور ( wp-login.php?action=lostpassword )"
1510
+
1511
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1512
+ msgid "Author Archive ( http://sitename.com/author/admin )"
1513
+ msgstr "أرشيف المؤلف (http://sitename.com/author/admin)"
1514
+
1515
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1516
+ msgid "Redirect Default WordPress Forms and Pages"
1517
+ msgstr "إعادة توجيه نماذج ووردبريس الافتراضية والصفحات"
1518
+
1519
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1520
+ msgid "How does this work?"
1521
+ msgstr "كيف يعمل هذا؟"
1522
+
1523
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1524
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1525
+ msgstr "<pre>معرف المستخدم / اسم المستخدم</pre><pre>إعادة توجيه</pre><pre>URL</pre>"
1526
+
1527
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1528
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1529
+ msgstr "<pre>دور المستخدم</pre><pre>إعادة توجيه</pre><pre>URL</pre>"
1530
+
1531
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1532
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1533
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
1534
+ msgstr "<pre>إعادة توجيه</pre><pre>URL</pre>"
1535
+
1536
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1537
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1538
+ msgstr "تحدث عمليات إعادة التوجيه هذه بعد إجراء ناجح، مثل التسجيل أو بعد تسجيل دخول ناجح."
1539
+
1540
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1541
+ msgid "Which redirect happens depends on the following priority:"
1542
+ msgstr "تعتمد عملية إعادة التوجيه على الأولوية التالية:"
1543
+
1544
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1545
+ msgid "Redirect Default WordPress forms and pages"
1546
+ msgstr "إعادة توجيه نماذج ووردبريس الافتراضية والصفحات"
1547
+
1548
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
1549
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1550
+ msgstr "مع هذه يمكنك إعادة توجيه نماذج وورد مختلفة وصفحات إلى صفحات تم إنشاؤها باستخدام profile builder."
1551
+
1552
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1553
+ msgid "Available tags for dynamic URLs"
1554
+ msgstr "الوسوم المتاحة لعناوين URL الديناميكية"
1555
+
1556
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
1557
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1558
+ msgstr "يمكنك استخدام الوسوم التالية في عناوين URL لإعادة توجيه المستخدمين إلى صفحات مختلفة."
1559
+
1560
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1561
+ msgid "generates a url of the current website homepage."
1562
+ msgstr "يولد عنوان url للصفحة الرئيسية الحالية."
1563
+
1564
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1565
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1566
+ msgstr "في ووردبريس يمكن أن يكون <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>عنوان الموقع</a> مختلفا عن عنوان url الرئيسي"
1567
+
1568
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1569
+ msgid "the ID of the user"
1570
+ msgstr "معرف المستخدم"
1571
+
1572
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1573
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1574
+ msgstr "النسخة المعقمة لعنوان URL لاسم المستخدم، يمكن استخدام اسم المستخدم اللطيف بأمان في عناوين URL نظرا لأنه لا يمكن أن يحتوي على أحرف خاصة أو مسافات."
1575
+
1576
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
1577
+ msgid "the URL of the previously visited page"
1578
+ msgstr "عنوان URL للصفحة التي تمت زيارتها سابقا"
1579
+
1580
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
1581
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
1582
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
1583
+ msgid "You can't add duplicate redirects!"
1584
+ msgstr "لا يمكنك إضافة عمليات إعادة توجيه مكررة!"
1585
+
1586
+ #: profile-builder-2.0/admin/admin-functions.php:41
1587
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
1588
+ msgstr "عرض الاسم بشكل عام - يظهر فقط في صفحة تعديل الملف الشخصي!"
1589
+
1590
+ #: profile-builder-2.0/admin/basic-info.php:37
1591
+ msgid "Friction-less login using %s shortcode or a widget."
1592
+ msgstr "الاحتكاك أقل في تسجيل الدخول باستخدام %s الرمز القصير أو ودجت."
1593
+
1594
+ #: profile-builder-2.0/admin/basic-info.php:41
1595
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
1596
+ msgstr "أشكال تسجيل جميلة للتخصيص بشكل كامل باستخدام %s الرمز القصير."
1597
+
1598
+ #: profile-builder-2.0/admin/basic-info.php:45
1599
+ msgid "Straight forward edit profile forms using %s shortcode."
1600
+ msgstr "تحرير نماذج الملف الشخصي بشكل بسيط باستخدام %s الرمز القصير."
1601
+
1602
+ #: profile-builder-2.0/admin/basic-info.php:58
1603
+ msgid "Allow users to recover their password in the front-end using the %s."
1604
+ msgstr "السماح للمستخدمين باستعادة كلمة المرور في الواجهة الأمامية باستخدام %s."
1605
+
1606
+ #: profile-builder-2.0/admin/basic-info.php:140
1607
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1608
+ msgstr "لإنشاء صفحة تحتوي على المستخدمين المسجلين في هذا الموقع / المدونة الحالية، أدخل الرمز القصير التالي في صفحة من اختيارك: %s."
1609
+
1610
+ #: profile-builder-2.0/admin/general-settings.php:115
1611
+ msgid "\"Admin Approval\" on User Role:"
1612
+ msgstr "\"موافقة المشرف\" على دور المستخدم:"
1613
+
1614
+ #: profile-builder-2.0/admin/general-settings.php:134
1615
+ msgid "Select on what user roles to activate Admin Approval."
1616
+ msgstr "حدد ما أدوار المستخدم لتنشيط موافقة المشرف."
1617
+
1618
+ #: profile-builder-2.0/admin/manage-fields.php:133
1619
+ msgid "Display on PB forms"
1620
+ msgstr "عرض على نماذج PB"
1621
+
1622
+ #: profile-builder-2.0/admin/manage-fields.php:133
1623
+ msgid "PB Login"
1624
+ msgstr "تسجيل الدخول PB"
1625
+
1626
+ #: profile-builder-2.0/admin/manage-fields.php:133
1627
+ msgid "PB Register"
1628
+ msgstr "تسجيل PB"
1629
+
1630
+ #: profile-builder-2.0/admin/manage-fields.php:133
1631
+ msgid "PB Recover Password"
1632
+ msgstr "إستعادة كلمة المرور PB"
1633
+
1634
+ #: profile-builder-2.0/admin/manage-fields.php:133
1635
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
1636
+ msgstr "حدد على أي نموذج Profile Builder يتم عرض reCAPTCHA"
1637
+
1638
+ #: profile-builder-2.0/admin/manage-fields.php:134
1639
+ msgid "Display on default WP forms"
1640
+ msgstr "عرض على نماذج WP الإفتراضية"
1641
+
1642
+ #: profile-builder-2.0/admin/manage-fields.php:134
1643
+ msgid "Default WP Login"
1644
+ msgstr "تسجيل الدخول الإفتراضي ل WP"
1645
+
1646
+ #: profile-builder-2.0/admin/manage-fields.php:134
1647
+ msgid "Default WP Register"
1648
+ msgstr "التسجيل الإفتراضي ل WP"
1649
+
1650
+ #: profile-builder-2.0/admin/manage-fields.php:134
1651
+ msgid "Default WP Recover Password"
1652
+ msgstr "إستعادة كلمة المرور الإفتراضي ل WP"
1653
+
1654
+ #: profile-builder-2.0/admin/manage-fields.php:134
1655
+ msgid "Select on which default WP forms to display reCAPTCHA"
1656
+ msgstr "حدد على أي نموذج WP الإفتراضي يتم عرض reCAPTCHA"
1657
+
1658
+ #: profile-builder-2.0/admin/manage-fields.php:140
1659
+ #: profile-builder-2.0/admin/manage-fields.php:141
1660
+ #: profile-builder-2.0/admin/manage-fields.php:142
1661
+ msgid "Default option of the field"
1662
+ msgstr "الخيار الافتراضي للحقل"
1663
+
1664
+ #: profile-builder-2.0/admin/manage-fields.php:282
1665
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
+ msgid "Afghanistan"
1667
+ msgstr "أفغانستان"
1668
+
1669
+ #: profile-builder-2.0/admin/manage-fields.php:283
1670
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1671
+ msgid "Aland Islands"
1672
+ msgstr "جزر آلاند"
1673
+
1674
+ #: profile-builder-2.0/admin/manage-fields.php:284
1675
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1676
+ msgid "Albania"
1677
+ msgstr "ألبانيا"
1678
+
1679
+ #: profile-builder-2.0/admin/manage-fields.php:285
1680
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1681
+ msgid "Algeria"
1682
+ msgstr "الجزائر"
1683
+
1684
+ #: profile-builder-2.0/admin/manage-fields.php:286
1685
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1686
+ msgid "American Samoa"
1687
+ msgstr "ساموا الأمريكية"
1688
+
1689
+ #: profile-builder-2.0/admin/manage-fields.php:287
1690
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1691
+ msgid "Andorra"
1692
+ msgstr "أندورا"
1693
+
1694
+ #: profile-builder-2.0/admin/manage-fields.php:288
1695
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
+ msgid "Angola"
1697
+ msgstr "أنغولا"
1698
+
1699
+ #: profile-builder-2.0/admin/manage-fields.php:289
1700
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1701
+ msgid "Anguilla"
1702
+ msgstr "أنغيلا"
1703
+
1704
+ #: profile-builder-2.0/admin/manage-fields.php:290
1705
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1706
+ msgid "Antarctica"
1707
+ msgstr "القارة القطبية الجنوبية"
1708
+
1709
+ #: profile-builder-2.0/admin/manage-fields.php:291
1710
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1711
+ msgid "Antigua and Barbuda"
1712
+ msgstr "أنتيغوا وبربودا"
1713
+
1714
+ #: profile-builder-2.0/admin/manage-fields.php:292
1715
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1716
+ msgid "Argentina"
1717
+ msgstr "الأرجنتين"
1718
+
1719
+ #: profile-builder-2.0/admin/manage-fields.php:293
1720
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1721
+ msgid "Armenia"
1722
+ msgstr "أرمينيا"
1723
+
1724
+ #: profile-builder-2.0/admin/manage-fields.php:294
1725
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1726
+ msgid "Aruba"
1727
+ msgstr "أروبا"
1728
+
1729
+ #: profile-builder-2.0/admin/manage-fields.php:295
1730
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1731
+ msgid "Australia"
1732
+ msgstr "أستراليا"
1733
+
1734
+ #: profile-builder-2.0/admin/manage-fields.php:296
1735
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1736
+ msgid "Austria"
1737
+ msgstr "النمسا"
1738
+
1739
+ #: profile-builder-2.0/admin/manage-fields.php:297
1740
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1741
+ msgid "Azerbaijan"
1742
+ msgstr "أزربيجان"
1743
+
1744
+ #: profile-builder-2.0/admin/manage-fields.php:298
1745
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1746
+ msgid "Bahamas"
1747
+ msgstr "البهاماس"
1748
+
1749
+ #: profile-builder-2.0/admin/manage-fields.php:299
1750
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1751
+ msgid "Bahrain"
1752
+ msgstr "البحرين"
1753
+
1754
+ #: profile-builder-2.0/admin/manage-fields.php:300
1755
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1756
+ msgid "Bangladesh"
1757
+ msgstr "بنغلاديش"
1758
+
1759
+ #: profile-builder-2.0/admin/manage-fields.php:301
1760
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1761
+ msgid "Barbados"
1762
+ msgstr "بربادوس"
1763
+
1764
+ #: profile-builder-2.0/admin/manage-fields.php:302
1765
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1766
+ msgid "Belarus"
1767
+ msgstr "بيلاروس"
1768
+
1769
+ #: profile-builder-2.0/admin/manage-fields.php:303
1770
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1771
+ msgid "Belgium"
1772
+ msgstr "البلجيك"
1773
+
1774
+ #: profile-builder-2.0/admin/manage-fields.php:304
1775
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1776
+ msgid "Belize"
1777
+ msgstr "بليز"
1778
+
1779
+ #: profile-builder-2.0/admin/manage-fields.php:305
1780
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1781
+ msgid "Benin"
1782
+ msgstr "بنين"
1783
+
1784
+ #: profile-builder-2.0/admin/manage-fields.php:306
1785
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1786
+ msgid "Bermuda"
1787
+ msgstr "برمودا"
1788
+
1789
+ #: profile-builder-2.0/admin/manage-fields.php:307
1790
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1791
+ msgid "Bhutan"
1792
+ msgstr "بوتان"
1793
+
1794
+ #: profile-builder-2.0/admin/manage-fields.php:308
1795
+ msgid "Bolivia"
1796
+ msgstr "بوليفيا"
1797
+
1798
+ #: profile-builder-2.0/admin/manage-fields.php:309
1799
+ msgid "Bonaire, Saint Eustatius and Saba"
1800
+ msgstr "بونير، سينت أوستاتيوس وسابا"
1801
+
1802
+ #: profile-builder-2.0/admin/manage-fields.php:310
1803
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1804
+ msgid "Bosnia and Herzegovina"
1805
+ msgstr "البوسنة والهرسك"
1806
+
1807
+ #: profile-builder-2.0/admin/manage-fields.php:311
1808
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1809
+ msgid "Botswana"
1810
+ msgstr "بوتسوانا"
1811
+
1812
+ #: profile-builder-2.0/admin/manage-fields.php:312
1813
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1814
+ msgid "Bouvet Island"
1815
+ msgstr "جزيرة بوفيت"
1816
+
1817
+ #: profile-builder-2.0/admin/manage-fields.php:313
1818
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1819
+ msgid "Brazil"
1820
+ msgstr "البرازيل"
1821
+
1822
+ #: profile-builder-2.0/admin/manage-fields.php:314
1823
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1824
+ msgid "British Indian Ocean Territory"
1825
+ msgstr "إقليم المحيط البريطاني الهندي"
1826
+
1827
+ #: profile-builder-2.0/admin/manage-fields.php:315
1828
+ msgid "British Virgin Islands"
1829
+ msgstr "جزر فيرجن البريطانية"
1830
+
1831
+ #: profile-builder-2.0/admin/manage-fields.php:316
1832
+ msgid "Brunei"
1833
+ msgstr "بروناي"
1834
+
1835
+ #: profile-builder-2.0/admin/manage-fields.php:317
1836
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1837
+ msgid "Bulgaria"
1838
+ msgstr "بلغاريا"
1839
+
1840
+ #: profile-builder-2.0/admin/manage-fields.php:318
1841
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1842
+ msgid "Burkina Faso"
1843
+ msgstr "بوركينا فاسو"
1844
+
1845
+ #: profile-builder-2.0/admin/manage-fields.php:319
1846
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1847
+ msgid "Burundi"
1848
+ msgstr "بوروندي"
1849
+
1850
+ #: profile-builder-2.0/admin/manage-fields.php:320
1851
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1852
+ msgid "Cambodia"
1853
+ msgstr "كمبوديا"
1854
+
1855
+ #: profile-builder-2.0/admin/manage-fields.php:321
1856
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1857
+ msgid "Cameroon"
1858
+ msgstr "الكاميرون"
1859
+
1860
+ #: profile-builder-2.0/admin/manage-fields.php:322
1861
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1862
+ msgid "Canada"
1863
+ msgstr "كندا"
1864
+
1865
+ #: profile-builder-2.0/admin/manage-fields.php:323
1866
+ msgid "Cape Verde"
1867
+ msgstr "الرأس الأخضر"
1868
+
1869
+ #: profile-builder-2.0/admin/manage-fields.php:324
1870
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1871
+ msgid "Cayman Islands"
1872
+ msgstr "جزر الكايمان"
1873
+
1874
+ #: profile-builder-2.0/admin/manage-fields.php:325
1875
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1876
+ msgid "Central African Republic"
1877
+ msgstr "جمهورية افريقيا الوسطى"
1878
+
1879
+ #: profile-builder-2.0/admin/manage-fields.php:326
1880
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1881
+ msgid "Chad"
1882
+ msgstr "تشاد"
1883
+
1884
+ #: profile-builder-2.0/admin/manage-fields.php:327
1885
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1886
+ msgid "Chile"
1887
+ msgstr "تشيلي"
1888
+
1889
+ #: profile-builder-2.0/admin/manage-fields.php:328
1890
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1891
+ msgid "China"
1892
+ msgstr "الصين"
1893
+
1894
+ #: profile-builder-2.0/admin/manage-fields.php:329
1895
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1896
+ msgid "Christmas Island"
1897
+ msgstr "جزيرة الكريسماس"
1898
+
1899
+ #: profile-builder-2.0/admin/manage-fields.php:330
1900
+ msgid "Cocos Islands"
1901
+ msgstr "جزر كوكوس"
1902
+
1903
+ #: profile-builder-2.0/admin/manage-fields.php:331
1904
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1905
+ msgid "Colombia"
1906
+ msgstr "كولومبيا"
1907
+
1908
+ #: profile-builder-2.0/admin/manage-fields.php:332
1909
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1910
+ msgid "Comoros"
1911
+ msgstr "جزر القمر"
1912
+
1913
+ #: profile-builder-2.0/admin/manage-fields.php:333
1914
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1915
+ msgid "Cook Islands"
1916
+ msgstr "جزر كوك"
1917
+
1918
+ #: profile-builder-2.0/admin/manage-fields.php:334
1919
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1920
+ msgid "Costa Rica"
1921
+ msgstr "كوستا ريكا"
1922
+
1923
+ #: profile-builder-2.0/admin/manage-fields.php:335
1924
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1925
+ msgid "Croatia"
1926
+ msgstr "كرواتيا"
1927
+
1928
+ #: profile-builder-2.0/admin/manage-fields.php:336
1929
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1930
+ msgid "Cuba"
1931
+ msgstr "كوبا"
1932
+
1933
+ #: profile-builder-2.0/admin/manage-fields.php:337
1934
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1935
+ msgid "Curacao"
1936
+ msgstr "كوراكاو"
1937
+
1938
+ #: profile-builder-2.0/admin/manage-fields.php:338
1939
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1940
+ msgid "Cyprus"
1941
+ msgstr "قبرص"
1942
+
1943
+ #: profile-builder-2.0/admin/manage-fields.php:339
1944
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1945
+ msgid "Czech Republic"
1946
+ msgstr "جمهورية التشيك"
1947
+
1948
+ #: profile-builder-2.0/admin/manage-fields.php:340
1949
+ msgid "Democratic Republic of the Congo"
1950
+ msgstr "جمهورية الكونغو الديموقراطية"
1951
+
1952
+ #: profile-builder-2.0/admin/manage-fields.php:341
1953
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1954
+ msgid "Denmark"
1955
+ msgstr "الدنمارك"
1956
+
1957
+ #: profile-builder-2.0/admin/manage-fields.php:342
1958
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1959
+ msgid "Djibouti"
1960
+ msgstr "جيبوتي"
1961
+
1962
+ #: profile-builder-2.0/admin/manage-fields.php:343
1963
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1964
+ msgid "Dominica"
1965
+ msgstr "دومينيكا"
1966
+
1967
+ #: profile-builder-2.0/admin/manage-fields.php:344
1968
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1969
+ msgid "Dominican Republic"
1970
+ msgstr "جمهورية الدومنيكان"
1971
+
1972
+ #: profile-builder-2.0/admin/manage-fields.php:345
1973
+ msgid "East Timor"
1974
+ msgstr "تيمور الشرقية"
1975
+
1976
+ #: profile-builder-2.0/admin/manage-fields.php:346
1977
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1978
+ msgid "Ecuador"
1979
+ msgstr "إكوادور"
1980
+
1981
+ #: profile-builder-2.0/admin/manage-fields.php:347
1982
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1983
+ msgid "Egypt"
1984
+ msgstr "مصر"
1985
+
1986
+ #: profile-builder-2.0/admin/manage-fields.php:348
1987
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1988
+ msgid "El Salvador"
1989
+ msgstr "السلفادور"
1990
+
1991
+ #: profile-builder-2.0/admin/manage-fields.php:349
1992
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1993
+ msgid "Equatorial Guinea"
1994
+ msgstr "غينيا الإستوائية"
1995
+
1996
+ #: profile-builder-2.0/admin/manage-fields.php:350
1997
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1998
+ msgid "Eritrea"
1999
+ msgstr "إريتريا"
2000
+
2001
+ #: profile-builder-2.0/admin/manage-fields.php:351
2002
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2003
+ msgid "Estonia"
2004
+ msgstr "إستونيا"
2005
+
2006
+ #: profile-builder-2.0/admin/manage-fields.php:352
2007
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2008
+ msgid "Ethiopia"
2009
+ msgstr "إثيوبيا"
2010
+
2011
+ #: profile-builder-2.0/admin/manage-fields.php:353
2012
+ msgid "Falkland Islands"
2013
+ msgstr "جزر فوكلاند"
2014
+
2015
+ #: profile-builder-2.0/admin/manage-fields.php:354
2016
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2017
+ msgid "Faroe Islands"
2018
+ msgstr "جزر صناعية"
2019
+
2020
+ #: profile-builder-2.0/admin/manage-fields.php:355
2021
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2022
+ msgid "Fiji"
2023
+ msgstr "فيجي"
2024
+
2025
+ #: profile-builder-2.0/admin/manage-fields.php:356
2026
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2027
+ msgid "Finland"
2028
+ msgstr "فنلندا"
2029
+
2030
+ #: profile-builder-2.0/admin/manage-fields.php:357
2031
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2032
+ msgid "France"
2033
+ msgstr "فرنسا"
2034
+
2035
+ #: profile-builder-2.0/admin/manage-fields.php:358
2036
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2037
+ msgid "French Guiana"
2038
+ msgstr "غيانا الفرنسية"
2039
+
2040
+ #: profile-builder-2.0/admin/manage-fields.php:359
2041
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2042
+ msgid "French Polynesia"
2043
+ msgstr "بولينيزيا الفرنسية"
2044
+
2045
+ #: profile-builder-2.0/admin/manage-fields.php:360
2046
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2047
+ msgid "French Southern Territories"
2048
+ msgstr "المناطق الجنوبية لفرنسا"
2049
+
2050
+ #: profile-builder-2.0/admin/manage-fields.php:361
2051
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2052
+ msgid "Gabon"
2053
+ msgstr "الغابون"
2054
+
2055
+ #: profile-builder-2.0/admin/manage-fields.php:362
2056
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2057
+ msgid "Gambia"
2058
+ msgstr "غامبيا"
2059
+
2060
+ #: profile-builder-2.0/admin/manage-fields.php:363
2061
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
+ msgid "Georgia"
2063
+ msgstr "جورجيا"
2064
+
2065
+ #: profile-builder-2.0/admin/manage-fields.php:364
2066
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2067
+ msgid "Germany"
2068
+ msgstr "ألمانيا"
2069
+
2070
+ #: profile-builder-2.0/admin/manage-fields.php:365
2071
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2072
+ msgid "Ghana"
2073
+ msgstr "غانا"
2074
+
2075
+ #: profile-builder-2.0/admin/manage-fields.php:366
2076
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
+ msgid "Gibraltar"
2078
+ msgstr "جبل طارق"
2079
+
2080
+ #: profile-builder-2.0/admin/manage-fields.php:367
2081
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
+ msgid "Greece"
2083
+ msgstr "اليونان"
2084
+
2085
+ #: profile-builder-2.0/admin/manage-fields.php:368
2086
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
+ msgid "Greenland"
2088
+ msgstr "الأرض الخضراء"
2089
+
2090
+ #: profile-builder-2.0/admin/manage-fields.php:369
2091
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
+ msgid "Grenada"
2093
+ msgstr "غرناطة"
2094
+
2095
+ #: profile-builder-2.0/admin/manage-fields.php:370
2096
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2097
+ msgid "Guadeloupe"
2098
+ msgstr "جوادلوب"
2099
+
2100
+ #: profile-builder-2.0/admin/manage-fields.php:371
2101
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2102
+ msgid "Guam"
2103
+ msgstr "غوام"
2104
+
2105
+ #: profile-builder-2.0/admin/manage-fields.php:372
2106
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2107
+ msgid "Guatemala"
2108
+ msgstr "غواتيمالا"
2109
+
2110
+ #: profile-builder-2.0/admin/manage-fields.php:373
2111
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2112
+ msgid "Guernsey"
2113
+ msgstr "غيرنسي"
2114
+
2115
+ #: profile-builder-2.0/admin/manage-fields.php:374
2116
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2117
+ msgid "Guinea"
2118
+ msgstr "غينيا"
2119
+
2120
+ #: profile-builder-2.0/admin/manage-fields.php:375
2121
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2122
+ msgid "Guinea-Bissau"
2123
+ msgstr "غينيا بيساو"
2124
+
2125
+ #: profile-builder-2.0/admin/manage-fields.php:376
2126
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2127
+ msgid "Guyana"
2128
+ msgstr "غيانا"
2129
+
2130
+ #: profile-builder-2.0/admin/manage-fields.php:377
2131
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2132
+ msgid "Haiti"
2133
+ msgstr "هايتي"
2134
+
2135
+ #: profile-builder-2.0/admin/manage-fields.php:378
2136
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2137
+ msgid "Heard Island and McDonald Islands"
2138
+ msgstr "جزيرة هيرد وجزر ماكدونالد"
2139
+
2140
+ #: profile-builder-2.0/admin/manage-fields.php:379
2141
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2142
+ msgid "Honduras"
2143
+ msgstr "هندوراس"
2144
+
2145
+ #: profile-builder-2.0/admin/manage-fields.php:380
2146
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2147
+ msgid "Hong Kong"
2148
+ msgstr "هونج كونج"
2149
+
2150
+ #: profile-builder-2.0/admin/manage-fields.php:381
2151
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2152
+ msgid "Hungary"
2153
+ msgstr "هنغاريا"
2154
+
2155
+ #: profile-builder-2.0/admin/manage-fields.php:382
2156
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2157
+ msgid "Iceland"
2158
+ msgstr "آيسلندا"
2159
+
2160
+ #: profile-builder-2.0/admin/manage-fields.php:383
2161
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2162
+ msgid "India"
2163
+ msgstr "الهند"
2164
+
2165
+ #: profile-builder-2.0/admin/manage-fields.php:384
2166
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2167
+ msgid "Indonesia"
2168
+ msgstr "إندونيسيا"
2169
+
2170
+ #: profile-builder-2.0/admin/manage-fields.php:385
2171
+ msgid "Iran"
2172
+ msgstr "إيران"
2173
+
2174
+ #: profile-builder-2.0/admin/manage-fields.php:386
2175
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2176
+ msgid "Iraq"
2177
+ msgstr "العراق"
2178
+
2179
+ #: profile-builder-2.0/admin/manage-fields.php:387
2180
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2181
+ msgid "Ireland"
2182
+ msgstr "إيرلندا"
2183
+
2184
+ #: profile-builder-2.0/admin/manage-fields.php:388
2185
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2186
+ msgid "Isle of Man"
2187
+ msgstr "جزيرة آيل أوف مان"
2188
+
2189
+ #: profile-builder-2.0/admin/manage-fields.php:389
2190
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2191
+ msgid "Israel"
2192
+ msgstr "الكيان الصهيوني"
2193
+
2194
+ #: profile-builder-2.0/admin/manage-fields.php:390
2195
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2196
+ msgid "Italy"
2197
+ msgstr "إيطاليا"
2198
+
2199
+ #: profile-builder-2.0/admin/manage-fields.php:391
2200
+ msgid "Ivory Coast"
2201
+ msgstr "ساحل العاج"
2202
+
2203
+ #: profile-builder-2.0/admin/manage-fields.php:392
2204
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2205
+ msgid "Jamaica"
2206
+ msgstr "جامايكا"
2207
+
2208
+ #: profile-builder-2.0/admin/manage-fields.php:393
2209
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2210
+ msgid "Japan"
2211
+ msgstr "اليابان"
2212
+
2213
+ #: profile-builder-2.0/admin/manage-fields.php:394
2214
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2215
+ msgid "Jersey"
2216
+ msgstr "جيرسي"
2217
+
2218
+ #: profile-builder-2.0/admin/manage-fields.php:395
2219
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2220
+ msgid "Jordan"
2221
+ msgstr "الأردن"
2222
+
2223
+ #: profile-builder-2.0/admin/manage-fields.php:396
2224
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2225
+ msgid "Kazakhstan"
2226
+ msgstr "كازاخستان"
2227
+
2228
+ #: profile-builder-2.0/admin/manage-fields.php:397
2229
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2230
+ msgid "Kenya"
2231
+ msgstr "كينيا"
2232
+
2233
+ #: profile-builder-2.0/admin/manage-fields.php:398
2234
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2235
+ msgid "Kiribati"
2236
+ msgstr "كيريباس"
2237
+
2238
+ #: profile-builder-2.0/admin/manage-fields.php:399
2239
+ msgid "Kosovo"
2240
+ msgstr "كوسوفو"
2241
+
2242
+ #: profile-builder-2.0/admin/manage-fields.php:400
2243
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2244
+ msgid "Kuwait"
2245
+ msgstr "الكويت"
2246
+
2247
+ #: profile-builder-2.0/admin/manage-fields.php:401
2248
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2249
+ msgid "Kyrgyzstan"
2250
+ msgstr "كرغيزستان"
2251
+
2252
+ #: profile-builder-2.0/admin/manage-fields.php:402
2253
+ msgid "Laos"
2254
+ msgstr "لاوس"
2255
+
2256
+ #: profile-builder-2.0/admin/manage-fields.php:403
2257
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2258
+ msgid "Latvia"
2259
+ msgstr "لاتفيا"
2260
+
2261
+ #: profile-builder-2.0/admin/manage-fields.php:404
2262
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2263
+ msgid "Lebanon"
2264
+ msgstr "لبنان"
2265
+
2266
+ #: profile-builder-2.0/admin/manage-fields.php:405
2267
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2268
+ msgid "Lesotho"
2269
+ msgstr "ليسوتو"
2270
+
2271
+ #: profile-builder-2.0/admin/manage-fields.php:406
2272
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2273
+ msgid "Liberia"
2274
+ msgstr "ليبيريا"
2275
+
2276
+ #: profile-builder-2.0/admin/manage-fields.php:407
2277
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2278
+ msgid "Libya"
2279
+ msgstr "ليبيا"
2280
+
2281
+ #: profile-builder-2.0/admin/manage-fields.php:408
2282
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2283
+ msgid "Liechtenstein"
2284
+ msgstr "ليختنشتاين"
2285
+
2286
+ #: profile-builder-2.0/admin/manage-fields.php:409
2287
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2288
+ msgid "Lithuania"
2289
+ msgstr "ليتوانيا"
2290
+
2291
+ #: profile-builder-2.0/admin/manage-fields.php:410
2292
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2293
+ msgid "Luxembourg"
2294
+ msgstr "لوكسمبورغ"
2295
+
2296
+ #: profile-builder-2.0/admin/manage-fields.php:411
2297
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2298
+ msgid "Macao"
2299
+ msgstr "ماكاو"
2300
+
2301
+ #: profile-builder-2.0/admin/manage-fields.php:412
2302
+ msgid "Macedonia"
2303
+ msgstr "مقدونيا"
2304
+
2305
+ #: profile-builder-2.0/admin/manage-fields.php:413
2306
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2307
+ msgid "Madagascar"
2308
+ msgstr "مدغشقر"
2309
+
2310
+ #: profile-builder-2.0/admin/manage-fields.php:414
2311
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2312
+ msgid "Malawi"
2313
+ msgstr "ملاوي"
2314
+
2315
+ #: profile-builder-2.0/admin/manage-fields.php:415
2316
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2317
+ msgid "Malaysia"
2318
+ msgstr "ماليزيا"
2319
+
2320
+ #: profile-builder-2.0/admin/manage-fields.php:416
2321
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2322
+ msgid "Maldives"
2323
+ msgstr "المالديف"
2324
+
2325
+ #: profile-builder-2.0/admin/manage-fields.php:417
2326
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2327
+ msgid "Mali"
2328
+ msgstr "مالي"
2329
+
2330
+ #: profile-builder-2.0/admin/manage-fields.php:418
2331
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2332
+ msgid "Malta"
2333
+ msgstr "مالطا"
2334
+
2335
+ #: profile-builder-2.0/admin/manage-fields.php:419
2336
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2337
+ msgid "Marshall Islands"
2338
+ msgstr "جزر مارشال"
2339
+
2340
+ #: profile-builder-2.0/admin/manage-fields.php:420
2341
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2342
+ msgid "Martinique"
2343
+ msgstr "مارتينيك"
2344
+
2345
+ #: profile-builder-2.0/admin/manage-fields.php:421
2346
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2347
+ msgid "Mauritania"
2348
+ msgstr "موريتانيا"
2349
+
2350
+ #: profile-builder-2.0/admin/manage-fields.php:422
2351
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2352
+ msgid "Mauritius"
2353
+ msgstr "موريشيوس"
2354
+
2355
+ #: profile-builder-2.0/admin/manage-fields.php:423
2356
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2357
+ msgid "Mayotte"
2358
+ msgstr "مايوت"
2359
+
2360
+ #: profile-builder-2.0/admin/manage-fields.php:424
2361
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2362
+ msgid "Mexico"
2363
+ msgstr "المكسيك"
2364
+
2365
+ #: profile-builder-2.0/admin/manage-fields.php:425
2366
+ msgid "Micronesia"
2367
+ msgstr "ميكرونيزيا"
2368
+
2369
+ #: profile-builder-2.0/admin/manage-fields.php:426
2370
+ msgid "Moldova"
2371
+ msgstr "مولدوفا"
2372
+
2373
+ #: profile-builder-2.0/admin/manage-fields.php:427
2374
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2375
+ msgid "Monaco"
2376
+ msgstr "موناكو"
2377
+
2378
+ #: profile-builder-2.0/admin/manage-fields.php:428
2379
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2380
+ msgid "Mongolia"
2381
+ msgstr "منغوليا"
2382
+
2383
+ #: profile-builder-2.0/admin/manage-fields.php:429
2384
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
+ msgid "Montenegro"
2386
+ msgstr "مونتنيغرو"
2387
+
2388
+ #: profile-builder-2.0/admin/manage-fields.php:430
2389
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2390
+ msgid "Montserrat"
2391
+ msgstr "مونتسيرات"
2392
+
2393
+ #: profile-builder-2.0/admin/manage-fields.php:431
2394
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2395
+ msgid "Morocco"
2396
+ msgstr "المغرب"
2397
+
2398
+ #: profile-builder-2.0/admin/manage-fields.php:432
2399
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2400
+ msgid "Mozambique"
2401
+ msgstr "موزمبيق"
2402
+
2403
+ #: profile-builder-2.0/admin/manage-fields.php:433
2404
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2405
+ msgid "Myanmar"
2406
+ msgstr "ميانمار"
2407
+
2408
+ #: profile-builder-2.0/admin/manage-fields.php:434
2409
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2410
+ msgid "Namibia"
2411
+ msgstr "ناميبيا"
2412
+
2413
+ #: profile-builder-2.0/admin/manage-fields.php:435
2414
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2415
+ msgid "Nauru"
2416
+ msgstr "ناورو"
2417
+
2418
+ #: profile-builder-2.0/admin/manage-fields.php:436
2419
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2420
+ msgid "Nepal"
2421
+ msgstr "نيبال"
2422
+
2423
+ #: profile-builder-2.0/admin/manage-fields.php:437
2424
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2425
+ msgid "Netherlands"
2426
+ msgstr "هولندا"
2427
+
2428
+ #: profile-builder-2.0/admin/manage-fields.php:438
2429
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2430
+ msgid "New Caledonia"
2431
+ msgstr "كاليدونيا الجديدة"
2432
+
2433
+ #: profile-builder-2.0/admin/manage-fields.php:439
2434
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2435
+ msgid "New Zealand"
2436
+ msgstr "نيوزيلندا"
2437
+
2438
+ #: profile-builder-2.0/admin/manage-fields.php:440
2439
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2440
+ msgid "Nicaragua"
2441
+ msgstr "نيكاراغوا"
2442
+
2443
+ #: profile-builder-2.0/admin/manage-fields.php:441
2444
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2445
+ msgid "Niger"
2446
+ msgstr "النيجر"
2447
+
2448
+ #: profile-builder-2.0/admin/manage-fields.php:442
2449
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2450
+ msgid "Nigeria"
2451
+ msgstr "نيجيريا"
2452
+
2453
+ #: profile-builder-2.0/admin/manage-fields.php:443
2454
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2455
+ msgid "Niue"
2456
+ msgstr "نيوي"
2457
+
2458
+ #: profile-builder-2.0/admin/manage-fields.php:444
2459
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2460
+ msgid "Norfolk Island"
2461
+ msgstr "جزيرة نورفولك"
2462
+
2463
+ #: profile-builder-2.0/admin/manage-fields.php:445
2464
+ msgid "North Korea"
2465
+ msgstr "كوريا الشمالية"
2466
+
2467
+ #: profile-builder-2.0/admin/manage-fields.php:446
2468
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2469
+ msgid "Northern Mariana Islands"
2470
+ msgstr "جزر مريانا الشمالية"
2471
+
2472
+ #: profile-builder-2.0/admin/manage-fields.php:447
2473
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2474
+ msgid "Norway"
2475
+ msgstr "النرويج"
2476
+
2477
+ #: profile-builder-2.0/admin/manage-fields.php:448
2478
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2479
+ msgid "Oman"
2480
+ msgstr "عمان"
2481
+
2482
+ #: profile-builder-2.0/admin/manage-fields.php:449
2483
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2484
+ msgid "Pakistan"
2485
+ msgstr "باكستان"
2486
+
2487
+ #: profile-builder-2.0/admin/manage-fields.php:450
2488
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2489
+ msgid "Palau"
2490
+ msgstr "بالاو"
2491
+
2492
+ #: profile-builder-2.0/admin/manage-fields.php:451
2493
+ msgid "Palestinian Territory"
2494
+ msgstr "فلسطين"
2495
+
2496
+ #: profile-builder-2.0/admin/manage-fields.php:452
2497
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2498
+ msgid "Panama"
2499
+ msgstr "بنما"
2500
+
2501
+ #: profile-builder-2.0/admin/manage-fields.php:453
2502
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2503
+ msgid "Papua New Guinea"
2504
+ msgstr "بابوا غينيا الجديدة"
2505
+
2506
+ #: profile-builder-2.0/admin/manage-fields.php:454
2507
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2508
+ msgid "Paraguay"
2509
+ msgstr "باراغواي"
2510
+
2511
+ #: profile-builder-2.0/admin/manage-fields.php:455
2512
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2513
+ msgid "Peru"
2514
+ msgstr "بيرو"
2515
+
2516
+ #: profile-builder-2.0/admin/manage-fields.php:456
2517
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2518
+ msgid "Philippines"
2519
+ msgstr "الفلبين"
2520
+
2521
+ #: profile-builder-2.0/admin/manage-fields.php:457
2522
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2523
+ msgid "Pitcairn"
2524
+ msgstr "بيتكيرن"
2525
+
2526
+ #: profile-builder-2.0/admin/manage-fields.php:458
2527
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2528
+ msgid "Poland"
2529
+ msgstr "بولندا"
2530
+
2531
+ #: profile-builder-2.0/admin/manage-fields.php:459
2532
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2533
+ msgid "Portugal"
2534
+ msgstr "البرتغال"
2535
+
2536
+ #: profile-builder-2.0/admin/manage-fields.php:460
2537
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2538
+ msgid "Puerto Rico"
2539
+ msgstr "بورتوريكو"
2540
+
2541
+ #: profile-builder-2.0/admin/manage-fields.php:461
2542
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2543
+ msgid "Qatar"
2544
+ msgstr "قطر"
2545
+
2546
+ #: profile-builder-2.0/admin/manage-fields.php:462
2547
+ msgid "Republic of the Congo"
2548
+ msgstr "جمهورية الكونغو"
2549
+
2550
+ #: profile-builder-2.0/admin/manage-fields.php:463
2551
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2552
+ msgid "Reunion"
2553
+ msgstr "جمع شمل"
2554
+
2555
+ #: profile-builder-2.0/admin/manage-fields.php:464
2556
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2557
+ msgid "Romania"
2558
+ msgstr "رومانيا"
2559
+
2560
+ #: profile-builder-2.0/admin/manage-fields.php:465
2561
+ msgid "Russia"
2562
+ msgstr "روسيا"
2563
+
2564
+ #: profile-builder-2.0/admin/manage-fields.php:466
2565
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2566
+ msgid "Rwanda"
2567
+ msgstr "رواندا"
2568
+
2569
+ #: profile-builder-2.0/admin/manage-fields.php:467
2570
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2571
+ msgid "Saint Barthelemy"
2572
+ msgstr "سانت بارتيليمي"
2573
+
2574
+ #: profile-builder-2.0/admin/manage-fields.php:468
2575
+ msgid "Saint Helena"
2576
+ msgstr "سانت هيلانة"
2577
+
2578
+ #: profile-builder-2.0/admin/manage-fields.php:469
2579
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2580
+ msgid "Saint Kitts and Nevis"
2581
+ msgstr "سانت كيتس ونيفيس"
2582
+
2583
+ #: profile-builder-2.0/admin/manage-fields.php:470
2584
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2585
+ msgid "Saint Lucia"
2586
+ msgstr "القديسة لوسيا"
2587
+
2588
+ #: profile-builder-2.0/admin/manage-fields.php:471
2589
+ msgid "Saint Martin"
2590
+ msgstr "القديس مارتن"
2591
+
2592
+ #: profile-builder-2.0/admin/manage-fields.php:472
2593
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2594
+ msgid "Saint Pierre and Miquelon"
2595
+ msgstr "سانت بيير وميكلون"
2596
+
2597
+ #: profile-builder-2.0/admin/manage-fields.php:473
2598
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2599
+ msgid "Saint Vincent and the Grenadines"
2600
+ msgstr "سانت فنسنت وجزر غرينادين"
2601
+
2602
+ #: profile-builder-2.0/admin/manage-fields.php:474
2603
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2604
+ msgid "Samoa"
2605
+ msgstr "ساموا"
2606
+
2607
+ #: profile-builder-2.0/admin/manage-fields.php:475
2608
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2609
+ msgid "San Marino"
2610
+ msgstr "سان مارينو"
2611
+
2612
+ #: profile-builder-2.0/admin/manage-fields.php:476
2613
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2614
+ msgid "Sao Tome and Principe"
2615
+ msgstr "ساو تومي وبرينسيبي"
2616
+
2617
+ #: profile-builder-2.0/admin/manage-fields.php:477
2618
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2619
+ msgid "Saudi Arabia"
2620
+ msgstr "المملكة العربية السعودية"
2621
+
2622
+ #: profile-builder-2.0/admin/manage-fields.php:478
2623
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2624
+ msgid "Senegal"
2625
+ msgstr "السنغال"
2626
+
2627
+ #: profile-builder-2.0/admin/manage-fields.php:479
2628
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2629
+ msgid "Serbia"
2630
+ msgstr "صربيا"
2631
+
2632
+ #: profile-builder-2.0/admin/manage-fields.php:480
2633
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2634
+ msgid "Seychelles"
2635
+ msgstr "سيشيل"
2636
+
2637
+ #: profile-builder-2.0/admin/manage-fields.php:481
2638
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2639
+ msgid "Sierra Leone"
2640
+ msgstr "سيراليون"
2641
+
2642
+ #: profile-builder-2.0/admin/manage-fields.php:482
2643
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2644
+ msgid "Singapore"
2645
+ msgstr "سنغافورة"
2646
+
2647
+ #: profile-builder-2.0/admin/manage-fields.php:483
2648
+ msgid "Sint Maarten"
2649
+ msgstr "سانت مارتن"
2650
+
2651
+ #: profile-builder-2.0/admin/manage-fields.php:484
2652
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2653
+ msgid "Slovakia"
2654
+ msgstr "سلوفاكيا"
2655
+
2656
+ #: profile-builder-2.0/admin/manage-fields.php:485
2657
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2658
+ msgid "Slovenia"
2659
+ msgstr "سلوفينيا"
2660
+
2661
+ #: profile-builder-2.0/admin/manage-fields.php:486
2662
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2663
+ msgid "Solomon Islands"
2664
+ msgstr "جزر سليمان"
2665
+
2666
+ #: profile-builder-2.0/admin/manage-fields.php:487
2667
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2668
+ msgid "Somalia"
2669
+ msgstr "الصومال"
2670
+
2671
+ #: profile-builder-2.0/admin/manage-fields.php:488
2672
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2673
+ msgid "South Africa"
2674
+ msgstr "جنوب أفريقيا"
2675
+
2676
+ #: profile-builder-2.0/admin/manage-fields.php:489
2677
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2678
+ msgid "South Georgia and the South Sandwich Islands"
2679
+ msgstr "جورجيا الجنوبية وجزر ساندويتش الجنوبية"
2680
+
2681
+ #: profile-builder-2.0/admin/manage-fields.php:490
2682
+ msgid "South Korea"
2683
+ msgstr "كوريا الجنوبية"
2684
+
2685
+ #: profile-builder-2.0/admin/manage-fields.php:491
2686
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2687
+ msgid "South Sudan"
2688
+ msgstr "جنوب السودان"
2689
+
2690
+ #: profile-builder-2.0/admin/manage-fields.php:492
2691
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2692
+ msgid "Spain"
2693
+ msgstr "إسبانيا"
2694
+
2695
+ #: profile-builder-2.0/admin/manage-fields.php:493
2696
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2697
+ msgid "Sri Lanka"
2698
+ msgstr "سريلانكا"
2699
+
2700
+ #: profile-builder-2.0/admin/manage-fields.php:494
2701
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2702
+ msgid "Sudan"
2703
+ msgstr "السودان"
2704
+
2705
+ #: profile-builder-2.0/admin/manage-fields.php:495
2706
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2707
+ msgid "Suriname"
2708
+ msgstr "سورينام"
2709
+
2710
+ #: profile-builder-2.0/admin/manage-fields.php:496
2711
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2712
+ msgid "Svalbard and Jan Mayen"
2713
+ msgstr "سفالبارد وجان ماين"
2714
+
2715
+ #: profile-builder-2.0/admin/manage-fields.php:497
2716
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2717
+ msgid "Swaziland"
2718
+ msgstr "سوازيلاند"
2719
+
2720
+ #: profile-builder-2.0/admin/manage-fields.php:498
2721
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2722
+ msgid "Sweden"
2723
+ msgstr "السويد"
2724
+
2725
+ #: profile-builder-2.0/admin/manage-fields.php:499
2726
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2727
+ msgid "Switzerland"
2728
+ msgstr "سويسرا"
2729
+
2730
+ #: profile-builder-2.0/admin/manage-fields.php:500
2731
+ msgid "Syria"
2732
+ msgstr "سوريا"
2733
+
2734
+ #: profile-builder-2.0/admin/manage-fields.php:501
2735
+ msgid "Taiwan"
2736
+ msgstr "تايوان"
2737
+
2738
+ #: profile-builder-2.0/admin/manage-fields.php:502
2739
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2740
+ msgid "Tajikistan"
2741
+ msgstr "طاجاكستان"
2742
+
2743
+ #: profile-builder-2.0/admin/manage-fields.php:503
2744
+ msgid "Tanzania"
2745
+ msgstr "تنزانيا"
2746
+
2747
+ #: profile-builder-2.0/admin/manage-fields.php:504
2748
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2749
+ msgid "Thailand"
2750
+ msgstr "تايلند"
2751
+
2752
+ #: profile-builder-2.0/admin/manage-fields.php:505
2753
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2754
+ msgid "Togo"
2755
+ msgstr "توغو"
2756
+
2757
+ #: profile-builder-2.0/admin/manage-fields.php:506
2758
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2759
+ msgid "Tokelau"
2760
+ msgstr "توكيلاو"
2761
+
2762
+ #: profile-builder-2.0/admin/manage-fields.php:507
2763
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2764
+ msgid "Tonga"
2765
+ msgstr "تونغا"
2766
+
2767
+ #: profile-builder-2.0/admin/manage-fields.php:508
2768
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2769
+ msgid "Trinidad and Tobago"
2770
+ msgstr "ترينداد وتوباغو"
2771
+
2772
+ #: profile-builder-2.0/admin/manage-fields.php:509
2773
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2774
+ msgid "Tunisia"
2775
+ msgstr "تونس"
2776
+
2777
+ #: profile-builder-2.0/admin/manage-fields.php:510
2778
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2779
+ msgid "Turkey"
2780
+ msgstr "تركيا"
2781
+
2782
+ #: profile-builder-2.0/admin/manage-fields.php:511
2783
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2784
+ msgid "Turkmenistan"
2785
+ msgstr "تركمانستان"
2786
+
2787
+ #: profile-builder-2.0/admin/manage-fields.php:512
2788
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2789
+ msgid "Turks and Caicos Islands"
2790
+ msgstr "جزر تركس وكايكوس"
2791
+
2792
+ #: profile-builder-2.0/admin/manage-fields.php:513
2793
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2794
+ msgid "Tuvalu"
2795
+ msgstr "توفالو"
2796
+
2797
+ #: profile-builder-2.0/admin/manage-fields.php:514
2798
+ msgid "U.S. Virgin Islands"
2799
+ msgstr "جزر فيرجن الأمريكية"
2800
+
2801
+ #: profile-builder-2.0/admin/manage-fields.php:515
2802
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2803
+ msgid "Uganda"
2804
+ msgstr "أوغندا"
2805
+
2806
+ #: profile-builder-2.0/admin/manage-fields.php:516
2807
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2808
+ msgid "Ukraine"
2809
+ msgstr "أوكرانيا"
2810
+
2811
+ #: profile-builder-2.0/admin/manage-fields.php:517
2812
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2813
+ msgid "United Arab Emirates"
2814
+ msgstr "الإمارات العربية المتحدة"
2815
+
2816
+ #: profile-builder-2.0/admin/manage-fields.php:518
2817
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2818
+ msgid "United Kingdom"
2819
+ msgstr "المملكة المتحدة"
2820
+
2821
+ #: profile-builder-2.0/admin/manage-fields.php:519
2822
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2823
+ msgid "United States"
2824
+ msgstr "الولايات المتحدة الأمريكية"
2825
+
2826
+ #: profile-builder-2.0/admin/manage-fields.php:520
2827
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2828
+ msgid "United States Minor Outlying Islands"
2829
+ msgstr "جزر الولايات المتحدة البعيدة الصغرى"
2830
+
2831
+ #: profile-builder-2.0/admin/manage-fields.php:521
2832
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2833
+ msgid "Uruguay"
2834
+ msgstr "أوروغواي"
2835
+
2836
+ #: profile-builder-2.0/admin/manage-fields.php:522
2837
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2838
+ msgid "Uzbekistan"
2839
+ msgstr "أوزبكستان"
2840
+
2841
+ #: profile-builder-2.0/admin/manage-fields.php:523
2842
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2843
+ msgid "Vanuatu"
2844
+ msgstr "فانواتو"
2845
+
2846
+ #: profile-builder-2.0/admin/manage-fields.php:524
2847
+ msgid "Vatican"
2848
+ msgstr "فاتيكان"
2849
+
2850
+ #: profile-builder-2.0/admin/manage-fields.php:525
2851
+ msgid "Venezuela"
2852
+ msgstr "فنزويلا"
2853
+
2854
+ #: profile-builder-2.0/admin/manage-fields.php:526
2855
+ msgid "Vietnam"
2856
+ msgstr "فيتنام"
2857
+
2858
+ #: profile-builder-2.0/admin/manage-fields.php:527
2859
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2860
+ msgid "Wallis and Futuna"
2861
+ msgstr "واليس وفوتونا"
2862
+
2863
+ #: profile-builder-2.0/admin/manage-fields.php:528
2864
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2865
+ msgid "Western Sahara"
2866
+ msgstr "الصحراء الغربية"
2867
+
2868
+ #: profile-builder-2.0/admin/manage-fields.php:529
2869
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2870
+ msgid "Yemen"
2871
+ msgstr "اليمن"
2872
+
2873
+ #: profile-builder-2.0/admin/manage-fields.php:530
2874
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2875
+ msgid "Zambia"
2876
+ msgstr "زامبيا"
2877
+
2878
+ #: profile-builder-2.0/admin/manage-fields.php:531
2879
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2880
+ msgid "Zimbabwe"
2881
+ msgstr "زمبابوي"
2882
+
2883
+ #: profile-builder-2.0/admin/manage-fields.php:1219
2884
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2885
+ msgstr "مع Profile Builder Pro v2 يمكنك عرض حقول مختلفة في تسجيل وتعديل نماذج الملف الشخصي، وذلك باستخدام نماذج الوحدة النمطية المتعددة تسجيل وتحرير ملف ."
2886
+
2887
+ #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
2888
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2889
+ msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من تسجيل الدخول."
2890
+
2891
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
2892
+ msgid "Your account has been successfully created!"
2893
+ msgstr "تم إنشاء حسابك بنجاح!"
2894
+
2895
+ #: profile-builder-2.0/features/functions.php:678
2896
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
2897
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
2898
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2899
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
2900
+ msgid "Please enter a (valid) reCAPTCHA value"
2901
+ msgstr "الرجاء إدخال قيمة ريكابتشا (صالحة)"
2902
+
2903
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2904
+ msgid "Click the BACK button on your browser, and try again."
2905
+ msgstr "انقر على زر الرجوع في المتصفح، ثم أعد المحاولة."
2906
+
2907
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2908
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2909
+ msgid "Sorry, you cannot upload this file type for this field."
2910
+ msgstr "عذرا، لا يمكنك تحميل هذا النوع من الملفات لهذا الحقل."
2911
+
2912
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2913
+ msgid "An error occurred, please try again later."
2914
+ msgstr "لقد حدث خطأ، رجاء أعد المحاولة لاحقا."
2915
+
2916
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:282
2917
+ msgid "More"
2918
+ msgstr "المزيد"
2919
+
2920
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:376
2921
+ msgid "You do not have permission to view this user list."
2922
+ msgstr "ليس لديك الصلاحيات لعرض قائمة المستخدمين هذه."
2923
+
2924
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:389
2925
+ msgid "You do not have the required user role to view this user list."
2926
+ msgstr "ليس لديك دور المستخدم المطلوب لعرض قائمة المستخدمين هذه."
2927
+
2928
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
2929
+ msgid "Ascending"
2930
+ msgstr "تصاعدي"
2931
+
2932
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
2933
+ msgid "Descending"
2934
+ msgstr "تنازلي"
2935
+
2936
+ #: profile-builder-2.0/admin/add-ons.php:148
2937
+ #: profile-builder-2.0/admin/add-ons.php:248
2938
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2939
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2940
+ msgid "Download Now"
2941
+ msgstr "تحميل الآن"
2942
+
2943
+ #: profile-builder-2.0/admin/admin-functions.php:200
2944
+ msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
2945
+ msgstr "إذا كنت تستمتع باستخدام <strong> %1$s </ strong> فالرجاء <a href=\"%2$s\" target=\"_blank\"> تقييمنا على WordPress.org </a>. المزيد من المستخدمين السعداء يعني المزيد من الميزات، مشاكل أقل ودعم أفضل للجميع."
2946
+
2947
+ #: profile-builder-2.0/admin/manage-fields.php:82
2948
+ msgid "Choose one of the supported field types"
2949
+ msgstr "اختر أحد أنواع الحقول المدعومة"
2950
+
2951
+ #: profile-builder-2.0/admin/manage-fields.php:84
2952
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2953
+ msgstr ". تتوفر أنواع الحقول الإضافية في <a href=\"%s\"> إصدارات Hobbyist أو PRO</a>."
2954
+
2955
+ #: profile-builder-2.0/admin/manage-fields.php:131
2956
+ msgid "Site Key"
2957
+ msgstr "مفتاح الموقع"
2958
+
2959
+ #: profile-builder-2.0/admin/manage-fields.php:131
2960
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2961
+ msgstr "مفتاح الموقع من Google، <a href=\"http://www.google.com/recaptcha\" target=\"_blank\"> www.google.com/recaptcha </a>"
2962
+
2963
+ #: profile-builder-2.0/admin/manage-fields.php:132
2964
+ msgid "Secret Key"
2965
+ msgstr "المفتاح السري"
2966
+
2967
+ #: profile-builder-2.0/admin/manage-fields.php:132
2968
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2969
+ msgstr "المفتاح السري من Google، <a href=\"http://www.google.com/recaptcha\" target=\"_blank\"> www.google.com/recaptcha </a>"
2970
+
2971
+ #: profile-builder-2.0/admin/manage-fields.php:1023
2972
+ msgid "You must enter the site key\n"
2973
+ msgstr "يجب إدخال مفتاح الموقع\n"
2974
+
2975
+ #: profile-builder-2.0/admin/manage-fields.php:1025
2976
+ msgid "You must enter the secret key\n"
2977
+ msgstr "يجب إدخال المفتاح السري\n"
2978
+
2979
+ #: profile-builder-2.0/admin/add-ons.php:10
2980
+ #: profile-builder-2.0/admin/add-ons.php:32
2981
+ msgid "Add-Ons"
2982
+ msgstr "إضافات"
2983
+
2984
+ #: profile-builder-2.0/admin/add-ons.php:34
2985
+ #: profile-builder-2.0/admin/add-ons.php:129
2986
+ #: profile-builder-2.0/admin/add-ons.php:231
2987
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2988
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2989
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2990
+ msgid "Activate"
2991
+ msgstr "تفعيل"
2992
+
2993
+ #: profile-builder-2.0/admin/add-ons.php:36
2994
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2995
+ msgid "Downloading and installing..."
2996
+ msgstr "جار التحميل والتثبيت ..."
2997
+
2998
+ #: profile-builder-2.0/admin/add-ons.php:37
2999
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:81
3000
+ msgid "Installation complete"
3001
+ msgstr "اكتمل التثبيت"
3002
+
3003
+ #: profile-builder-2.0/admin/add-ons.php:39
3004
+ msgid "Add-On is Active"
3005
+ msgstr "الإضافة مفعلة"
3006
+
3007
+ #: profile-builder-2.0/admin/add-ons.php:40
3008
+ msgid "Add-On has been activated"
3009
+ msgstr "تم تفعيل الإضافة"
3010
+
3011
+ #: profile-builder-2.0/admin/add-ons.php:41
3012
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:85
3013
+ msgid "Retry Install"
3014
+ msgstr "إعادة التثبيت"
3015
+
3016
+ #: profile-builder-2.0/admin/add-ons.php:43
3017
+ #: profile-builder-2.0/admin/add-ons.php:140
3018
+ msgid "Add-On is <strong>active</strong>"
3019
+ msgstr "الإضافة <strong>مفعلة</strong>"
3020
+
3021
+ #: profile-builder-2.0/admin/add-ons.php:44
3022
+ #: profile-builder-2.0/admin/add-ons.php:138
3023
+ msgid "Add-On is <strong>inactive</strong>"
3024
+ msgstr "الإضافة <strong>غير مفعلة</strong>"
3025
+
3026
+ #: profile-builder-2.0/admin/add-ons.php:46
3027
+ #: profile-builder-2.0/admin/add-ons.php:133
3028
+ #: profile-builder-2.0/admin/add-ons.php:235
3029
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:90
3030
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:118
3031
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:197
3032
+ msgid "Deactivate"
3033
+ msgstr "تعطيل"
3034
+
3035
+ #: profile-builder-2.0/admin/add-ons.php:47
3036
+ msgid "Add-On has been deactivated."
3037
+ msgstr "تم تعطيل الإضافة."
3038
+
3039
+ #: profile-builder-2.0/admin/add-ons.php:59
3040
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
3041
+ msgstr "حدث خطأ ما، لم نتمكن من الاتصال بالخادم. الرجاء معاودة المحاولة في وقت لاحق."
3042
+
3043
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3044
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3045
+ msgid "Install Now"
3046
+ msgstr "تثبيت الآن"
3047
+
3048
+ #: profile-builder-2.0/admin/add-ons.php:153
3049
+ #: profile-builder-2.0/admin/add-ons.php:251
3050
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:141
3051
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:220
3052
+ msgid "Compatible with your version of Profile Builder."
3053
+ msgstr "متوافق مع الإصدار الخاص بك من Profile Builder."
3054
+
3055
+ #: profile-builder-2.0/admin/add-ons.php:162
3056
+ msgid "Upgrade Profile Builder"
3057
+ msgstr "ترقية Profile Builder"
3058
+
3059
+ #: profile-builder-2.0/admin/add-ons.php:163
3060
+ msgid "Not compatible with Profile Builder"
3061
+ msgstr "غير متوافق مع Profile Builder"
3062
+
3063
+ #: profile-builder-2.0/admin/add-ons.php:171
3064
+ msgid "Not compatible with your version of Profile Builder."
3065
+ msgstr "متوافق مع الإصدار الخاص بك من Profile Builder."
3066
+
3067
+ #: profile-builder-2.0/admin/add-ons.php:172
3068
+ msgid "Minimum required Profile Builder version:"
3069
+ msgstr "إصدار Profile Builder الأدنى المطلوب:"
3070
+
3071
+ #: profile-builder-2.0/admin/add-ons.php:177
3072
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
3073
+ msgstr "تعذر تثبيت الإضافة. أعد المحاولة أو <a href=\"%s\" target=\"_blank\"> ثبت يدويا </a>."
3074
+
3075
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3076
+ msgid "You must enter a valid email address."
3077
+ msgstr "ينبغي إدخال بريد الكتروني صالح."
3078
+
3079
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3080
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3081
+ msgid "This username is invalid because it uses illegal characters."
3082
+ msgstr "اسم المستخدم هذا غير صالح لأنه يستخدم أحرفا غير قانونية."
3083
+
3084
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3085
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3086
+ msgid "Please enter a valid username."
3087
+ msgstr "الرجاءادخال اسم مستخدم صحيح."
3088
+
3089
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
3090
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
3091
+ msgid "Only administrators can see this field on edit profile forms."
3092
+ msgstr "يمكن للمشرفين فقط مشاهدة هذا الحقل في نماذج الملف الشخصي للتعديل."
3093
+
3094
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
3095
+ msgid "As an administrator you cannot change your role."
3096
+ msgstr "بصفتك مشرفا، لا يمكنك تغيير دورك."
3097
+
3098
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3099
+ msgid ""
3100
+ "\n"
3101
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3102
+ "<p>His/her new password is: {{password}}</p>\n"
3103
+ msgstr ""
3104
+ "\n"
3105
+ "<p> {{username}} قام بطلب تغيير كلمة المرور عبر ميزة إعادة تعيين كلمة المرور. </ p>\n"
3106
+ "<p> كلمة المرور الجديدة هي: {{password}} </ p>\n"
3107
+
3108
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3109
+ msgid "Admin Notification for User Password Reset"
3110
+ msgstr "إعلام المشرف للمستخدم عند إعادة تعيين كلمة المرور"
3111
+
3112
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
3113
+ msgid "Reset Key"
3114
+ msgstr "مفتاح إعادة التعيين"
3115
+
3116
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
3117
+ msgid "Reset Url"
3118
+ msgstr "إعادة تعيين Url"
3119
+
3120
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
3121
+ msgid "Reset Link"
3122
+ msgstr "رابط إعادة التعيين"
3123
+
3124
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3125
+ msgid ""
3126
+ "\n"
3127
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3128
+ "Username: {{username}}</p>\n"
3129
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3130
+ "<p>To reset your password, visit the following address:<br/>\n"
3131
+ "{{{reset_link}}}</p>\n"
3132
+ msgstr ""
3133
+ "\n"
3134
+ "<p> طلب شخص ما إعادة تعيين كلمة المرور للحساب التالي: {{site_name}} <br/>\n"
3135
+ "اسم المستخدم: {{username}} </ p>\n"
3136
+ "<p> إذا كان هذا خطأ، فتجاهل هذا البريد الإلكتروني ولن يحدث أي شيء. </ p>\n"
3137
+ "<p> لإعادة تعيين كلمة المرور، انتقل إلى العنوان التالي: <br/>\n"
3138
+ "{{{reset_link}}} </ P>\n"
3139
+
3140
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3141
+ msgid "[{{site_name}}] Password Reset"
3142
+ msgstr "[{{site_name}}] إعادة تعيين كلمة المرور"
3143
+
3144
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3145
+ msgid "Password Reset Email"
3146
+ msgstr "بريد إعادة كلمة المرور"
3147
+
3148
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3149
+ msgid ""
3150
+ "\n"
3151
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
3152
+ msgstr ""
3153
+ "\n"
3154
+ "<p> لقد أعدت تعيين كلمة المرور بنجاح إلى: {{password}} </ p>\n"
3155
+
3156
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3157
+ msgid "[{{site_name}}] Password Reset Successfully"
3158
+ msgstr "[{{site_name}}] إعادة تعيين كلمة المرور بنجاح"
3159
+
3160
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3161
+ msgid "Password Reset Success Email"
3162
+ msgstr "بريد نجاح إعادة تعيين كلمة المرور"
3163
+
3164
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3165
+ msgid "User Nicename"
3166
+ msgstr "اسم مستخدم لطيف"
3167
+
3168
+ #: pb-add-on-woocommerce/woosync-page.php:80
3169
+ #: pb-add-on-woocommerce/woosync-page.php:114
3170
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:499
3171
+ msgid "None"
3172
+ msgstr "لا شيء"
3173
+
3174
+ #: profile-builder-2.0/admin/admin-functions.php:132
3175
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3176
+ msgstr "<strong> خطأ </ strong>: يجب أن يكون الحد الأدنى لعدد أحرف كلمة المرور %s"
3177
+
3178
+ #: profile-builder-2.0/admin/admin-functions.php:148
3179
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3180
+ msgstr "<strong> خطأ </ strong>: يجب أن يكون الحد الأدنى من القوة لكلمة المرور %s"
3181
+
3182
+ #: profile-builder-2.0/admin/general-settings.php:179
3183
+ msgid "Username and Email"
3184
+ msgstr "اسم المستخدم و البريد الإلكتروني"
3185
+
3186
+ #: profile-builder-2.0/admin/general-settings.php:184
3187
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
3188
+ msgstr "\"اسم المستخدم والبريد الإلكتروني\" - يمكن للمستخدمين تسجيل الدخول بكل من اسم المستخدم والبريد الإلكتروني."
3189
+
3190
+ #: profile-builder-2.0/admin/general-settings.php:185
3191
+ msgid "\"Username\" - users can Log In only with Username."
3192
+ msgstr "\"اسم المستخدم\" - يمكن للمستخدمين تسجيل الدخول باسم المستخدم فقط."
3193
+
3194
+ #: profile-builder-2.0/admin/general-settings.php:186
3195
+ msgid "\"Email\" - users can Log In only with Email."
3196
+ msgstr "\"البريد الإلكتروني\" - يمكن للمستخدمين تسجيل الدخول بالبريد الإلكتروني فقط."
3197
+
3198
+ #: profile-builder-2.0/admin/manage-fields.php:124
3199
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3200
+ msgstr "حدد الإضافة (الإضافات) التي تريد تقييدها <br/> مثال: .ext1، .ext2، .ext3 <br/> إذا لم يتم تحديد، الإعدادات الافتراضية تكون: .jpg، .jpeg، .gif، .png (. *)"
3201
+
3202
+ #: profile-builder-2.0/admin/manage-fields.php:125
3203
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
3204
+ msgstr "حدد الإضافة (الإضافات) التي تريد تقييدها <br/> مثال: .ext1، .ext2، .ext3 <br/> إذا لم يتم تحديدها، الإعدادات الافتراضية ستكون كل الامتدادات المسموحة في ووردبريس (. *)"
3205
+
3206
+ #: profile-builder-2.0/admin/manage-fields.php:135
3207
+ msgid "User Roles"
3208
+ msgstr "أدوار المستخدمين"
3209
+
3210
+ #: profile-builder-2.0/admin/manage-fields.php:135
3211
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3212
+ msgstr "حدد أدوار المستخدم المراد عرضها للمستخدم (السحب والإفلات للترتيب)"
3213
+
3214
+ #: profile-builder-2.0/admin/manage-fields.php:136
3215
+ msgid "User Roles Order"
3216
+ msgstr "ترتيب أدوار المستخدمين"
3217
+
3218
+ #: profile-builder-2.0/admin/manage-fields.php:136
3219
+ msgid "Save the user role order from the user roles checkboxes"
3220
+ msgstr "احفظ ترتيب دور المستخدم من مربعات اختيار أدوار المستخدم"
3221
+
3222
+ #: profile-builder-2.0/admin/manage-fields.php:1128
3223
+ msgid "Please select at least one user role\n"
3224
+ msgstr "يرجى تحديد دور مستخدم واحد على الأقل\n"
3225
+
3226
+ #: profile-builder-2.0/admin/register-version.php:22
3227
+ msgid "Profile Builder Register"
3228
+ msgstr "تسجيل Profile Builder"
3229
+
3230
+ #: profile-builder-2.0/admin/register-version.php:81
3231
+ msgid "The serial number is about to expire soon!"
3232
+ msgstr "الرقم التسلسلي على وشك الانتهاء قريبا!"
3233
+
3234
+ #: profile-builder-2.0/admin/register-version.php:81
3235
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3236
+ msgstr "الرقم التسلسلي الخاص بك على وشك الانتهاء، يرجى %1$s تجديد الترخيص الخاص بك%2$s."
3237
+
3238
+ #: profile-builder-2.0/admin/register-version.php:83
3239
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3240
+ msgstr "انتهت صلاحية الرقم التسلسلي، يرجى %1$s تجديد الترخيص%2$s."
3241
+
3242
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3243
+ msgid "Add Entry"
3244
+ msgstr "إضافة إدخال"
3245
+
3246
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3247
+ msgid "show"
3248
+ msgstr "إظهار"
3249
+
3250
+ #: profile-builder-2.0/features/functions.php:736
3251
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3252
+ msgstr "للسماح للمستخدمين بالتسجيل في موقع الويب الخاص بك عن طريق Profile Builder، يجب أولا تمكين تسجيل المستخدم. انتقل إلى %1$sاعدادات الشبكة%2$s, وتحت إعدادات التسجيل تأكد من التحقق من \"حسابات المستخدم قد تكون مسجلة”. %3$sتجاهل%4$s"
3253
+
3254
+ #: profile-builder-2.0/front-end/class-formbuilder.php:659
3255
+ msgid "User to edit:"
3256
+ msgstr "تعديل بيانات المستخدم:"
3257
+
3258
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3259
+ #: profile-builder-2.0/front-end/recover.php:262
3260
+ msgid "The password must have the minimum length of %s characters"
3261
+ msgstr "يجب أن يكون الحد الأدنى لعدد أحرف كلمة المرور %s"
3262
+
3263
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3264
+ #: profile-builder-2.0/front-end/recover.php:266
3265
+ msgid "The password must have a minimum strength of %s"
3266
+ msgstr "يجب أن يكون لكلمة المرور الحد الأدنى من قوة %s"
3267
+
3268
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
3269
+ msgid "You cannot register this user role"
3270
+ msgstr "لا يمكنك تسجيل دور المستخدم هذا"
3271
+
3272
+ #: profile-builder-2.0/front-end/login.php:153
3273
+ msgid "username or email"
3274
+ msgstr "اسم المستخدم أو البريد الإلكتروني"
3275
+
3276
+ #: profile-builder-2.0/front-end/login.php:222
3277
+ msgid "Username or Email"
3278
+ msgstr "اسم المستخدم أو البريد الإلكتروني"
3279
+
3280
+ #: profile-builder-2.0/front-end/logout.php:15
3281
+ msgid "You are currently logged in as %s. "
3282
+ msgstr "أنت الآن مسجل الدخول بالمستخدم %s. "
3283
+
3284
+ #: profile-builder-2.0/front-end/logout.php:15
3285
+ msgid "Log out &raquo;"
3286
+ msgstr "تسجيل الخروج &raquo;"
3287
+
3288
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3289
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3290
+ msgid "User Role"
3291
+ msgstr "دور المستخدم"
3292
+
3293
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
3294
+ msgid "View all extra shortcode parameters"
3295
+ msgstr "عرض جميع معلمات الاختصارات الإضافية"
3296
+
3297
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3298
+ msgid "displays only the users that you specified the user_id for"
3299
+ msgstr "عرض المستخدمين الذين حددتهم user_id فقط ل"
3300
+
3301
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3302
+ msgid "displays all users except the ones you specified the user_id for"
3303
+ msgstr "عرض جميع المستخدمين باستثناء المستخدمين الذين حددتهم user_id ل"
3304
+
3305
+ #: profile-builder-2.0/features/functions.php:566
3306
+ msgid "Minimum length of %d characters"
3307
+ msgstr "الحد الأدنى هو %d أحرف"
3308
+
3309
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
3310
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
3311
+ msgid "This message is only visible by administrators"
3312
+ msgstr "هذه الرسالة مرئية فقط من قبل المشرفين"
3313
+
3314
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:413
3315
+ msgid "User not found"
3316
+ msgstr "المستخدم غير موجود"
3317
+
3318
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3319
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3320
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
3321
+ msgstr "الوسوم الصالحة {{reply_to}} و {{site_name}}"
3322
+
3323
+ #: profile-builder-2.0/admin/admin-bar.php:48
3324
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3325
+ msgstr "اختر أدوار المستخدم التي تعرض شريط المشرف في الواجهة الأمامية للموقع."
3326
+
3327
+ #: profile-builder-2.0/admin/manage-fields.php:129
3328
+ msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3329
+ msgstr "أدخل قائمة قيم مفصولة بفاصلات <br/> يمكن أن يكون أي شيء، لأنه مخفي عن المستخدم، ولكن يجب ألا يحتوي على أحرف خاصة أو الفواصل العليا"
3330
+
3331
+ #: profile-builder-2.0/admin/manage-fields.php:1055
3332
+ msgid "The meta-name cannot be empty\n"
3333
+ msgstr "لا يمكن أن يكون الاسم الوصفي فارغا\n"
3334
+
3335
+ #: profile-builder-2.0/admin/register-version.php:69
3336
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3337
+ msgstr "الآن بعد أن حصلت على نسخة من %s، يجب أن تأخذ قليلاً من الوقت وتسجيله مع الرقم التسلسلي الذي تلقيته"
3338
+
3339
+ #: profile-builder-2.0/admin/register-version.php:243
3340
+ msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3341
+ msgstr "<p> الرقم التسلسلي <strong> Profile Builder </ strong> غير صالح أو مفقود. <br/> يرجى%1$s تسجيل نسختك%2$s لتلقي إمكانية الوصول إلى التحديثات التلقائية والدعم. هل تحتاج إلى مفتاح ترخيص؟ %3$sاشتري واحد الآن%4$s </ p>"
3342
+
3343
+ #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3344
+ #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3345
+ #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3346
+ #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3347
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
3348
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
3349
+ msgid "...Choose"
3350
+ msgstr "...اختر"
3351
+
3352
+ #: profile-builder-2.0/features/class-list-table.php:526
3353
+ #: profile-builder-2.0/features/class-list-table.php:942
3354
+ msgid "1 item"
3355
+ msgstr "عنصر %s"
3356
+
3357
+ #: profile-builder-2.0/features/functions.php:552
3358
+ msgid "Very Weak"
3359
+ msgstr "ضعيف جدا"
3360
+
3361
+ #: profile-builder-2.0/features/functions.php:640
3362
+ msgid "This field is required"
3363
+ msgstr "هذا الحقل مطلوب"
3364
+
3365
+ #: profile-builder-2.0/features/functions.php:704
3366
+ msgid "Cancel"
3367
+ msgstr "إلغاء"
3368
+
3369
+ #: profile-builder-2.0/features/functions.php:740
3370
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3371
+ msgstr "للسماح للمستخدمين بالتسجيل في موقع الويب الخاص بك عن طريق Profile Builder، يجب أولا تمكين تسجيل المستخدم. انتقل إلى %1$sاعدادات -> علامة التبويب عام%2$s, وتحت العضوية تأكد من تحقق \"يمكن لأي شخص التسجيل. %3$sتجاهل%4$s"
3372
+
3373
+ #: profile-builder-2.0/front-end/login.php:144
3374
+ msgid "Invalid username."
3375
+ msgstr "اسم المستخدم غير صحيح"
3376
+
3377
+ #: profile-builder-2.0/front-end/login.php:149
3378
+ #: profile-builder-2.0/front-end/login.php:153
3379
+ msgid "username"
3380
+ msgstr "اسم المستخدم"
3381
+
3382
+ #: profile-builder-2.0/front-end/login.php:149
3383
+ msgid "email"
3384
+ msgstr "البريد الإلكتروني"
3385
+
3386
+ #: profile-builder-2.0/front-end/login.php:256
3387
+ msgid "Lost your password?"
3388
+ msgstr "نسيت كلمة المرور؟"
3389
+
3390
+ #: profile-builder-2.0/index.php:34
3391
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3392
+ msgstr "يتم التفعيل أيضا. تحتاج إلى إلغاء تفعيله قبل تفعيل هذا الإصدار من الإضافة."
3393
+
3394
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3395
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3396
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3397
+ msgstr "يجب أن يكون عنوان بريد إلكتروني صالحا أو الوسم {{reply_to}} التي تكون افتراضية إلى البريد الإلكتروني للمشرف"
3398
+
3399
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3400
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3401
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
3402
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
3403
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
3404
+ msgid "Your selected password at signup"
3405
+ msgstr "قمت باختيار كلمة المرور عند الاشتراك"
3406
+
3407
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3408
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3409
+ msgstr "يتم نسخ هذه الإعدادات أيضا في إعدادات \"مخصص البريد الإلكترونيللمسؤول\" عند الحفظ."
3410
+
3411
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3412
+ msgid "This form is empty."
3413
+ msgstr "هذا النموذج فارغ."
3414
+
3415
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3416
+ msgid "Delete all items"
3417
+ msgstr "حذف جميع العناصر"
3418
+
3419
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3420
+ msgid "Delete all"
3421
+ msgstr "حذف الكل"
3422
+
3423
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1621
3424
+ msgid "Choose..."
3425
+ msgstr "اختر..."
3426
+
3427
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3428
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3429
+ msgstr "تعيين عدد المستخدمين ليتم عرضهم على كل جزء مرقم لكل المستخدمين"
3430
+
3431
+ #: profile-builder-2.0/admin/admin-bar.php:10
3432
+ msgid "Show/Hide the Admin Bar on the Front-End"
3433
+ msgstr "إظهار / إخفاء شريط المشرف على الواجهة الأمامية"
3434
+
3435
+ #: profile-builder-2.0/admin/admin-bar.php:10
3436
+ #: profile-builder-2.0/admin/admin-bar.php:47
3437
+ msgid "Admin Bar Settings"
3438
+ msgstr "إعدادات شريط المشرف"
3439
+
3440
+ #: profile-builder-2.0/admin/admin-bar.php:57
3441
+ msgid "User-Role"
3442
+ msgstr "دور المستخدم"
3443
+
3444
+ #: profile-builder-2.0/admin/admin-bar.php:58
3445
+ msgid "Visibility"
3446
+ msgstr "الوضوح"
3447
+
3448
+ #: profile-builder-2.0/admin/admin-bar.php:73
3449
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3450
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3451
+ msgid "Default"
3452
+ msgstr "الإفتراضي"
3453
+
3454
+ #: profile-builder-2.0/admin/admin-bar.php:74
3455
+ msgid "Show"
3456
+ msgstr "إظهار"
3457
+
3458
+ #: profile-builder-2.0/admin/admin-bar.php:75
3459
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1554
3460
+ msgid "Hide"
3461
+ msgstr "إخفاء"
3462
+
3463
+ #: pb-add-on-woocommerce/woosync-page.php:147
3464
+ #: profile-builder-2.0/admin/admin-bar.php:86
3465
+ #: profile-builder-2.0/admin/general-settings.php:224
3466
+ #: profile-builder-2.0/admin/register-version.php:95
3467
+ #: profile-builder-2.0/features/functions.php:697
3468
+ #: profile-builder-2.0/modules/modules.php:127
3469
+ msgid "Save Changes"
3470
+ msgstr "حفظ التغييرات"
3471
+
3472
+ #: profile-builder-2.0/admin/admin-functions.php:37
3473
+ msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
3474
+ msgstr "يتم تعيين تسجيل باستخدام البريد الإلكتروني. لن يظهر هذا الحقل في الواجهة الأمامية! (يمكنك تغيير هذه الإعدادات ضمن علامة التبويب \"%s\")"
3475
+
3476
+ #: profile-builder-2.0/admin/admin-functions.php:37
3477
+ #: profile-builder-2.0/admin/general-settings.php:10
3478
+ #: profile-builder-2.0/admin/general-settings.php:35
3479
+ msgid "General Settings"
3480
+ msgstr "الإعدادات العامة"
3481
+
3482
+ #: profile-builder-2.0/admin/admin-functions.php:137
3483
+ #: profile-builder-2.0/admin/general-settings.php:210
3484
+ msgid "Very weak"
3485
+ msgstr "ضعيف جدا"
3486
+
3487
+ #: profile-builder-2.0/admin/admin-functions.php:137
3488
+ #: profile-builder-2.0/admin/general-settings.php:211
3489
+ #: profile-builder-2.0/features/functions.php:552
3490
+ msgid "Weak"
3491
+ msgstr "ضعيف"
3492
+
3493
+ #: profile-builder-2.0/admin/admin-functions.php:137
3494
+ #: profile-builder-2.0/admin/general-settings.php:212
3495
+ #: profile-builder-2.0/features/functions.php:552
3496
+ msgid "Medium"
3497
+ msgstr "متوسط"
3498
+
3499
+ #: profile-builder-2.0/admin/admin-functions.php:137
3500
+ #: profile-builder-2.0/admin/general-settings.php:213
3501
+ #: profile-builder-2.0/features/functions.php:552
3502
+ msgid "Strong"
3503
+ msgstr "قوي"
3504
+
3505
+ #: profile-builder-2.0/admin/admin-functions.php:187
3506
+ msgid "Add Field"
3507
+ msgstr "إضافة حقل"
3508
+
3509
+ #: profile-builder-2.0/admin/admin-functions.php:189
3510
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3511
+ msgid "Save Settings"
3512
+ msgstr "حفظ الإعدادات"
3513
+
3514
+ #: profile-builder-2.0/admin/basic-info.php:10
3515
+ msgid "Basic Information"
3516
+ msgstr "معلومات اساسية"
3517
+
3518
+ #: profile-builder-2.0/admin/basic-info.php:29
3519
+ msgid "Version %s"
3520
+ msgstr "الاصدار %s"
3521
+
3522
+ #: profile-builder-2.0/admin/basic-info.php:30
3523
+ msgid "<strong>Profile Builder </strong>"
3524
+ msgstr "<strong>Profile Builder </strong>"
3525
+
3526
+ #: profile-builder-2.0/admin/basic-info.php:31
3527
+ msgid "The best way to add front-end registration, edit profile and login forms."
3528
+ msgstr "أفضل طريقة لإضافة تسجيل الواجهة الأمامية, تعديل الملف الشخصي واستمارات تسجيل الدخول."
3529
+
3530
+ #: profile-builder-2.0/admin/basic-info.php:33
3531
+ msgid "For Modern User Interaction"
3532
+ msgstr "لتفاعل المستخدم الحديث"
3533
+
3534
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3535
+ #: profile-builder-2.0/admin/basic-info.php:36
3536
+ #: profile-builder-2.0/features/login-widget/login-widget.php:59
3537
+ msgid "Login"
3538
+ msgstr "تسجيل الدخول"
3539
+
3540
+ #: profile-builder-2.0/admin/basic-info.php:40
3541
+ msgid "Registration"
3542
+ msgstr "التسجيل"
3543
+
3544
+ #: profile-builder-2.0/admin/basic-info.php:44
3545
+ msgid "Edit Profile"
3546
+ msgstr "تعديل الملف الشخصي"
3547
+
3548
+ #: profile-builder-2.0/admin/basic-info.php:51
3549
+ msgid "Extra Features"
3550
+ msgstr "ميزات اضافية"
3551
+
3552
+ #: profile-builder-2.0/admin/basic-info.php:52
3553
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3554
+ msgstr "الميزات التي تمنحك مزيدا من التحكم في المستخدمين ,زيادة الأمان وتساعدك على محاربة الرسائل غير المرغوب فيها لتسجيل المستخدمين."
3555
+
3556
+ #: profile-builder-2.0/admin/basic-info.php:53
3557
+ msgid "Enable extra features"
3558
+ msgstr "تمكين ميزات إضافية"
3559
+
3560
+ #: profile-builder-2.0/admin/basic-info.php:57
3561
+ msgid "Recover Password"
3562
+ msgstr "إستعادة كلمة المرور"
3563
+
3564
+ #: profile-builder-2.0/admin/basic-info.php:61
3565
+ msgid "Admin Approval (*)"
3566
+ msgstr "موافقة المشرف (*)"
3567
+
3568
+ #: profile-builder-2.0/admin/basic-info.php:62
3569
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3570
+ msgstr "عليك أن تقرر من هو المستخدم على موقع الويب الخاص بك. الحصول على إخطار عبر البريد الإلكتروني أو الموافقة على عدة مستخدمين في وقت واحد من واجهة المستخدم ووردبريس."
3571
+
3572
+ #: profile-builder-2.0/admin/basic-info.php:65
3573
+ msgid "Email Confirmation"
3574
+ msgstr "تأكيد البريد الإلكتروني"
3575
+
3576
+ #: profile-builder-2.0/admin/basic-info.php:66
3577
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3578
+ msgstr "تأكد من تسجيل المستخدمين من خلال عناوين بريد إلكتروني حقيقية. عند التسجيل سوف يتلقى المستخدمين إخطارا لتأكيد عنوان بريدهم الإلكتروني."
3579
+
3580
+ #: profile-builder-2.0/admin/basic-info.php:69
3581
+ msgid "Minimum Password Length and Strength Meter"
3582
+ msgstr "الحد الأدنى لطول كلمة المرور وقوتها"
3583
+
3584
+ #: profile-builder-2.0/admin/basic-info.php:70
3585
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3586
+ msgstr "القضاء على كلمات المرور الضعيفة تماما عن طريق وضع الحد الأدنى لطول كلمة المرور وإنفاذ قوة كلمة مرور معينة."
3587
+
3588
+ #: profile-builder-2.0/admin/basic-info.php:73
3589
+ msgid "Login with Email or Username"
3590
+ msgstr "تسجيل الدخول عن طريق اسم المستخدم أو البريد الإلكتروني"
3591
+
3592
+ #: profile-builder-2.0/admin/basic-info.php:74
3593
+ msgid "Allow users to log in with their email or username when accessing your site."
3594
+ msgstr "السماح للمستخدمين بتسجيل الدخول باستخدام البريد الإلكتروني أو اسم المستخدم عند الدخول إلى موقعك."
3595
+
3596
+ #: profile-builder-2.0/admin/basic-info.php:87
3597
+ msgid "Customize Your Forms The Way You Want (*)"
3598
+ msgstr "تخصيص النماذج بالطريقة التي تريدها (*)"
3599
+
3600
+ #: profile-builder-2.0/admin/basic-info.php:88
3601
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3602
+ msgstr "مع حقول الملف الشخصي الإضافية يمكنك إنشاء نموذج التسجيل الدقيق الذي يحتاجه المشروع الخاص بك."
3603
+
3604
+ #: profile-builder-2.0/admin/basic-info.php:90
3605
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3606
+ msgstr "حقول الملف الشخصي إضافية متوفرة في إصدارات Hobbyist أو PRO"
3607
+
3608
+ #: profile-builder-2.0/admin/basic-info.php:92
3609
+ msgid "Get started with extra fields"
3610
+ msgstr "بدء استخدام حقول إضافية"
3611
+
3612
+ #: profile-builder-2.0/admin/basic-info.php:95
3613
+ msgid "Avatar Upload"
3614
+ msgstr "رفع الصورة الرمزية"
3615
+
3616
+ #: profile-builder-2.0/admin/basic-info.php:96
3617
+ msgid "Generic Uploads"
3618
+ msgstr "رفع ملفات عامة"
3619
+
3620
+ #: profile-builder-2.0/admin/basic-info.php:97
3621
+ msgid "Agree To Terms Checkbox"
3622
+ msgstr "موافق على مربع الشروط"
3623
+
3624
+ #: profile-builder-2.0/admin/basic-info.php:98
3625
+ msgid "Datepicker"
3626
+ msgstr "منتقي التاريخ"
3627
+
3628
+ #: profile-builder-2.0/admin/basic-info.php:101
3629
+ msgid "reCAPTCHA"
3630
+ msgstr "اختبار reCAPTCHA"
3631
+
3632
+ #: profile-builder-2.0/admin/basic-info.php:102
3633
+ msgid "Country Select"
3634
+ msgstr "تحديد البلد"
3635
+
3636
+ #: profile-builder-2.0/admin/basic-info.php:104
3637
+ msgid "Timezone Select"
3638
+ msgstr "تحديد المنطقة الزمنية"
3639
+
3640
+ #: profile-builder-2.0/admin/basic-info.php:108
3641
+ msgid "Input / Hidden Input"
3642
+ msgstr "الإدخال / الإدخال الخفي"
3643
+
3644
+ #: profile-builder-2.0/admin/basic-info.php:110
3645
+ msgid "Checkbox"
3646
+ msgstr "مربع اختيار"
3647
+
3648
+ #: profile-builder-2.0/admin/basic-info.php:111
3649
+ msgid "Select"
3650
+ msgstr "تحديد"
3651
+
3652
+ #: profile-builder-2.0/admin/basic-info.php:112
3653
+ msgid "Radio Buttons"
3654
+ msgstr "أزرار الراديو"
3655
+
3656
+ #: profile-builder-2.0/admin/basic-info.php:113
3657
+ msgid "Textarea"
3658
+ msgstr "مساحة النص"
3659
+
3660
+ #: profile-builder-2.0/admin/basic-info.php:125
3661
+ msgid "Powerful Modules (**)"
3662
+ msgstr "وحدات قوية (**)"
3663
+
3664
+ #: profile-builder-2.0/admin/basic-info.php:126
3665
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3666
+ msgstr "كل ما تحتاجه لإدارة المستخدمين الخاص بك هو على الأرجح متاح بالفعل باستخدام وحدات Pro."
3667
+
3668
+ #: profile-builder-2.0/admin/basic-info.php:128
3669
+ msgid "Enable your modules"
3670
+ msgstr "تمكين الوحدات الخاصة بك"
3671
+
3672
+ #: profile-builder-2.0/admin/basic-info.php:131
3673
+ msgid "Find out more about PRO Modules"
3674
+ msgstr "معرفة المزيد عن وحدات PRO"
3675
+
3676
+ #: profile-builder-2.0/admin/basic-info.php:136
3677
+ #: profile-builder-2.0/modules/modules.php:89
3678
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3679
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3680
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3681
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3682
+ msgid "User Listing"
3683
+ msgstr "قائمة المستخدمين"
3684
+
3685
+ #: profile-builder-2.0/admin/basic-info.php:138
3686
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3687
+ msgstr "من السهل تعديل النماذج لإدراج مستخدمي موقعك على الويب بالإضافة إلى إنشاء صفحات مستخدم واحد. يعتمد على الرمز القصير، ويقدم العديد من الخيارات لتخصيص القوائم الخاصة بك."
3688
+
3689
+ #: profile-builder-2.0/admin/basic-info.php:144
3690
+ msgid "Email Customizer"
3691
+ msgstr "مخصص البريد الإلكتروني"
3692
+
3693
+ #: profile-builder-2.0/admin/basic-info.php:145
3694
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3695
+ msgstr "تخصيص جميع الرسائل الإلكترونية المرسلة إلى المستخدمين أو المشرفين. على التسجيل، تأكيد البريد الإلكتروني، موافقة المشرف / أو إلغاء الموافقة."
3696
+
3697
+ #: profile-builder-2.0/admin/basic-info.php:148
3698
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3699
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3700
+ #: profile-builder-2.0/modules/modules.php:110
3701
+ msgid "Custom Redirects"
3702
+ msgstr "عمليات إعادة التوجيه المخصصة"
3703
+
3704
+ #: profile-builder-2.0/admin/basic-info.php:149
3705
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3706
+ msgstr "حافظ على المستخدمين خارج لوحة معلومات وردبريس, إعادة توجيههم إلى الصفحة الأولى بعد تسجيل الدخول أو التسجيل, كل شيء على بعد نقرات قليلة."
3707
+
3708
+ #: profile-builder-2.0/admin/basic-info.php:154
3709
+ #: profile-builder-2.0/modules/modules.php:75
3710
+ msgid "Multiple Registration Forms"
3711
+ msgstr "نماذج التسجيل المتعددة"
3712
+
3713
+ #: profile-builder-2.0/admin/basic-info.php:155
3714
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3715
+ msgstr "إعداد نماذج تسجيل متعددة مع حقول مختلفة لأدوار معينة للمستخدم. التقاط معلومات مختلفة من أنواع مختلفة من المستخدمين."
3716
+
3717
+ #: profile-builder-2.0/admin/basic-info.php:158
3718
+ #: profile-builder-2.0/modules/modules.php:82
3719
+ msgid "Multiple Edit-profile Forms"
3720
+ msgstr "نماذج تحرير الملف الشخصي المتعددة"
3721
+
3722
+ #: profile-builder-2.0/admin/basic-info.php:159
3723
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3724
+ msgstr "السماح لأدوار المستخدمين المختلفة بتعديل معلوماتهم الخاصة. إعداد نماذج تعديل الملف الشخصي متعددة مع حقول مختلفة لبعض أدوار المستخدم."
3725
+
3726
+ #: profile-builder-2.0/admin/basic-info.php:187
3727
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3728
+ msgstr "* متوفر فقط في إصدارات %1$sHobbyist و Pro%2$s."
3729
+
3730
+ #: profile-builder-2.0/admin/basic-info.php:188
3731
+ msgid "** only available in the %1$sPro version%2$s."
3732
+ msgstr "* متوفر فقط في %1$sإصدارات Pro%2$s."
3733
+
3734
+ #: profile-builder-2.0/admin/general-settings.php:39
3735
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3736
+ msgstr "تحميل ملف CSS ل Profile Builder الخاص بك في الواجهة الأمامية:"
3737
+
3738
+ #: profile-builder-2.0/admin/general-settings.php:42
3739
+ #: profile-builder-2.0/admin/general-settings.php:55
3740
+ #: profile-builder-2.0/admin/general-settings.php:104
3741
+ #: profile-builder-2.0/admin/general-settings.php:151
3742
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3743
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3744
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3745
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
3746
+ msgid "Yes"
3747
+ msgstr "نعم"
3748
+
3749
+ #: profile-builder-2.0/admin/general-settings.php:44
3750
+ msgid "You can find the default file here: %1$s"
3751
+ msgstr "يمكنك العثور على الملف الافتراضي هنا: %1$s"
3752
+
3753
+ #: profile-builder-2.0/admin/general-settings.php:51
3754
+ msgid "\"Email Confirmation\" Activated:"
3755
+ msgstr "\"تأكيد البريد الإلكتروني\" مفعل:"
3756
+
3757
+ #: profile-builder-2.0/admin/general-settings.php:56
3758
+ #: profile-builder-2.0/admin/general-settings.php:105
3759
+ #: profile-builder-2.0/admin/general-settings.php:150
3760
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3761
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3762
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3763
+ msgid "No"
3764
+ msgstr "لا"
3765
+
3766
+ #: profile-builder-2.0/admin/general-settings.php:61
3767
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3768
+ msgstr "يمكنك العثور على قائمة بعناوين البريد الإلكتروني غير المؤكدة %1$sالمستخدمين > كل المستخدمين > تأكيد البريد الإلكتروني%2$s."
3769
+
3770
+ #: profile-builder-2.0/admin/general-settings.php:69
3771
+ msgid "\"Email Confirmation\" Landing Page:"
3772
+ msgstr "صفحة هبوط \"تأكيد البريد الإلكتروني\":"
3773
+
3774
+ #: profile-builder-2.0/admin/general-settings.php:74
3775
+ msgid "Existing Pages"
3776
+ msgstr "الصفحات الحالية"
3777
+
3778
+ #: profile-builder-2.0/admin/general-settings.php:89
3779
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3780
+ msgstr "حدد الصفحة التي سيتم توجيه المستخدمين إليها عند تأكيد حساب البريد الإلكتروني. قد تختلف هذه الصفحة عن صفحة (صفحات) التسجيل ويمكن تغييرها في أي وقت. إذا لم يتم تحديد أي شيء، سيتم عرض صفحة تأكيد بسيطة للمستخدم."
3781
+
3782
+ #: profile-builder-2.0/admin/general-settings.php:100
3783
+ msgid "\"Admin Approval\" Activated:"
3784
+ msgstr "\"موافقة المشرف\" مفعلة"
3785
+
3786
+ #: profile-builder-2.0/admin/general-settings.php:108
3787
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3788
+ msgstr "يمكنك العثور على قائمة المستخدمين في %1$sالمستخدمين > كل المستخدمين > موافقة المشرف%2$s."
3789
+
3790
+ #: profile-builder-2.0/admin/general-settings.php:165
3791
+ msgid "\"Admin Approval\" Feature:"
3792
+ msgstr "ميزة \"موافقة المشرف\":"
3793
+
3794
+ #: profile-builder-2.0/admin/general-settings.php:168
3795
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3796
+ msgstr "يمكنك أن تقرر من هو المستخدم على موقع الويب الخاص بك. الحصول على إخطار عبر البريد الإلكتروني أو الموافقة على عدة مستخدمين في وقت واحد من واجهة المستخدم ووردبريس. تمكين موافقة المشرف من خلال الترقية إلى %1$sاصدارات Hobbyist أو PRO %2$s."
3797
+
3798
+ #: profile-builder-2.0/admin/general-settings.php:175
3799
+ msgid "Allow Users to Log in With:"
3800
+ msgstr "السماح للمستخدمين بتسجيل الدخول باستخدام:"
3801
+
3802
+ #: profile-builder-2.0/admin/general-settings.php:180
3803
+ #: profile-builder-2.0/admin/manage-fields.php:201
3804
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3805
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3806
+ #: profile-builder-2.0/front-end/login.php:85
3807
+ #: profile-builder-2.0/front-end/login.php:99
3808
+ #: profile-builder-2.0/front-end/login.php:218
3809
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3810
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3811
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:102
3812
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:277
3813
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:730
3814
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2219
3815
+ msgid "Username"
3816
+ msgstr "اسم المستخدم"
3817
+
3818
+ #: profile-builder-2.0/admin/general-settings.php:181
3819
+ #: profile-builder-2.0/front-end/login.php:215
3820
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3821
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:736
3822
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2220
3823
+ msgid "Email"
3824
+ msgstr "البريد الإلكتروني"
3825
+
3826
+ #: profile-builder-2.0/admin/general-settings.php:193
3827
+ msgid "Minimum Password Length:"
3828
+ msgstr "الحد الأدنى لطول كلمة المرور:"
3829
+
3830
+ #: profile-builder-2.0/admin/general-settings.php:198
3831
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3832
+ msgstr "أدخل الحد الأدنى من الحروف التي يجب أن تحتوي عليها كلمة المرور. اتركه فارغا لعدم تحديد الحد الأدنى"
3833
+
3834
+ #: profile-builder-2.0/admin/general-settings.php:205
3835
+ msgid "Minimum Password Strength:"
3836
+ msgstr "الحد الأدنى لقوة كلمة المرور:"
3837
+
3838
+ #: profile-builder-2.0/admin/general-settings.php:209
3839
+ msgid "Disabled"
3840
+ msgstr "تعطيل"
3841
+
3842
+ #: profile-builder-2.0/admin/manage-fields.php:12
3843
+ msgid "Manage Fields"
3844
+ msgstr "إدارة الحقول"
3845
+
3846
+ #: profile-builder-2.0/admin/manage-fields.php:13
3847
+ msgid "Manage Default and Extra Fields"
3848
+ msgstr "إدارة الحقول الافتراضية والإضافية"
3849
+
3850
+ #: profile-builder-2.0/admin/manage-fields.php:118
3851
+ msgid "Field Title"
3852
+ msgstr "عنوان الحقل"
3853
+
3854
+ #: profile-builder-2.0/admin/manage-fields.php:118
3855
+ msgid "Title of the field"
3856
+ msgstr "عنوان الحقل"
3857
+
3858
+ #: profile-builder-2.0/admin/manage-fields.php:119
3859
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3860
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3861
+ msgid "Field"
3862
+ msgstr "حقل"
3863
+
3864
+ #: profile-builder-2.0/admin/manage-fields.php:120
3865
+ msgid "Meta-name"
3866
+ msgstr "اسم ميتا"
3867
+
3868
+ #: profile-builder-2.0/admin/manage-fields.php:121
3869
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3870
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3871
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3872
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3873
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3874
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3875
+ msgid "ID"
3876
+ msgstr "معرف فريد"
3877
+
3878
+ #: profile-builder-2.0/admin/manage-fields.php:121
3879
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3880
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3881
+ msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
3882
+ msgstr "معرف فريد يتم إنشاؤه تلقائيا لهذا الحقل بالذات <br/> يمكنك استخدام هذا الخيار مع فلاتر لاستهداف هذا العنصر إذا لزم الأمر <br/> لا يمكن تعديله"
3883
+
3884
+ #: profile-builder-2.0/admin/manage-fields.php:122
3885
+ msgid "Description"
3886
+ msgstr "وصف"
3887
+
3888
+ #: profile-builder-2.0/admin/manage-fields.php:122
3889
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3890
+ msgstr "أدخل وصفا (مفصلا) للخيار لكي يقرأه المستخدمين النهائيين <br/> اختياري"
3891
+
3892
+ #: profile-builder-2.0/admin/manage-fields.php:123
3893
+ msgid "Row Count"
3894
+ msgstr "عدد الصفوف"
3895
+
3896
+ #: profile-builder-2.0/admin/manage-fields.php:123
3897
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3898
+ msgstr "حدد عدد الصفوف لحقل 'مساحة النص' <br/> إذا لم يتم تحديدها، فسيكون الإعداد الافتراضي هو 5"
3899
+
3900
+ #: profile-builder-2.0/admin/manage-fields.php:124
3901
+ msgid "Allowed Image Extensions"
3902
+ msgstr "صيغ الصور المسموح بها"
3903
+
3904
+ #: profile-builder-2.0/admin/manage-fields.php:125
3905
+ msgid "Allowed Upload Extensions"
3906
+ msgstr "الصيغ المسموح رفعها"
3907
+
3908
+ #: profile-builder-2.0/admin/manage-fields.php:126
3909
+ msgid "Avatar Size"
3910
+ msgstr "حجم الصورة الرمزية"
3911
+
3912
+ #: profile-builder-2.0/admin/manage-fields.php:126
3913
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3914
+ msgstr "أدخل قيمة (بين 20 و 200) لحجم \"الصورة الرمزية\" <br/> إذا لم يتم تحديدها، فسيكون الإعداد الافتراضي هو 100"
3915
+
3916
+ #: profile-builder-2.0/admin/manage-fields.php:127
3917
+ msgid "Date-format"
3918
+ msgstr "صيغة التاريخ"
3919
+
3920
+ #: profile-builder-2.0/admin/manage-fields.php:128
3921
+ msgid "Terms of Agreement"
3922
+ msgstr "شروط الاتفاق"
3923
+
3924
+ #: profile-builder-2.0/admin/manage-fields.php:128
3925
+ msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3926
+ msgstr "أدخل وصفا تفصيليا لشروط الاتفاق ليتمكن المستخدم من قراءته.<br/>يمكن إدراج الروابط باستخدام بنية HTML القياسية: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3927
+
3928
+ #: profile-builder-2.0/admin/manage-fields.php:129
3929
+ msgid "Options"
3930
+ msgstr "خيارات"
3931
+
3932
+ #: profile-builder-2.0/admin/manage-fields.php:130
3933
+ msgid "Labels"
3934
+ msgstr "تسميات"
3935
+
3936
+ #: profile-builder-2.0/admin/manage-fields.php:130
3937
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
3938
+ msgstr "أدخل قائمة تسميات مفصولة بفواصل <br/> مرئية للمستخدم"
3939
+
3940
+ #: profile-builder-2.0/admin/manage-fields.php:137
3941
+ msgid "Default Value"
3942
+ msgstr "القيمة الافتراضية"
3943
+
3944
+ #: profile-builder-2.0/admin/manage-fields.php:137
3945
+ msgid "Default value of the field"
3946
+ msgstr "القيمة الافتراضية للحقل"
3947
+
3948
+ #: profile-builder-2.0/admin/manage-fields.php:138
3949
+ #: profile-builder-2.0/admin/manage-fields.php:140
3950
+ #: profile-builder-2.0/admin/manage-fields.php:141
3951
+ #: profile-builder-2.0/admin/manage-fields.php:142
3952
+ msgid "Default Option"
3953
+ msgstr "الخيار الافتراضي"
3954
+
3955
+ #: profile-builder-2.0/admin/manage-fields.php:138
3956
+ msgid "Specify the option which should be selected by default"
3957
+ msgstr "حدد الخيار الذي يجب تحديده بشكل افتراضي"
3958
+
3959
+ #: profile-builder-2.0/admin/manage-fields.php:139
3960
+ msgid "Default Option(s)"
3961
+ msgstr "الخيار الافتراضي (الخيارات)"
3962
+
3963
+ #: profile-builder-2.0/admin/manage-fields.php:139
3964
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3965
+ msgstr "حدد الخيار الذي يجب تحديده افتراضيا <br/> إذا كانت هناك قيم متعددة، فقم بفصلها مع '،' (فاصلة)"
3966
+
3967
+ #: profile-builder-2.0/admin/manage-fields.php:153
3968
+ msgid "Default Content"
3969
+ msgstr "المحتوى الافتراضي"
3970
+
3971
+ #: profile-builder-2.0/admin/manage-fields.php:153
3972
+ msgid "Default value of the textarea"
3973
+ msgstr "القيمة الافتراضية لمساحة النص"
3974
+
3975
+ #: pb-add-on-woocommerce/index.php:306
3976
+ #: profile-builder-2.0/admin/manage-fields.php:160
3977
+ msgid "Required"
3978
+ msgstr "مطلوب"
3979
+
3980
+ #: profile-builder-2.0/admin/manage-fields.php:160
3981
+ msgid "Whether the field is required or not"
3982
+ msgstr "ما إذا كان الحقل مطلوب أم لا"
3983
+
3984
+ #: profile-builder-2.0/admin/manage-fields.php:161
3985
+ msgid "Overwrite Existing"
3986
+ msgstr "استبدال الحالي"
3987
+
3988
+ #: profile-builder-2.0/admin/manage-fields.php:161
3989
+ msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
3990
+ msgstr "سيؤدي تحديد \"نعم\" إلى إضافة الحقل إلى القائمة، ولكن سيتم استبدال أي حقل آخر في قاعدة البيانات التي تحتوي على الاسم الوصفي نفسه <br/> استخدم هذا على مسؤوليتك الخاصة"
3991
+
3992
+ #: profile-builder-2.0/admin/manage-fields.php:167
3993
+ msgid "Field Properties"
3994
+ msgstr "خصائص الحقل"
3995
+
3996
+ #: profile-builder-2.0/admin/manage-fields.php:181
3997
+ msgid "Registration & Edit Profile"
3998
+ msgstr "تسجيل وتحرير الملف الشخصي"
3999
+
4000
+ #: profile-builder-2.0/admin/manage-fields.php:200
4001
+ msgid "Name"
4002
+ msgstr "الاسم"
4003
+
4004
+ #: profile-builder-2.0/admin/manage-fields.php:201
4005
+ msgid "Usernames cannot be changed."
4006
+ msgstr "اسم المستخدم لا يمكن تغييره."
4007
+
4008
+ #: pb-add-on-woocommerce/billing-fields.php:6
4009
+ #: pb-add-on-woocommerce/shipping-fields.php:6
4010
+ #: profile-builder-2.0/admin/manage-fields.php:202
4011
+ msgid "First Name"
4012
+ msgstr "الاسم الأول"
4013
+
4014
+ #: pb-add-on-woocommerce/billing-fields.php:7
4015
+ #: pb-add-on-woocommerce/shipping-fields.php:7
4016
+ #: profile-builder-2.0/admin/manage-fields.php:203
4017
+ msgid "Last Name"
4018
+ msgstr "الاسم الأخير"
4019
+
4020
+ #: profile-builder-2.0/admin/manage-fields.php:204
4021
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:769
4022
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2227
4023
+ msgid "Nickname"
4024
+ msgstr "الكنية"
4025
+
4026
+ #: profile-builder-2.0/admin/manage-fields.php:205
4027
+ msgid "Display name publicly as"
4028
+ msgstr "عرض الاسم بشكل عام ك"
4029
+
4030
+ #: profile-builder-2.0/admin/manage-fields.php:206
4031
+ msgid "Contact Info"
4032
+ msgstr "بيانات التواصل"
4033
+
4034
+ #: profile-builder-2.0/admin/manage-fields.php:207
4035
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
4036
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
4037
+ #: profile-builder-2.0/front-end/recover.php:118
4038
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:108
4039
+ msgid "E-mail"
4040
+ msgstr "البريد الإلكتروني"
4041
+
4042
+ #: profile-builder-2.0/admin/manage-fields.php:208
4043
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
4044
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:111
4045
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:751
4046
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2221
4047
+ msgid "Website"
4048
+ msgstr "الموقع"
4049
+
4050
+ #: profile-builder-2.0/admin/manage-fields.php:212
4051
+ msgid "AIM"
4052
+ msgstr "AIM"
4053
+
4054
+ #: profile-builder-2.0/admin/manage-fields.php:213
4055
+ msgid "Yahoo IM"
4056
+ msgstr "Yahoo IM"
4057
+
4058
+ #: profile-builder-2.0/admin/manage-fields.php:214
4059
+ msgid "Jabber / Google Talk"
4060
+ msgstr "Jabber / Google Talk"
4061
+
4062
+ #: profile-builder-2.0/admin/manage-fields.php:217
4063
+ msgid "About Yourself"
4064
+ msgstr "عن الكاتب"
4065
+
4066
+ #: profile-builder-2.0/admin/manage-fields.php:218
4067
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:114
4068
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:754
4069
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2222
4070
+ msgid "Biographical Info"
4071
+ msgstr "السيرة الذاتية"
4072
+
4073
+ #: profile-builder-2.0/admin/manage-fields.php:218
4074
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4075
+ msgstr "مشاركة معلومات عن السيرة الذاتية لملء ملفك الشخصي. قد تظهر ذلك علنا."
4076
+
4077
+ #: profile-builder-2.0/admin/manage-fields.php:219
4078
+ #: profile-builder-2.0/front-end/recover.php:73
4079
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4080
+ msgid "Password"
4081
+ msgstr "كلمة المرور"
4082
+
4083
+ #: profile-builder-2.0/admin/manage-fields.php:219
4084
+ msgid "Type your password."
4085
+ msgstr "قم بكتابة كلمة المرور."
4086
+
4087
+ #: profile-builder-2.0/admin/manage-fields.php:220
4088
+ #: profile-builder-2.0/front-end/recover.php:74
4089
+ msgid "Repeat Password"
4090
+ msgstr "إعادة كلمة المرور"
4091
+
4092
+ #: profile-builder-2.0/admin/manage-fields.php:220
4093
+ msgid "Type your password again. "
4094
+ msgstr "أعد كتابة كلمة المرور مرة أخرى."
4095
+
4096
+ #: profile-builder-2.0/admin/manage-fields.php:980
4097
+ #: profile-builder-2.0/admin/manage-fields.php:1137
4098
+ msgid "You must select a field\n"
4099
+ msgstr "يجب تحديد حقل\n"
4100
+
4101
+ #: profile-builder-2.0/admin/manage-fields.php:990
4102
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4103
+ msgstr "يرجى اختيار نوع حقل مختلف لأن هذا الحقل موجود بالفعل في النموذج (يجب أن يكون فريدا)\n"
4104
+
4105
+ #: profile-builder-2.0/admin/manage-fields.php:1001
4106
+ msgid "The entered avatar size is not between 20 and 200\n"
4107
+ msgstr "حجم الصورة الرمزية الذي تم إدخاله لا يتراوح بين 20 و 200\n"
4108
+
4109
+ #: profile-builder-2.0/admin/manage-fields.php:1004
4110
+ msgid "The entered avatar size is not numerical\n"
4111
+ msgstr "حجم الصورة الرمزية المدخلة ليست رقمية\n"
4112
+
4113
+ #: profile-builder-2.0/admin/manage-fields.php:1012
4114
+ msgid "The entered row number is not numerical\n"
4115
+ msgstr "رقم الصف الذي تم إدخاله غير رقمي\n"
4116
+
4117
+ #: profile-builder-2.0/admin/manage-fields.php:1015
4118
+ msgid "You must enter a value for the row number\n"
4119
+ msgstr "يجب إدخال قيمة لرقم الصف\n"
4120
+
4121
+ #: profile-builder-2.0/admin/manage-fields.php:1036
4122
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
4123
+ msgstr "القيمة المدخلة لمنسق التاريخ ليست تنسيق تاريخ صالح\n"
4124
+
4125
+ #: profile-builder-2.0/admin/manage-fields.php:1039
4126
+ msgid "You must enter a value for the date-format\n"
4127
+ msgstr "يجب إدخال قيمة لتنسيق التاريخ\n"
4128
+
4129
+ #: profile-builder-2.0/admin/manage-fields.php:1067
4130
+ #: profile-builder-2.0/admin/manage-fields.php:1075
4131
+ #: profile-builder-2.0/admin/manage-fields.php:1086
4132
+ msgid "That meta-name is already in use\n"
4133
+ msgstr "هذا الاسم الوصفي قيد الاستخدام \n"
4134
+
4135
+ #: profile-builder-2.0/admin/manage-fields.php:1117
4136
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4137
+ msgstr "لم يتطابق الخيار (الخيارات) التالي مع الخيارات الموجودة في قائمة الخيارات:%s\n"
4138
+
4139
+ #: profile-builder-2.0/admin/manage-fields.php:1121
4140
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
4141
+ msgstr "لم يتطابق الخيار التالي مع تلك الموجودة في قائمة الخيارات: %s\n"
4142
+
4143
+ #: profile-builder-2.0/admin/manage-fields.php:1144
4144
+ msgid "That field is already added in this form\n"
4145
+ msgstr "تمت إضافة هذا الحقل مسبقا في هذا النموذج\n"
4146
+
4147
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4148
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4149
+ msgstr "<pre>العنوان</pre><pre>النوع</pre><pre>الاسم الوصفي</pre><pre class=\"wppb-mb-head-required\">مطلوب</pre>"
4150
+
4151
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4152
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4153
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4154
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4155
+ #: profile-builder-2.0/features/functions.php:718
4156
+ #: profile-builder-2.0/features/functions.php:725
4157
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4158
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4159
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4160
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4161
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4162
+ msgid "Edit"
4163
+ msgstr "تعديل"
4164
+
4165
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4166
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4167
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4168
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4169
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4170
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4171
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4172
+ #: profile-builder-2.0/features/functions.php:711
4173
+ #: profile-builder-2.0/features/functions.php:725
4174
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4175
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4176
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4177
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4178
+ msgid "Delete"
4179
+ msgstr "حذف"
4180
+
4181
+ #: profile-builder-2.0/admin/manage-fields.php:1208
4182
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4183
+ msgstr "استخدم هذه الرموز القصيرة على الصفحات التي تريد عرض النماذج عليها:"
4184
+
4185
+ #: profile-builder-2.0/admin/register-version.php:14
4186
+ msgid "Register Your Version"
4187
+ msgstr "تسجيل الإصدار الخاص بك"
4188
+
4189
+ #: profile-builder-2.0/admin/register-version.php:14
4190
+ msgid "Register Version"
4191
+ msgstr "تسجيل الإصدار"
4192
+
4193
+ #: profile-builder-2.0/admin/register-version.php:70
4194
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4195
+ msgstr "إذا قمت بتسجيل هذا الإصدار من Profile Builder، فستتلقى معلومات بشأن عمليات الترقية والتصحيحات والدعم الفني."
4196
+
4197
+ #: profile-builder-2.0/admin/register-version.php:72
4198
+ msgid " Serial Number:"
4199
+ msgstr "الرقم التسلسلي"
4200
+
4201
+ #: profile-builder-2.0/admin/register-version.php:77
4202
+ msgid "The serial number was successfully validated!"
4203
+ msgstr "تم التحقق من صحة الرقم التسلسلي!"
4204
+
4205
+ #: profile-builder-2.0/admin/register-version.php:79
4206
+ msgid "The serial number entered couldn't be validated!"
4207
+ msgstr "تعذر التحقق من الرقم التسلسلي الذي تم إدخاله!"
4208
+
4209
+ #: profile-builder-2.0/admin/register-version.php:83
4210
+ msgid "The serial number couldn't be validated because it expired!"
4211
+ msgstr "تعذر التحقق من الرقم التسلسلي لأنه منتهي!"
4212
+
4213
+ #: profile-builder-2.0/admin/register-version.php:85
4214
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
4215
+ msgstr "تعذر التحقق من الرقم التسلسلي بسبب انتهاء مهلة العملية. من ممكن أن يكون بسبب مشكلة في الخادم. الرجاء معاودة المحاولة في وقت لاحق!"
4216
+
4217
+ #: profile-builder-2.0/admin/register-version.php:87
4218
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4219
+ msgstr "(مثال. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4220
+
4221
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4222
+ #: profile-builder-2.0/features/functions.php:725
4223
+ msgid "Content"
4224
+ msgstr "محتوى"
4225
+
4226
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4227
+ msgid "Edit this item"
4228
+ msgstr "تعديل هذا العنصر"
4229
+
4230
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4231
+ msgid "Delete this item"
4232
+ msgstr "حذف هذا العنصر"
4233
+
4234
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4235
+ msgid "Please enter a value for the required field "
4236
+ msgstr "الرجاء إدخال قيمة للحقل المطلوب"
4237
+
4238
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4239
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4240
+ msgid "Select File"
4241
+ msgstr "حدد ملف"
4242
+
4243
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4244
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4245
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4246
+ msgid "Remove"
4247
+ msgstr "إزالة"
4248
+
4249
+ #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4250
+ msgid "You can add the information for the %s after you add a entry"
4251
+ msgstr "يمكنك إضافة المعلومات ل %s بعد إضافة إدخال"
4252
+
4253
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4254
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4255
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4256
+ msgid "Upload "
4257
+ msgstr "رفع"
4258
+
4259
+ #: profile-builder-2.0/features/class-list-table.php:184
4260
+ msgid "No items found."
4261
+ msgstr "لاتوجد نتائج."
4262
+
4263
+ #: profile-builder-2.0/features/class-list-table.php:308
4264
+ msgid "Bulk Actions"
4265
+ msgstr "إجراءات جملة"
4266
+
4267
+ #: profile-builder-2.0/features/class-list-table.php:318
4268
+ msgid "Apply"
4269
+ msgstr "تطبيق"
4270
+
4271
+ #: profile-builder-2.0/features/class-list-table.php:402
4272
+ msgid "Show all dates"
4273
+ msgstr "إظهار كل التواريخ"
4274
+
4275
+ #: profile-builder-2.0/features/class-list-table.php:415
4276
+ msgid "%1$s %2$d"
4277
+ msgstr "%1$s %2$d"
4278
+
4279
+ #: profile-builder-2.0/features/class-list-table.php:431
4280
+ msgid "List View"
4281
+ msgstr "عرض القائمة"
4282
+
4283
+ #: profile-builder-2.0/features/class-list-table.php:432
4284
+ msgid "Excerpt View"
4285
+ msgstr "عرض مقتطف"
4286
+
4287
+ #: profile-builder-2.0/features/class-list-table.php:458
4288
+ msgid "%s pending"
4289
+ msgstr "%s معلقة"
4290
+
4291
+ #: profile-builder-2.0/features/class-list-table.php:566
4292
+ msgid "%1$s of %2$s"
4293
+ msgstr "%1$s من %2$s"
4294
+
4295
+ #: profile-builder-2.0/features/class-list-table.php:713
4296
+ msgid "Select All"
4297
+ msgstr "تحديد الكل"
4298
+
4299
+ #: profile-builder-2.0/features/functions.php:526
4300
+ msgid "Strength indicator"
4301
+ msgstr "مؤشر القوة"
4302
+
4303
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4304
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4305
+ msgid "Admin Approval"
4306
+ msgstr "موافقة المشرف"
4307
+
4308
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4309
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4310
+ msgid "Do you want to"
4311
+ msgstr "هل تريد أن"
4312
+
4313
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4314
+ msgid "Your session has expired! Please refresh the page and try again"
4315
+ msgstr "انتهت صلاحية جلسة العمل الخاصة بك! يرجى تحديث الصفحة وحاول مرة أخرى"
4316
+
4317
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
4318
+ msgid "User successfully approved!"
4319
+ msgstr "تمت الموافقة على المستخدم بنجاح"
4320
+
4321
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:74
4322
+ msgid "User successfully unapproved!"
4323
+ msgstr "تم إلغاء الموافقة للمستخدم بنجاح!"
4324
+
4325
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:80
4326
+ msgid "User successfully deleted!"
4327
+ msgstr "تم حذف المستخدم بنجاح!"
4328
+
4329
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:85
4330
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:131
4331
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
4332
+ msgid "You either don't have permission for that action or there was an error!"
4333
+ msgstr "إما لم يكن لديك صلاحية لهذا الإجراء أو كان هناك خطأ!"
4334
+
4335
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
4336
+ msgid "Your session has expired! Please refresh the page and try again."
4337
+ msgstr "انتهت صلاحية جلسة العمل الخاصة بك! يرجى تحديث الصفحة وحاول مرة أخرى."
4338
+
4339
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
4340
+ msgid "Users successfully approved!"
4341
+ msgstr "تمت الموافقة على المستخدمين بنجاح!"
4342
+
4343
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:119
4344
+ msgid "Users successfully unapproved!"
4345
+ msgstr "تم إلغاء الموافقة للمستخدمين بنجاح!"
4346
+
4347
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:127
4348
+ msgid "Users successfully deleted!"
4349
+ msgstr "تم حذف المستخدمين بنجاح!"
4350
+
4351
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:147
4352
+ msgid "Your account on %1$s has been approved!"
4353
+ msgstr "تمت الموافقة على حسابك في%1$s !"
4354
+
4355
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:148
4356
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:151
4357
+ msgid "approved"
4358
+ msgstr "موافقة"
4359
+
4360
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4361
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
4362
+ msgstr "لقد وافق المشرف على حسابك للتو على %1$s (%2$s)."
4363
+
4364
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:155
4365
+ msgid "Your account on %1$s has been unapproved!"
4366
+ msgstr "لم يتم اعتماد حسابك على %1$s"
4367
+
4368
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:156
4369
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:159
4370
+ msgid "unapproved"
4371
+ msgstr "إلغاء الموافقة"
4372
+
4373
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:158
4374
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4375
+ msgstr "لم يوافق المشرف سوى على حسابك في %1$s (%2$s)."
4376
+
4377
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
4378
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4379
+ msgstr "<strong> خطأ </ strong>: يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من تسجيل الدخول."
4380
+
4381
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
4382
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4383
+ msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من استخدام ميزة \"استعادة كلمة المرور\"."
4384
+
4385
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4386
+ msgid "delete this user?"
4387
+ msgstr "حذف هذا المستخدم؟"
4388
+
4389
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4390
+ msgid "unapprove this user?"
4391
+ msgstr "إلغاء الموافقة على هذا المستخدم؟"
4392
+
4393
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4394
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4395
+ msgid "Unapprove"
4396
+ msgstr "إلغاء الموافقة"
4397
+
4398
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4399
+ msgid "approve this user?"
4400
+ msgstr "الموافقة على هذا المستخدم؟"
4401
+
4402
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4403
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4404
+ msgid "Approve"
4405
+ msgstr "موافقة"
4406
+
4407
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4408
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:278
4409
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:742
4410
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2224
4411
+ msgid "Firstname"
4412
+ msgstr "الاسم الأول"
4413
+
4414
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4415
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:745
4416
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2225
4417
+ msgid "Lastname"
4418
+ msgstr "الاسم الأخير"
4419
+
4420
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4421
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:149
4422
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:279
4423
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:772
4424
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2229
4425
+ msgid "Role"
4426
+ msgstr "دور"
4427
+
4428
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4429
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4430
+ msgid "Registered"
4431
+ msgstr "مسجل"
4432
+
4433
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4434
+ msgid "User-status"
4435
+ msgstr "خالة المستخدم"
4436
+
4437
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4438
+ msgid "Do you want to bulk approve the selected users?"
4439
+ msgstr "هل تريد الموافقة على مجموعة المستخدمين المحددين؟"
4440
+
4441
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4442
+ msgid "Do you want to bulk unapprove the selected users?"
4443
+ msgstr "هل تريد إلغاء الموافقة على مجموعة المستخدمين المحددين؟"
4444
+
4445
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4446
+ msgid "Do you want to bulk delete the selected users?"
4447
+ msgstr "هل تريد الحذف على مجموعة المستخدمين المحددين؟"
4448
+
4449
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4450
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4451
+ msgid "Sorry, but you don't have permission to do that!"
4452
+ msgstr "نأسف, ليس لديك الصلاحيات لفعل ذلك."
4453
+
4454
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4455
+ msgid "Approved"
4456
+ msgstr "موافقة"
4457
+
4458
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4459
+ msgid "Unapproved"
4460
+ msgstr "إلغاء الموافقة"
4461
+
4462
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4463
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4464
+ msgid "All Users"
4465
+ msgstr "كل المستخدمين"
4466
+
4467
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4468
+ msgid "delete this user from the _signups table?"
4469
+ msgstr "هل تريد حذف هذا المستخدم من جدول _signups؟"
4470
+
4471
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4472
+ msgid "confirm this email yourself?"
4473
+ msgstr "تأكيد البريد الإلكتروني بنفسك؟"
4474
+
4475
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4476
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4477
+ msgid "Confirm Email"
4478
+ msgstr "تأكيد البريد الإلكتروني"
4479
+
4480
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4481
+ msgid "resend the activation link?"
4482
+ msgstr "إعادة إرسال رابط التفعيل؟"
4483
+
4484
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4485
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4486
+ msgid "Resend Activation Email"
4487
+ msgstr "إعادة إرسال بريد التفعيل"
4488
+
4489
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4490
+ msgid "%s couldn't be deleted"
4491
+ msgstr "%s لا يمكن حذفها"
4492
+
4493
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4494
+ msgid "All users have been successfully deleted"
4495
+ msgstr "تم حذف جميع المستخدمين بنجاح"
4496
+
4497
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4498
+ msgid "The selected users have been activated"
4499
+ msgstr "تم تنشيط المستخدمين المحددين"
4500
+
4501
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4502
+ msgid "The selected users have had their activation emails resent"
4503
+ msgstr "تمت إعادة توجيه رسائل البريد الإلكتروني للتفعيل"
4504
+
4505
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4506
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4507
+ msgid "Users with Unconfirmed Email Address"
4508
+ msgstr "المستخدمون الذين لديهم عنوان بريد إلكتروني غير مؤكد"
4509
+
4510
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
4511
+ msgid "There was an error performing that action!"
4512
+ msgstr "حدث خطأ أثناء تنفيذ هذا الإجراء!"
4513
+
4514
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
4515
+ msgid "The selected user couldn't be deleted"
4516
+ msgstr "تعذر حذف المستخدم المحدد"
4517
+
4518
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
4519
+ msgid "Email notification resent to user"
4520
+ msgstr "تم إعادة إرسال إشعار البريد الإلكتروني للمستخدم"
4521
+
4522
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
4523
+ msgid "[%1$s] Activate %2$s"
4524
+ msgstr "[%1$s] تفعيل %2$s"
4525
+
4526
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
4527
+ #: profile-builder-2.0/front-end/register.php:71
4528
+ msgid "Could not create user!"
4529
+ msgstr "تعذر إنشاء المستخدم!"
4530
+
4531
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
4532
+ msgid "That username is already activated!"
4533
+ msgstr "تم تفعيل هذا المستخدم مسبقاً!"
4534
+
4535
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468
4536
+ msgid "There was an error while trying to activate the user"
4537
+ msgstr "حدث خطأ أثناء محاولة تفعيل المستخدم"
4538
+
4539
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516
4540
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4541
+ msgid "A new subscriber has (been) registered!"
4542
+ msgstr "قد تم تسجيل مشترك جديد (تم)!"
4543
+
4544
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
4545
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4546
+ msgstr "مشترك جديد في %1$s. <br/> <br/> اسم المستخدم:%2$s<br/> البريد الإلكتروني:%3$s<br/>"
4547
+
4548
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
4549
+ msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
4550
+ msgstr "تم تفعيل ميزة \"موافقة المشرف\" في وقت التسجيل، لذا يرجى تذكر أنك بحاجة إلى الموافقة على هذا المستخدم قبل أن يتمكن من تسجيل الدخول."
4551
+
4552
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
4553
+ msgid "[%1$s] Your new account information"
4554
+ msgstr "[%1$s] معلومات حسابك الجديد"
4555
+
4556
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
4557
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4558
+ msgstr "مرحبا بك في %1$s! <br/> <br/> <br/> اسم المستخدم الخاص بك هو: %2$s وكلمة المرور: %3$s"
4559
+
4560
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
4561
+ #: profile-builder-2.0/front-end/register.php:125
4562
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4563
+ msgstr "قبل أن تتمكن من الدخول إلى حسابك، يحتاج المشرف إلى الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني."
4564
+
4565
+ #: profile-builder-2.0/features/login-widget/login-widget.php:10
4566
+ msgid "This login widget lets you add a login form in the sidebar."
4567
+ msgstr "هذه الودجت تتيح لك إضافة نموذج تسجيل الدخول في الشريط الجانبي."
4568
+
4569
+ #: profile-builder-2.0/features/login-widget/login-widget.php:15
4570
+ msgid "Profile Builder Login Widget"
4571
+ msgstr "ودجت تسجيل الدخول Profile Builder"
4572
+
4573
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4574
+ #: profile-builder-2.0/front-end/class-formbuilder.php:415
4575
+ #: profile-builder-2.0/front-end/login.php:250
4576
+ msgid "Register"
4577
+ msgstr "تسجيل عضو جديد"
4578
+
4579
+ #: profile-builder-2.0/features/login-widget/login-widget.php:63
4580
+ msgid "Title:"
4581
+ msgstr "العنوان:"
4582
+
4583
+ #: profile-builder-2.0/features/login-widget/login-widget.php:68
4584
+ msgid "After login redirect URL (optional):"
4585
+ msgstr "URL إعادة توجيه تسجيل الدخول (اختياري):"
4586
+
4587
+ #: profile-builder-2.0/features/login-widget/login-widget.php:73
4588
+ msgid "Register page URL (optional):"
4589
+ msgstr "URL التسجيل (اختياري):"
4590
+
4591
+ #: profile-builder-2.0/features/login-widget/login-widget.php:78
4592
+ msgid "Password Recovery page URL (optional):"
4593
+ msgstr "URL استعادة كلمة المرور (اختياري):"
4594
+
4595
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4596
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4597
+ msgid "The usernames cannot be changed."
4598
+ msgstr "اسم المستخدم لا يمكن تغييره."
4599
+
4600
+ #: profile-builder-2.0/front-end/class-formbuilder.php:136
4601
+ msgid "Only an administrator can add new users."
4602
+ msgstr "يمكن للمشرف فقط إضافة مستخدمين جدد."
4603
+
4604
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
4605
+ msgid "Users can register themselves or you can manually create users here."
4606
+ msgstr "بإمكان المستخدمين تسجيل عضويتهم أو بإمكانك إضافة أعضاء جدد في هذه الشاشة."
4607
+
4608
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
4609
+ msgid "Users cannot currently register themselves, but you can manually create users here."
4610
+ msgstr "لا يمكن للمستخدمين تسجيل أنفسهم حاليا، ولكن يمكنك إنشاء المستخدمين يدويا هنا."
4611
+
4612
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4613
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
4614
+ msgstr "أنت الآن مسجل الدخول بالمستخدم %1s. لا تحتاج إلى حساب آخر. %2s"
4615
+
4616
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4617
+ msgid "Log out of this account."
4618
+ msgstr "تسجيل الخروج من هذا الحساب"
4619
+
4620
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4621
+ msgid "Logout"
4622
+ msgstr "تسجيل الخروج"
4623
+
4624
+ #: profile-builder-2.0/front-end/class-formbuilder.php:175
4625
+ msgid "You must be logged in to edit your profile."
4626
+ msgstr "يجب تسجيل الدخول لتعديل ملفك الشخصي."
4627
+
4628
+ #: profile-builder-2.0/features/functions.php:994
4629
+ msgid "here"
4630
+ msgstr "هنا"
4631
+
4632
+ #: profile-builder-2.0/features/functions.php:995
4633
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4634
+ msgstr "سيتم قريبا إعادة توجيهك تلقائيا. إذا رأيت هذه الصفحة لأكثر من %1$d ثانية، يرجى النقر %2$s.%3$s"
4635
+
4636
+ #: profile-builder-2.0/front-end/class-formbuilder.php:315
4637
+ #: profile-builder-2.0/front-end/class-formbuilder.php:322
4638
+ msgid "The account %1s has been successfully created!"
4639
+ msgstr "تم إنشاء الحساب %1s بنجاح!"
4640
+
4641
+ #: profile-builder-2.0/front-end/class-formbuilder.php:318
4642
+ #: profile-builder-2.0/front-end/class-formbuilder.php:328
4643
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4644
+ msgstr "قبل أن تتمكن من الدخول إلى حسابك %1s، يجب تأكيد عنوان بريدك الإلكتروني. يرجى التحقق من البريد الوارد والنقر على رابط التفعيل."
4645
+
4646
+ #: profile-builder-2.0/front-end/class-formbuilder.php:324
4647
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4648
+ msgstr "قبل أن تتمكن من الدخول إلى حسابك %1s، يحتاج المشرف إلى الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني."
4649
+
4650
+ #: profile-builder-2.0/front-end/class-formbuilder.php:347
4651
+ msgid "Your profile has been successfully updated!"
4652
+ msgstr "تم تحديث ملفك الشخصي بنجاح!"
4653
+
4654
+ #: profile-builder-2.0/front-end/class-formbuilder.php:358
4655
+ msgid "There was an error in the submitted form"
4656
+ msgstr "حدث خطأ في النموذج المقدم"
4657
+
4658
+ #: profile-builder-2.0/front-end/class-formbuilder.php:415
4659
+ msgid "Add User"
4660
+ msgstr "أضف مستخدم جديد"
4661
+
4662
+ #: profile-builder-2.0/admin/add-ons.php:170
4663
+ #: profile-builder-2.0/front-end/class-formbuilder.php:418
4664
+ msgid "Update"
4665
+ msgstr "تحديث"
4666
+
4667
+ #: profile-builder-2.0/front-end/class-formbuilder.php:481
4668
+ msgid "Send these credentials via email."
4669
+ msgstr "إرسال كلمة المرور عن طريق البريد الإلكتروني"
4670
+
4671
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4672
+ #: profile-builder-2.0/front-end/login.php:137
4673
+ #: profile-builder-2.0/front-end/login.php:144
4674
+ #: profile-builder-2.0/front-end/login.php:158
4675
+ #: profile-builder-2.0/front-end/recover.php:17
4676
+ #: profile-builder-2.0/front-end/recover.php:245
4677
+ msgid "ERROR"
4678
+ msgstr "خطأ"
4679
+
4680
+ #: profile-builder-2.0/front-end/login.php:137
4681
+ msgid "The password you entered is incorrect."
4682
+ msgstr "كلمة المرور التي أدخلتها غير صحيحة."
4683
+
4684
+ #: profile-builder-2.0/front-end/login.php:138
4685
+ #: profile-builder-2.0/front-end/login.php:145
4686
+ msgid "Password Lost and Found."
4687
+ msgstr "تم فقدان كلمة المرور واسترجاعها"
4688
+
4689
+ #: profile-builder-2.0/front-end/login.php:138
4690
+ #: profile-builder-2.0/front-end/login.php:145
4691
+ msgid "Lost your password"
4692
+ msgstr "نسيت كلمة المرور"
4693
+
4694
+ #: profile-builder-2.0/front-end/login.php:158
4695
+ msgid "Both fields are empty."
4696
+ msgstr "كلا الحقلين فارغين"
4697
+
4698
+ #: profile-builder-2.0/front-end/login.php:296
4699
+ msgid "You are currently logged in as %1$s. %2$s"
4700
+ msgstr "أنت الآن مسجل الدخول بالمستخدم %1$s. %2$s"
4701
+
4702
+ #: profile-builder-2.0/front-end/login.php:295
4703
+ #: profile-builder-2.0/front-end/logout.php:25
4704
+ msgid "Log out of this account"
4705
+ msgstr "تسجيل الخروج من هذا الحساب"
4706
+
4707
+ #: profile-builder-2.0/front-end/login.php:295
4708
+ msgid "Log out"
4709
+ msgstr "تسجيل الخروج"
4710
+
4711
+ #: profile-builder-2.0/front-end/recover.php:17
4712
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4713
+ msgstr "يجب تأكيد حسابك من قبل المشرف قبل أن تتمكن من استخدام ميزة \"استعادة كلمة المرور\"."
4714
+
4715
+ #: profile-builder-2.0/front-end/recover.php:94
4716
+ msgid "Reset Password"
4717
+ msgstr "إعادة كلمة المرور"
4718
+
4719
+ #: profile-builder-2.0/front-end/recover.php:121
4720
+ msgid "Please enter your username or email address."
4721
+ msgstr "الرجاء إدخال اسم المستخدم أو عنوان البريد الإلكتروني."
4722
+
4723
+ #: profile-builder-2.0/front-end/recover.php:125
4724
+ msgid "You will receive a link to create a new password via email."
4725
+ msgstr "ستتلقى رابطا لإنشاء كلمة مرور جديدة عبر البريد الإلكتروني."
4726
+
4727
+ #: profile-builder-2.0/front-end/recover.php:122
4728
+ msgid "Username or E-mail"
4729
+ msgstr "أسم المستخدم او البريد الإلكتروني"
4730
+
4731
+ #: profile-builder-2.0/front-end/recover.php:138
4732
+ msgid "Get New Password"
4733
+ msgstr "احصل على كلمة سر جديدة"
4734
+
4735
+ #: profile-builder-2.0/front-end/recover.php:185
4736
+ msgid "The username entered wasn't found in the database!"
4737
+ msgstr "لم يتم العثور على اسم المستخدم الذي تم إدخاله في قاعدة البيانات!"
4738
+
4739
+ #: profile-builder-2.0/front-end/recover.php:185
4740
+ msgid "Please check that you entered the correct username."
4741
+ msgstr "يرجى التحقق من إدخال اسم المستخدم الصحيح."
4742
+
4743
+ #: profile-builder-2.0/front-end/recover.php:200
4744
+ msgid "Check your e-mail for the confirmation link."
4745
+ msgstr "تحقق من بريدك الإلكتروني للحصول على رابط التأكيد."
4746
+
4747
+ #: profile-builder-2.0/front-end/recover.php:235
4748
+ msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
4749
+ msgstr "طلب أحد الأشخاص إعادة تعيين كلمة المرور للحساب التالي: <b>%1$s</ b> <br/> إذا كان هذا خطأ، فتجاهل هذه الرسالة الإلكترونية ولن يحدث أي شيء. <br/> لإعادة تعيين كلمة المرور ، انتقل إلى الرابط التالي:%2$s"
4750
+
4751
+ #: profile-builder-2.0/front-end/recover.php:238
4752
+ msgid "Password Reset from \"%1$s\""
4753
+ msgstr "إعادة تعيين كلمة المرور من \"%1$s\""
4754
+
4755
+ #: profile-builder-2.0/front-end/recover.php:245
4756
+ msgid "There was an error while trying to send the activation link to %1$s!"
4757
+ msgstr "حدث خطأ أثناء محاولة إرسال رابط التفعيل إلى %1$s!"
4758
+
4759
+ #: profile-builder-2.0/front-end/recover.php:207
4760
+ msgid "The email address entered wasn't found in the database!"
4761
+ msgstr "لم يتم العثور على عنوان البريد الإلكتروني الذي تم إدخاله في قاعدة البيانات!"
4762
+
4763
+ #: profile-builder-2.0/front-end/recover.php:207
4764
+ msgid "Please check that you entered the correct email address."
4765
+ msgstr "يرجى التحقق من إدخال البريد الإلكتروني الصحيح."
4766
+
4767
+ #: profile-builder-2.0/front-end/recover.php:273
4768
+ msgid "Your password has been successfully changed!"
4769
+ msgstr "كلمة السر الخاصة بك تم تغييرها بنجاح!"
4770
+
4771
+ #: profile-builder-2.0/front-end/recover.php:292
4772
+ msgid "You have successfully reset your password to: %1$s"
4773
+ msgstr "لقد أعدت تعيين كلمة المرور بنجاح إلى: %1$s"
4774
+
4775
+ #: profile-builder-2.0/front-end/recover.php:295
4776
+ #: profile-builder-2.0/front-end/recover.php:306
4777
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
4778
+ msgstr "تم بنجاح إعادة تعيين كلمة المرور ل %1$s على \"%2$s\""
4779
+
4780
+ #: profile-builder-2.0/front-end/recover.php:303
4781
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4782
+ msgstr "%1$s قام بطلب تغيير كلمة المرور عبر ميزة إعادة تعيين كلمة المرور. <br/> كلمة المرور الجديدة هي:%2$s"
4783
+
4784
+ #: profile-builder-2.0/front-end/recover.php:320
4785
+ msgid "The entered passwords don't match!"
4786
+ msgstr "لا تتطابق كلمات المرور المدخلة!"
4787
+
4788
+ #: profile-builder-2.0/front-end/recover.php:375
4789
+ msgid "ERROR:"
4790
+ msgstr "خطأ:"
4791
+
4792
+ #: profile-builder-2.0/front-end/recover.php:375
4793
+ msgid "Invalid key!"
4794
+ msgstr "مفتاح غير صالح!"
4795
+
4796
+ #: profile-builder-2.0/front-end/register.php:56
4797
+ msgid "Invalid activation key!"
4798
+ msgstr "مفتاح التنشيط غير صالح!"
4799
+
4800
+ #: profile-builder-2.0/front-end/register.php:60
4801
+ msgid "This username is now active!"
4802
+ msgstr "اسم المستخدم مفعل الآن!"
4803
+
4804
+ #: profile-builder-2.0/front-end/register.php:74
4805
+ msgid "This username is already activated!"
4806
+ msgstr "تم تفعيل هذا المستخدم مسبقاً!"
4807
+
4808
+ #: profile-builder-2.0/front-end/register.php:124
4809
+ msgid "Your email was successfully confirmed."
4810
+ msgstr "تم تأكيد بريدك الإلكتروني بنجاح."
4811
+
4812
+ #: profile-builder-2.0/front-end/register.php:153
4813
+ msgid "There was an error while trying to activate the user."
4814
+ msgstr "حدث خطأ أثناء محاولة تفعيل المستخدم."
4815
+
4816
+ #: pb-add-on-woocommerce/index.php:393
4817
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4818
+ msgid "The email you entered is not a valid email address."
4819
+ msgstr "البريد الإلكتروني الذي أدخلته ليس عنوان بريد إلكتروني صالح."
4820
+
4821
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4822
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4823
+ msgid "This email is already reserved to be used soon."
4824
+ msgstr "هذه الرسالة الإلكترونية محفوظة بالفعل لاستخدامها قريبا."
4825
+
4826
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4827
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4828
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4829
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4830
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4831
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4832
+ msgid "Please try a different one!"
4833
+ msgstr "الرجاء محاولة واحدة مختلفة!"
4834
+
4835
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4836
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4837
+ msgid "This email is already in use."
4838
+ msgstr "هذا البريد استخدم من قبل."
4839
+
4840
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4841
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4842
+ msgid "The passwords do not match"
4843
+ msgstr "كلمات السر لا تتطابق"
4844
+
4845
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4846
+ msgid "This username already exists."
4847
+ msgstr "اسم المستخدم هذا موجود بالفعل."
4848
+
4849
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4850
+ msgid "This username is already reserved to be used soon."
4851
+ msgstr "اسم المستخدم هذا محفوظ مسبقا لاستخدامه قريبا."
4852
+
4853
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:276
4854
+ msgid "Avatar"
4855
+ msgstr "الصورة الرمزية"
4856
+
4857
+ #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4858
+ #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4859
+ #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4860
+ #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4861
+ #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4862
+ #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4863
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4864
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4865
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4866
+ #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4867
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52
4868
+ #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4869
+ #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4870
+ #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4871
+ #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4872
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4873
+ #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4874
+ msgid "required"
4875
+ msgstr "مطلوب"
4876
+
4877
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48
4878
+ msgid "To use reCAPTCHA you must get an API key from"
4879
+ msgstr "لاستخدام ريكابتشا يجب أن تحصل على مفتاح عام لواجهة برمجة التطبيقات من"
4880
+
4881
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
4882
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4883
+ msgstr "لأسباب أمنية، يجب تمرير عنوان بروتوكول الإنترنت عن بعد ل ريكابتشا!"
4884
+
4885
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
4886
+ msgid "To use reCAPTCHA you must get an API public key from:"
4887
+ msgstr "لاستخدام ريكابتشا يجب أن تحصل على مفتاح عام لواجهة برمجة التطبيقات من:"
4888
+
4889
+ #: profile-builder-2.0/modules/modules.php:11
4890
+ #: profile-builder-2.0/modules/modules.php:58
4891
+ msgid "Modules"
4892
+ msgstr "وحدات"
4893
+
4894
+ #: profile-builder-2.0/modules/modules.php:59
4895
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4896
+ msgstr "هنا يمكنك تفعيل / إلغاء تفعيل الوحدات النمطية المتاحة ل Profile Builder."
4897
+
4898
+ #: profile-builder-2.0/modules/modules.php:69
4899
+ msgid "Name/Description"
4900
+ msgstr "اسم / الوصف"
4901
+
4902
+ #: profile-builder-2.0/modules/modules.php:70
4903
+ msgid "Status"
4904
+ msgstr "الحالة"
4905
+
4906
+ #: profile-builder-2.0/modules/modules.php:77
4907
+ #: profile-builder-2.0/modules/modules.php:84
4908
+ #: profile-builder-2.0/modules/modules.php:91
4909
+ #: profile-builder-2.0/modules/modules.php:98
4910
+ #: profile-builder-2.0/modules/modules.php:105
4911
+ #: profile-builder-2.0/modules/modules.php:112
4912
+ #: profile-builder-2.0/modules/modules.php:119
4913
+ msgid "Active"
4914
+ msgstr "مفعّل"
4915
+
4916
+ #: profile-builder-2.0/modules/modules.php:78
4917
+ #: profile-builder-2.0/modules/modules.php:85
4918
+ #: profile-builder-2.0/modules/modules.php:92
4919
+ #: profile-builder-2.0/modules/modules.php:99
4920
+ #: profile-builder-2.0/modules/modules.php:106
4921
+ #: profile-builder-2.0/modules/modules.php:113
4922
+ #: profile-builder-2.0/modules/modules.php:120
4923
+ msgid "Inactive"
4924
+ msgstr "غير مفعّل"
4925
+
4926
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4927
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4928
+ #: profile-builder-2.0/modules/modules.php:96
4929
+ msgid "Admin Email Customizer"
4930
+ msgstr "مخصص البريد الإلكتروني للمشرف"
4931
+
4932
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4933
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4934
+ #: profile-builder-2.0/modules/modules.php:103
4935
+ msgid "User Email Customizer"
4936
+ msgstr "مخصص البريد الإلكتروني"
4937
+
4938
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
4939
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253
4940
+ msgid "Save"
4941
+ msgstr "حفظ"
4942
+
4943
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4944
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4945
+ msgid "Redirect"
4946
+ msgstr "إعادة توجيه"
4947
+
4948
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4949
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4950
+ msgid "URL"
4951
+ msgstr "URL"
4952
+
4953
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4954
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4955
+ msgstr "يتم نسخ هذه الإعدادات أيضا في إعدادات \"مخصص البريد الإلكتروني للمستخدم\" عند الحفظ."
4956
+
4957
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4958
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4959
+ msgid "From (name)"
4960
+ msgstr "من (الاسم)"
4961
+
4962
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4963
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4964
+ msgid "From (reply-to email)"
4965
+ msgstr "من (الرد إلى البريد الإلكتروني)"
4966
+
4967
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4968
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4969
+ msgid "Common Settings"
4970
+ msgstr "الإعدادات العامة"
4971
+
4972
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4973
+ msgid ""
4974
+ "\n"
4975
+ "<p>New subscriber on {{site_name}}.</p>\n"
4976
+ "<p>Username:{{username}}</p>\n"
4977
+ "<p>E-mail:{{user_email}}</p>\n"
4978
+ msgstr ""
4979
+ "\n"
4980
+ "<p> مشترك جديد في {{site_name}}. </ p>\n"
4981
+ "<p> اسم المستخدم: {{username}} </ P>\n"
4982
+ "<p> البريد الالكتروني: {{user_email}} </ P>\n"
4983
+
4984
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4985
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4986
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4987
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4988
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4989
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4990
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4991
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4992
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4993
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4994
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4995
+ msgid "Email Subject"
4996
+ msgstr "موضوع البريد الإلكتروني"
4997
+
4998
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
4999
+ msgid "Default Registration & Registration with Email Confirmation"
5000
+ msgstr "التسجيل الافتراضي والتسجيل مع تأكيد البريد الإلكتروني"
5001
+
5002
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
5003
+ msgid ""
5004
+ "\n"
5005
+ "<p>New subscriber on {{site_name}}.</p>\n"
5006
+ "<p>Username:{{username}}</p>\n"
5007
+ "<p>E-mail:{{user_email}}</p>\n"
5008
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
5009
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
5010
+ msgstr ""
5011
+ "\n"
5012
+ "<p> مشترك جديد في {{site_name}}. </ p>\n"
5013
+ "<p> اسم المستخدم: {{username}} </ P>\n"
5014
+ "<p> البريد الالكتروني: {{user_email}} </ P>\n"
5015
+ "<p> تم تنشيط ميزة الموافقة على المشرف في وقت التسجيل،\n"
5016
+ "لذا يرجى تذكر أنك تحتاج إلى الموافقة على هذا المستخدم قبل أن يتمكن من تسجيل الدخول! </ p>\n"
5017
+
5018
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5019
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
5020
+ msgid "Registration with Admin Approval"
5021
+ msgstr "التسجيل باستخدام موافقة المشرف"
5022
+
5023
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
5024
+ msgid "Available Tags"
5025
+ msgstr "الوسوم المتاحة"
5026
+
5027
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
5028
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
5029
+ msgid "User Meta"
5030
+ msgstr "ميتا المستخدم"
5031
+
5032
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
5033
+ msgid "Site Url"
5034
+ msgstr "رابط الموقع"
5035
+
5036
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
5037
+ msgid "Site Name"
5038
+ msgstr "اسم الموقع"
5039
+
5040
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
5041
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:158
5042
+ msgid "User Id"
5043
+ msgstr "معرف المستخدم"
5044
+
5045
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
5046
+ msgid "Reply To"
5047
+ msgstr "الرد على"
5048
+
5049
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40
5050
+ msgid "Activation Key"
5051
+ msgstr "مفتاح التفعيل"
5052
+
5053
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41
5054
+ msgid "Activation Url"
5055
+ msgstr "Url التفعيل"
5056
+
5057
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
5058
+ msgid "Activation Link"
5059
+ msgstr "رابط التفعيل"
5060
+
5061
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5062
+ msgid ""
5063
+ "\n"
5064
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5065
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5066
+ msgstr ""
5067
+ "\n"
5068
+ "<h3> مرحبا بك في {{site_name}}! </ h3>\n"
5069
+ "<p> اسم المستخدم هو: {{username}} وكلمة المرور: {{password}} </ p>\n"
5070
+
5071
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5072
+ msgid "Default Registration"
5073
+ msgstr "التسجيل الافتراضي"
5074
+
5075
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5076
+ msgid ""
5077
+ "\n"
5078
+ "<p>To activate your user, please click the following link:<br/>\n"
5079
+ "{{{activation_link}}}</p>\n"
5080
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
5081
+ msgstr ""
5082
+ "\n"
5083
+ "<p> لتنشيط المستخدم، يرجى النقر على الرابط التالي: <br/>\n"
5084
+ "{{{activation_link}}} </ P>\n"
5085
+ "<p> بعد التنشيط، ستتلقى رسالة بريد إلكتروني أخرى تتضمن بيانات اعتمادك. </ p>\n"
5086
+
5087
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5088
+ msgid "[{{site_name}}] Activate {{username}}"
5089
+ msgstr "[{{site_name}}] تفعيل {{username}}"
5090
+
5091
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5092
+ msgid "Registration with Email Confirmation"
5093
+ msgstr "التسجيل مع تأكيد البريد الإلكتروني"
5094
+
5095
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5096
+ msgid ""
5097
+ "\n"
5098
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5099
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5100
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
5101
+ msgstr ""
5102
+ "\n"
5103
+ "<h3> مرحبا بك في {{site_name}}! </ h3>\n"
5104
+ "<p> اسم المستخدم هو: {{username}} وكلمة المرور: {{password}} </ p>\n"
5105
+ "<p> قبل أن تتمكن من الدخول إلى حسابك، يجب على المشرف الموافقة عليه. سيتم إعلامك عبر البريد الإلكتروني. </ p>\n"
5106
+
5107
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5108
+ msgid "A new account has been created for you on {{site_name}}"
5109
+ msgstr "تم إنشاء حساب جديد لك على {{site_name}}"
5110
+
5111
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5112
+ msgid ""
5113
+ "\n"
5114
+ "<h3>Good News!</h3>\n"
5115
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5116
+ msgstr ""
5117
+ "\n"
5118
+ "<h3> أخبار جيدة! </ h3>\n"
5119
+ "<p> وافق المشرف على حسابك: {{username}} على {{site_name}}. </ p>\n"
5120
+
5121
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5122
+ msgid "Your account on {{site_name}} has been approved!"
5123
+ msgstr "تمت الموافقة على حسابك في {{site_name}}!"
5124
+
5125
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5126
+ msgid "User Approval Notification"
5127
+ msgstr "إشعار الموافقة على المستخدم"
5128
+
5129
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5130
+ msgid ""
5131
+ "\n"
5132
+ "<h3>Hello,</h3>\n"
5133
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5134
+ msgstr ""
5135
+ "\n"
5136
+ "<H3> مرحبا، </ H3>\n"
5137
+ "<p> للأسف، لم قام المشرف بعدم الموافقة على حسابك: {{username}} على {{site_name}}. </ p>\n"
5138
+
5139
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5140
+ msgid "Your account on {{site_name}} has been unapproved!"
5141
+ msgstr "لم تتم الموافقة على حسابك في {{site_name}}!"
5142
+
5143
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5144
+ msgid "Unapproved User Notification"
5145
+ msgstr "إشعار مستخدم غير موافق عليه"
5146
+
5147
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5148
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5149
+ msgid "Edit-profile Form"
5150
+ msgstr "استمارة تعديل الملف الشخصي"
5151
+
5152
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5153
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5154
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5155
+ msgid "Add New"
5156
+ msgstr "إضافة جديد"
5157
+
5158
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5159
+ msgid "Add new Edit-profile Form"
5160
+ msgstr "إضافة استمارة جديدة لتعديل الملف الشخصي"
5161
+
5162
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5163
+ msgid "Edit the Edit-profile Forms"
5164
+ msgstr "تعديل استمارات تعديل الملف الشخصي"
5165
+
5166
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5167
+ msgid "New Edit-profile Form"
5168
+ msgstr "استمارة تعديل الملف الشخصي جديدة"
5169
+
5170
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5171
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5172
+ msgid "Edit-profile Forms"
5173
+ msgstr "استمارات تعديل الملف الشخصي"
5174
+
5175
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5176
+ msgid "View the Edit-profile Form"
5177
+ msgstr "عرض نموذج تعديل الملف الشخصي"
5178
+
5179
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5180
+ msgid "Search the Edit-profile Forms"
5181
+ msgstr "ابحث في نماذج تعديل الملف الشخصي"
5182
+
5183
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5184
+ msgid "No Edit-profile Form found"
5185
+ msgstr "لم يتم العثور على نموذج تعديل الملف الشخصي"
5186
+
5187
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5188
+ msgid "No Edit-profile Forms found in trash"
5189
+ msgstr "لم يتم العثور على نماذج تعديل الملف الشخصي في المهملات"
5190
+
5191
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5192
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5193
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2115
5194
+ msgid "Shortcode"
5195
+ msgstr "رمز قصير"
5196
+
5197
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5198
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5199
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5200
+ msgid "(no title)"
5201
+ msgstr "(لايوجد عنوان)"
5202
+
5203
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5204
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5205
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2156
5206
+ msgid "The shortcode will be available after you publish this form."
5207
+ msgstr "سيكون الرمز القصير متاحا بعد نشر هذا النموذج."
5208
+
5209
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5210
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5211
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5212
+ msgid "Use this shortcode on the page you want the form to be displayed:"
5213
+ msgstr "استخدم هذا الرمز القصير في الصفحة التي تريد عرض النموذج عليها:"
5214
+
5215
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5216
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5217
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5218
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5219
+ msgstr "<span style=\"color:red;\">ملاحظة:</span> يؤدي تغيير عنوان النموذج أيضا إلى تغيير الرمز القصير!!"
5220
+
5221
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5222
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5223
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
5224
+ msgid "Form Shortcode"
5225
+ msgstr "شكل رمز قصير"
5226
+
5227
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5228
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5229
+ msgid "Whether to redirect the user to a specific page or not"
5230
+ msgstr "سواء لإعادة توجيه المستخدم إلى صفحة معينة أم لا"
5231
+
5232
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5233
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5234
+ msgid "Display Messages"
5235
+ msgstr "عرض الرسائل"
5236
+
5237
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5238
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5239
+ msgid "Allowed time to display any success messages (in seconds)"
5240
+ msgstr "الوقت المسموح به لعرض أية رسائل نجاح (بالثواني)"
5241
+
5242
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5243
+ msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
5244
+ msgstr "حدد عنوان URL للصفحة التي سيتم إعادة توجيه المستخدمين إليها بعد تحديث ملفهم الشخصي باستخدام هذا النموذج <br/> استخدم التنسيق التالي: http://www.mysite.com"
5245
+
5246
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5247
+ msgid "After Profile Update..."
5248
+ msgstr "بعد تعديل الملف الشخصي..."
5249
+
5250
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5251
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5252
+ msgid "Add New Field to the List"
5253
+ msgstr "Add New Field to the List"
5254
+
5255
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5256
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5257
+ msgid "Choose one of the supported fields you manage <a href=\""
5258
+ msgstr "اختر أحد الحقول المدعومة التي تديرها <a href= \""
5259
+
5260
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5261
+ msgid "<pre>Title (Type)</pre>"
5262
+ msgstr "<pre>العنوان (نوع)</pre>"
5263
+
5264
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5265
+ msgid "You need to specify the title of the form before creating it"
5266
+ msgstr "يجب تحديد عنوان النموذج قبل إنشائه"
5267
+
5268
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5269
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5270
+ msgid "Registration Form"
5271
+ msgstr "استمارة تسجيل"
5272
+
5273
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5274
+ msgid "Add new Registration Form"
5275
+ msgstr "إضافة استمارة تسجيل جديده"
5276
+
5277
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5278
+ msgid "Edit the Registration Forms"
5279
+ msgstr "تعديل نماذج التسجيل"
5280
+
5281
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5282
+ msgid "New Registration Form"
5283
+ msgstr "استمارة تسجيل جديده"
5284
+
5285
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5286
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5287
+ msgid "Registration Forms"
5288
+ msgstr "نماذج التسجيل"
5289
+
5290
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5291
+ msgid "View the Registration Form"
5292
+ msgstr "عرض نموذج التسجيل"
5293
+
5294
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5295
+ msgid "Search the Registration Forms"
5296
+ msgstr "ابحث في نماذج التسجيل"
5297
+
5298
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5299
+ msgid "No Registration Form found"
5300
+ msgstr "لم يتم العثور على نموذج تسجيل"
5301
+
5302
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5303
+ msgid "No Registration Forms found in trash"
5304
+ msgstr "لم يتم العثور على نماذج تسجيل في المهملات"
5305
+
5306
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5307
+ msgid "Default Role"
5308
+ msgstr "الدور الافتراضي"
5309
+
5310
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5311
+ msgid "Set Role"
5312
+ msgstr "تعيين الدور"
5313
+
5314
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5315
+ msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
5316
+ msgstr "اختر الدور الذي سيحصل عليه المستخدم بعد تسجيله <br/> إذا لم يتم تحديده، فسيتم تعيين الإعدادات الافتراضية على الدور المحدد في إعدادات ووردبريس"
5317
+
5318
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5319
+ msgid "Automatically Log In"
5320
+ msgstr "تسجيل الدخول تلقائيا"
5321
+
5322
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5323
+ msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
5324
+ msgstr "ما إذا كان سيتم تسجيل الدخول تلقائيا إلى المستخدم المسجل حديثا أم لا <br/> يعمل فقط على مواقع فردية بدون تفعيل ميزة \"موافقة المشرف\" و \"تأكيد البريد الإلكتروني\" <br/> تحذير: يؤدي التخزين المؤقت لنموذج التسجيل إلى عدم تسجيل الدخول التلقائي"
5325
+
5326
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5327
+ msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
5328
+ msgstr "حدد عنوان Url للصفحة التي سيتم إعادة توجيه المستخدمين إليها بمجرد تسجيلهم باستخدام هذا النموذج <br/> استخدم التنسيق التالي: http://www.mysite.com"
5329
+
5330
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5331
+ msgid "After Registration..."
5332
+ msgstr "بعد التسجيل..."
5333
+
5334
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1038
5335
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1485
5336
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1953
5337
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2426
5338
+ msgid "Search Users by All Fields"
5339
+ msgstr "البحث عن المستخدمين من قبل جميع الحقول"
5340
+
5341
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5342
+ msgid "Add new User Listing"
5343
+ msgstr "إضافة قائمة مستخدم جديدة"
5344
+
5345
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5346
+ msgid "Edit the User Listing"
5347
+ msgstr "تعديل قائمة المستخدم"
5348
+
5349
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5350
+ msgid "New User Listing"
5351
+ msgstr "قائمة مستخدم جديدة"
5352
+
5353
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5354
+ msgid "View the User Listing"
5355
+ msgstr "عرض قائمة المستخدم"
5356
+
5357
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5358
+ msgid "Search the User Listing"
5359
+ msgstr "ابحث في قائمة المستخدم"
5360
+
5361
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5362
+ msgid "No User Listing found"
5363
+ msgstr "لم يتم العثور على قائمة مستخدمين"
5364
+
5365
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5366
+ msgid "No User Listing found in trash"
5367
+ msgstr "لم يتم العثور على قائمة مستخدمين في المهملات"
5368
+
5369
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:105
5370
+ msgid "Display name as"
5371
+ msgstr "إظهار الاسم ك"
5372
+
5373
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5374
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2223
5375
+ msgid "Registration Date"
5376
+ msgstr "تاريخ التسجيل"
5377
+
5378
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:151
5379
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2228
5380
+ msgid "Number of Posts"
5381
+ msgstr "عدد المقالات"
5382
+
5383
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:155
5384
+ msgid "More Info"
5385
+ msgstr "معلومات أكثر"
5386
+
5387
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:156
5388
+ msgid "More Info Url"
5389
+ msgstr "مزيد من المعلومات Url"
5390
+
5391
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:157
5392
+ msgid "Avatar or Gravatar"
5393
+ msgstr "صورة رمزية أو Gravatar"
5394
+
5395
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:196
5396
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:227
5397
+ msgid "Extra Functions"
5398
+ msgstr "وظائف إضافية"
5399
+
5400
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:199
5401
+ msgid "Pagination"
5402
+ msgstr "ترقيم الصفحات"
5403
+
5404
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:200
5405
+ msgid "Search all Fields"
5406
+ msgstr "بحث كل الحقول"
5407
+
5408
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:229
5409
+ msgid "Go Back Link"
5410
+ msgstr "رابط الرجوع للخلف"
5411
+
5412
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:247
5413
+ msgid "All-userlisting Template"
5414
+ msgstr "قالب قائمة جميع المستخدمين"
5415
+
5416
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:250
5417
+ msgid "Single-userlisting Template"
5418
+ msgstr "نموذج قائمة مستخدم واحد"
5419
+
5420
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:733
5421
+ msgid "First/Lastname"
5422
+ msgstr "الاسم الأول/الأخير"
5423
+
5424
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:281
5425
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:739
5426
+ msgid "Sign-up Date"
5427
+ msgstr "تاريخ التسجيل"
5428
+
5429
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:748
5430
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2226
5431
+ msgid "Display Name"
5432
+ msgstr "اسم العرض"
5433
+
5434
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:280
5435
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:757
5436
+ msgid "Posts"
5437
+ msgstr "المقالات"
5438
+
5439
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:760
5440
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2233
5441
+ msgid "Aim"
5442
+ msgstr "Aim"
5443
+
5444
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:763
5445
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2234
5446
+ msgid "Yim"
5447
+ msgstr "Yim"
5448
+
5449
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:766
5450
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2235
5451
+ msgid "Jabber"
5452
+ msgstr "Jabber"
5453
+
5454
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5455
+ msgid "Click here to see more information about this user"
5456
+ msgstr "انقر هنا للاطلاع على مزيد من المعلومات حول هذا المستخدم."
5457
+
5458
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5459
+ msgid "More..."
5460
+ msgstr "المزيد..."
5461
+
5462
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1293
5463
+ msgid "Click here to see more information about this user."
5464
+ msgstr "انقر هنا للاطلاع على مزيد من المعلومات حول هذا المستخدم."
5465
+
5466
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5467
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1442
5468
+ msgid "Click here to go back"
5469
+ msgstr "اضغط هنا للرجوع للخلف"
5470
+
5471
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5472
+ msgid "Back"
5473
+ msgstr "رجوع"
5474
+
5475
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1472
5476
+ msgid "&laquo;&laquo; First"
5477
+ msgstr "&laquo;&laquo; الأول"
5478
+
5479
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1473
5480
+ msgid "&laquo; Prev"
5481
+ msgstr "&laquo; السابق"
5482
+
5483
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1474
5484
+ msgid "Next &raquo; "
5485
+ msgstr "التالي &raquo; "
5486
+
5487
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1475
5488
+ msgid "Last &raquo;&raquo;"
5489
+ msgstr "آخر &raquo;&raquo;"
5490
+
5491
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1504
5492
+ msgid "You don't have any pagination settings on this userlisting!"
5493
+ msgstr "ليس لديك أي إعدادات ترقيم صفحات في قائمة المستخدمين!"
5494
+
5495
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1970
5496
+ msgid "Search"
5497
+ msgstr "بحث"
5498
+
5499
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1971
5500
+ msgid "Clear Results"
5501
+ msgstr "حذف النتائج"
5502
+
5503
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2165
5504
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
5505
+ msgid "Extra shortcode parameters"
5506
+ msgstr "معلمات اختصارات إضافية"
5507
+
5508
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
5509
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5510
+ msgstr "يعرض المستخدمين الذين لديهم قيمة وصفية معينة ضمن حقل ميتا (إضافي) معين"
5511
+
5512
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
5513
+ msgid "Example:"
5514
+ msgstr "مثال:"
5515
+
5516
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
5517
+ msgid "Remember though, that the field-value combination must exist in the database."
5518
+ msgstr "تذكر, أن مزيج قيمة الحقل يجب أن تكون موجودة في قاعدة البيانات."
5519
+
5520
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
5521
+ msgid "Random (very slow on large databases > 10K user)"
5522
+ msgstr "عشوائي (بطيء جدا على قواعد البيانات الكبيرة> 10 آلاف مستخدم)"
5523
+
5524
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5525
+ msgid "Roles to Display"
5526
+ msgstr "الأدوار التي يتم عرضها"
5527
+
5528
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5529
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5530
+ msgstr "قصر قائمة المستخدمين على هذه الأدوار المحددة فقط <br/> إذا لم يتم تحديدها، فسيكون افتراضيا لجميع الأدوار الحالية"
5531
+
5532
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5533
+ msgid "Number of Users/Page"
5534
+ msgstr "عدد المستخدمين / الصفحة"
5535
+
5536
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5537
+ msgid "Default Sorting Criteria"
5538
+ msgstr "معايير الفرز الإفتراضية"
5539
+
5540
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5541
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5542
+ msgstr "تعيين معايير الفرز الافتراضية <br/> يمكن تغيير هذا مؤقتا لكل جلسة جديدة"
5543
+
5544
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5545
+ msgid "Default Sorting Order"
5546
+ msgstr "ترتيب الفرز الإفتراضي"
5547
+
5548
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5549
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5550
+ msgstr "تعيين ترتيب الفرز الافتراضي <br/> يمكن تغيير هذا مؤقتا لكل جلسة جديدة"
5551
+
5552
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5553
+ msgid "Avatar Size (All-userlisting)"
5554
+ msgstr "حجم الصورة الرمزية (كل المستخدمين)"
5555
+
5556
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5557
+ msgid "Set the avatar size on the all-userlisting only"
5558
+ msgstr "تعيين حجم الصورة الرمزية على جميع-المستخدمين فقط"
5559
+
5560
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5561
+ msgid "Avatar Size (Single-userlisting)"
5562
+ msgstr "حجم الصورة الرمزية (قائمة مستخدم واحد)"
5563
+
5564
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5565
+ msgid "Set the avatar size on the single-userlisting only"
5566
+ msgstr "اضبط حجم الصورة الرمزية على قائمة المستخدمين الفردية فقط"
5567
+
5568
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5569
+ msgid "Visible only to logged in users?"
5570
+ msgstr "مرئية فقط للمستخدمين الذين سجلوا دخولهم؟"
5571
+
5572
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5573
+ msgid "The userlisting will only be visible only to the logged in users"
5574
+ msgstr "لن تكون قائمة المستخدمين مرئية إلا للمستخدمين المسجلين دخولهم"
5575
+
5576
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5577
+ msgid "Visible to following Roles"
5578
+ msgstr "مرئية للأدوار التالية"
5579
+
5580
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5581
+ msgid "The userlisting will only be visible to the following roles"
5582
+ msgstr "لن تكون قائمة المستخدمين مرئية إلا للأدوار التالية"
5583
+
5584
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2275
5585
+ msgid "Userlisting Settings"
5586
+ msgstr "إعدادات قائمة المستخدم"
5587
+
5588
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5589
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5590
+ msgstr "تحتاج إلى تفعيل ميزة عرض المستخدمين من داخل \"وحدات\" علامة التبويب!"
5591
+
5592
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5593
+ msgid "You can find it in the Profile Builder menu."
5594
+ msgstr "بإمكانك إيجادها في قائمة Profile Builder"
5595
+
5596
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
5597
+ msgid "No results found!"
5598
  msgstr "لاتوجد نتائج!"
translation/profile-builder-da_DK.po CHANGED
@@ -1,5601 +1,5601 @@
1
- # Translation of Profile Builder in Danish
2
- # This file is distributed under the same license as the Profile Builder package.
3
- msgid ""
4
- msgstr ""
5
- "PO-Revision-Date: 2017-05-08 09:42:03+0000\n"
6
- "MIME-Version: 1.0\n"
7
- "Content-Type: text/plain; charset=UTF-8\n"
8
- "Content-Transfer-Encoding: 8bit\n"
9
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
- "X-Generator: GlotPress/0.1\n"
11
- "Project-Id-Version: Profile Builder\n"
12
-
13
- #: profile-builder-2.0/admin/general-settings.php:154
14
- msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
15
- msgstr ""
16
-
17
- #: profile-builder-2.0/admin/general-settings.php:146
18
- msgid "\"Roles Editor\" Activated:"
19
- msgstr ""
20
-
21
- #: profile-builder-2.0/features/roles-editor/roles-editor.php:300
22
- msgid "M j, Y @ G:i"
23
- msgstr ""
24
-
25
- #: profile-builder-2.0/front-end/recover.php:117
26
- msgid "Please enter your email address."
27
- msgstr ""
28
-
29
- #: profile-builder-2.0/admin/manage-fields.php:127
30
- msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
31
- msgstr ""
32
-
33
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
34
- msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
35
- msgstr ""
36
-
37
- #: profile-builder-2.0/admin/manage-fields.php:1217
38
- msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
39
- msgstr ""
40
-
41
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
42
- msgid "Multiple Registration and Edit Profile form settings Redirects"
43
- msgstr ""
44
-
45
- #: profile-builder-2.0/admin/register-version.php:251
46
- msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
47
- msgstr ""
48
-
49
- #: profile-builder-2.0/admin/register-version.php:246
50
- msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
51
- msgstr ""
52
-
53
- #: profile-builder-2.0/front-end/recover.php:159
54
- msgid "You are already logged in. You can change your password on the edit profile form."
55
- msgstr ""
56
-
57
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
58
- msgid "Your site url will look like this:<br>"
59
- msgstr ""
60
-
61
- #: profile-builder-2.0/features/functions.php:909
62
- msgid "<br><br>You can visit your site at "
63
- msgstr ""
64
-
65
- #: profile-builder-2.0/features/functions.php:896
66
- msgid "<br><br>Also, you will be able to visit your site at "
67
- msgstr ""
68
-
69
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
70
- msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
71
- msgstr ""
72
-
73
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
74
- msgid "Site Title"
75
- msgstr ""
76
-
77
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
78
- msgid "Site URL slug"
79
- msgstr ""
80
-
81
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
82
- msgid "Yes, I'd like to create a new site"
83
- msgstr ""
84
-
85
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
86
- #: profile-builder-2.0/modules/user-listing/userlisting.php:118
87
- msgid "Blog URL"
88
- msgstr ""
89
-
90
- #: profile-builder-2.0/admin/admin-functions.php:44
91
- msgid "Blog Details - only appears on the Registration page!"
92
- msgstr ""
93
-
94
- #: profile-builder-2.0/admin/manage-fields.php:222
95
- msgid "Blog Details"
96
- msgstr ""
97
-
98
- #: profile-builder-2.0/admin/pms-cross-promotion.php:239
99
- msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
100
- msgstr ""
101
-
102
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
103
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
104
- msgstr ""
105
-
106
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
107
- msgid "View Map"
108
- msgstr ""
109
-
110
- #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
111
- #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
112
- #: pb-add-on-woocommerce/index.php:493
113
- msgid "Address line 2"
114
- msgstr ""
115
-
116
- #: pb-add-on-woocommerce/index.php:256
117
- msgid "Billing Fields"
118
- msgstr ""
119
-
120
- #: pb-add-on-woocommerce/index.php:256
121
- msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
122
- msgstr ""
123
-
124
- #: pb-add-on-woocommerce/index.php:257
125
- msgid "Billing Fields Order"
126
- msgstr ""
127
-
128
- #: pb-add-on-woocommerce/index.php:257
129
- msgid "Save the billing fields order from the billing fields checkboxes"
130
- msgstr ""
131
-
132
- #: pb-add-on-woocommerce/index.php:258
133
- msgid "Billing Fields Name"
134
- msgstr ""
135
-
136
- #: pb-add-on-woocommerce/index.php:258
137
- msgid "Save the billing fields names"
138
- msgstr ""
139
-
140
- #: pb-add-on-woocommerce/index.php:275
141
- msgid "Shipping Fields"
142
- msgstr ""
143
-
144
- #: pb-add-on-woocommerce/index.php:275
145
- msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
146
- msgstr ""
147
-
148
- #: pb-add-on-woocommerce/index.php:276
149
- msgid "Shipping Fields Order"
150
- msgstr ""
151
-
152
- #: pb-add-on-woocommerce/index.php:276
153
- msgid "Save the shipping fields order from the billing fields checkboxes"
154
- msgstr ""
155
-
156
- #: pb-add-on-woocommerce/index.php:277
157
- msgid "Shipping Fields Name"
158
- msgstr ""
159
-
160
- #: pb-add-on-woocommerce/index.php:277
161
- msgid "Save the shipping fields names"
162
- msgstr ""
163
-
164
- #: pb-add-on-woocommerce/index.php:305
165
- msgid "Field Name"
166
- msgstr ""
167
-
168
- #: pb-add-on-woocommerce/index.php:369
169
- msgid "Click to edit "
170
- msgstr ""
171
-
172
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
173
- msgid "is not a valid phone number."
174
- msgstr ""
175
-
176
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
177
- msgid "is not a number."
178
- msgstr ""
179
-
180
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
181
- msgid "must be a multiplier of "
182
- msgstr ""
183
-
184
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
185
- msgid "must be a greater than or equal to "
186
- msgstr ""
187
-
188
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
189
- msgid "must be less than or equal to "
190
- msgstr ""
191
-
192
- #: profile-builder-2.0/admin/add-ons.php:103
193
- msgid "Available in Hobbyist and Pro Versions"
194
- msgstr ""
195
-
196
- #: profile-builder-2.0/admin/add-ons.php:105
197
- msgid "Available in All Versions"
198
- msgstr ""
199
-
200
- #: profile-builder-2.0/admin/add-ons.php:148
201
- msgid "Learn More"
202
- msgstr ""
203
-
204
- #: profile-builder-2.0/admin/basic-info.php:99
205
- msgid "Timepicker"
206
- msgstr ""
207
-
208
- #: profile-builder-2.0/admin/basic-info.php:100
209
- msgid "Colorpicker"
210
- msgstr ""
211
-
212
- #: profile-builder-2.0/admin/basic-info.php:103
213
- msgid "Currency Select"
214
- msgstr ""
215
-
216
- #: profile-builder-2.0/admin/basic-info.php:109
217
- msgid "Number"
218
- msgstr ""
219
-
220
- #: profile-builder-2.0/admin/basic-info.php:114
221
- msgid "Validation"
222
- msgstr ""
223
-
224
- #: profile-builder-2.0/admin/basic-info.php:115
225
- msgid "Map"
226
- msgstr ""
227
-
228
- #: profile-builder-2.0/admin/basic-info.php:116
229
- msgid "HTML"
230
- msgstr ""
231
-
232
- #: profile-builder-2.0/admin/basic-info.php:162
233
- #: profile-builder-2.0/modules/modules.php:117
234
- msgid "Repeater Fields"
235
- msgstr ""
236
-
237
- #: profile-builder-2.0/admin/basic-info.php:163
238
- msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
239
- msgstr ""
240
-
241
- #: profile-builder-2.0/admin/general-settings.php:59
242
- msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
243
- msgstr ""
244
-
245
- #: profile-builder-2.0/admin/manage-fields.php:120
246
- msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
247
- msgstr ""
248
-
249
- #: profile-builder-2.0/admin/manage-fields.php:143
250
- msgid "Show Currency Symbol"
251
- msgstr ""
252
-
253
- #: profile-builder-2.0/admin/manage-fields.php:143
254
- msgid "Whether the currency symbol should be displayed after the currency name in the select option."
255
- msgstr ""
256
-
257
- #: profile-builder-2.0/admin/manage-fields.php:144
258
- msgid "Show Post Type"
259
- msgstr ""
260
-
261
- #: profile-builder-2.0/admin/manage-fields.php:144
262
- msgid "Posts from what post type will be displayed in the select."
263
- msgstr ""
264
-
265
- #: profile-builder-2.0/admin/manage-fields.php:145
266
- msgid "Allowable Values"
267
- msgstr ""
268
-
269
- #: profile-builder-2.0/admin/manage-fields.php:145
270
- msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
271
- msgstr ""
272
-
273
- #: profile-builder-2.0/admin/manage-fields.php:146
274
- msgid "Error Message"
275
- msgstr ""
276
-
277
- #: profile-builder-2.0/admin/manage-fields.php:146
278
- msgid "Set a custom error message that will be displayed to the user."
279
- msgstr ""
280
-
281
- #: profile-builder-2.0/admin/manage-fields.php:147
282
- msgid "Time Format"
283
- msgstr ""
284
-
285
- #: profile-builder-2.0/admin/manage-fields.php:147
286
- msgid "Specify the time format."
287
- msgstr ""
288
-
289
- #: profile-builder-2.0/admin/manage-fields.php:148
290
- msgid "Google Maps API Key"
291
- msgstr ""
292
-
293
- #: profile-builder-2.0/admin/manage-fields.php:148
294
- msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
295
- msgstr ""
296
-
297
- #: profile-builder-2.0/admin/manage-fields.php:149
298
- msgid "Default Latitude"
299
- msgstr ""
300
-
301
- #: profile-builder-2.0/admin/manage-fields.php:149
302
- msgid "The latitude at which the map should be displayed when no pins are attached."
303
- msgstr ""
304
-
305
- #: profile-builder-2.0/admin/manage-fields.php:150
306
- msgid "Default Longitude"
307
- msgstr ""
308
-
309
- #: profile-builder-2.0/admin/manage-fields.php:150
310
- msgid "The longitude at which the map should be displayed when no pins are attached."
311
- msgstr ""
312
-
313
- #: profile-builder-2.0/admin/manage-fields.php:151
314
- msgid "Default Zoom Level"
315
- msgstr ""
316
-
317
- #: profile-builder-2.0/admin/manage-fields.php:151
318
- msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
319
- msgstr ""
320
-
321
- #: profile-builder-2.0/admin/manage-fields.php:152
322
- msgid "Map Height"
323
- msgstr ""
324
-
325
- #: profile-builder-2.0/admin/manage-fields.php:152
326
- msgid "The height of the map."
327
- msgstr ""
328
-
329
- #: profile-builder-2.0/admin/manage-fields.php:154
330
- msgid "HTML Content"
331
- msgstr ""
332
-
333
- #: profile-builder-2.0/admin/manage-fields.php:154
334
- msgid "Add your HTML (or text) content"
335
- msgstr ""
336
-
337
- #: profile-builder-2.0/admin/manage-fields.php:155
338
- msgid "Phone Format"
339
- msgstr ""
340
-
341
- #: profile-builder-2.0/admin/manage-fields.php:155
342
- msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
343
- msgstr ""
344
-
345
- #: profile-builder-2.0/admin/manage-fields.php:155
346
- msgid "Eg. (###) ###-####"
347
- msgstr ""
348
-
349
- #: profile-builder-2.0/admin/manage-fields.php:155
350
- msgid "Empty field won't check for correct phone number."
351
- msgstr ""
352
-
353
- #: profile-builder-2.0/admin/manage-fields.php:156
354
- msgid "Heading Tag"
355
- msgstr ""
356
-
357
- #: profile-builder-2.0/admin/manage-fields.php:156
358
- msgid "Change heading field size on front-end forms"
359
- msgstr ""
360
-
361
- #: profile-builder-2.0/admin/manage-fields.php:157
362
- msgid "Min Number Value"
363
- msgstr ""
364
-
365
- #: profile-builder-2.0/admin/manage-fields.php:157
366
- msgid "Min allowed number value (0 to allow only positive numbers)"
367
- msgstr ""
368
-
369
- #: profile-builder-2.0/admin/manage-fields.php:157
370
- msgid "Leave it empty for no min value"
371
- msgstr ""
372
-
373
- #: profile-builder-2.0/admin/manage-fields.php:158
374
- msgid "Max Number Value"
375
- msgstr ""
376
-
377
- #: profile-builder-2.0/admin/manage-fields.php:158
378
- msgid "Max allowed number value (0 to allow only negative numbers)"
379
- msgstr ""
380
-
381
- #: profile-builder-2.0/admin/manage-fields.php:158
382
- msgid "Leave it empty for no max value"
383
- msgstr ""
384
-
385
- #: profile-builder-2.0/admin/manage-fields.php:159
386
- msgid "Number Step Value"
387
- msgstr ""
388
-
389
- #: profile-builder-2.0/admin/manage-fields.php:159
390
- msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
391
- msgstr ""
392
-
393
- #: profile-builder-2.0/admin/manage-fields.php:159
394
- msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
395
- msgstr ""
396
-
397
- #: profile-builder-2.0/admin/manage-fields.php:159
398
- msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
399
- msgstr ""
400
-
401
- #: profile-builder-2.0/admin/manage-fields.php:159
402
- msgid "Leave it empty for no restriction"
403
- msgstr ""
404
-
405
- #: profile-builder-2.0/admin/manage-fields.php:564
406
- msgid "Albania Lek"
407
- msgstr ""
408
-
409
- #: profile-builder-2.0/admin/manage-fields.php:565
410
- msgid "Afghanistan Afghani"
411
- msgstr ""
412
-
413
- #: profile-builder-2.0/admin/manage-fields.php:566
414
- msgid "Argentina Peso"
415
- msgstr ""
416
-
417
- #: profile-builder-2.0/admin/manage-fields.php:567
418
- msgid "Aruba Guilder"
419
- msgstr ""
420
-
421
- #: profile-builder-2.0/admin/manage-fields.php:568
422
- msgid "Australia Dollar"
423
- msgstr ""
424
-
425
- #: profile-builder-2.0/admin/manage-fields.php:569
426
- msgid "Azerbaijan New Manat"
427
- msgstr ""
428
-
429
- #: profile-builder-2.0/admin/manage-fields.php:570
430
- msgid "Bahamas Dollar"
431
- msgstr ""
432
-
433
- #: profile-builder-2.0/admin/manage-fields.php:571
434
- msgid "Barbados Dollar"
435
- msgstr ""
436
-
437
- #: profile-builder-2.0/admin/manage-fields.php:572
438
- msgid "Bangladeshi taka"
439
- msgstr ""
440
-
441
- #: profile-builder-2.0/admin/manage-fields.php:573
442
- msgid "Belarus Ruble"
443
- msgstr ""
444
-
445
- #: profile-builder-2.0/admin/manage-fields.php:574
446
- msgid "Belize Dollar"
447
- msgstr ""
448
-
449
- #: profile-builder-2.0/admin/manage-fields.php:575
450
- msgid "Bermuda Dollar"
451
- msgstr ""
452
-
453
- #: profile-builder-2.0/admin/manage-fields.php:576
454
- msgid "Bolivia Boliviano"
455
- msgstr ""
456
-
457
- #: profile-builder-2.0/admin/manage-fields.php:577
458
- msgid "Bosnia and Herzegovina Convertible Marka"
459
- msgstr ""
460
-
461
- #: profile-builder-2.0/admin/manage-fields.php:578
462
- msgid "Botswana Pula"
463
- msgstr ""
464
-
465
- #: profile-builder-2.0/admin/manage-fields.php:579
466
- msgid "Bulgaria Lev"
467
- msgstr ""
468
-
469
- #: profile-builder-2.0/admin/manage-fields.php:580
470
- msgid "Brazil Real"
471
- msgstr ""
472
-
473
- #: profile-builder-2.0/admin/manage-fields.php:581
474
- msgid "Brunei Darussalam Dollar"
475
- msgstr ""
476
-
477
- #: profile-builder-2.0/admin/manage-fields.php:582
478
- msgid "Cambodia Riel"
479
- msgstr ""
480
-
481
- #: profile-builder-2.0/admin/manage-fields.php:583
482
- msgid "Canada Dollar"
483
- msgstr ""
484
-
485
- #: profile-builder-2.0/admin/manage-fields.php:584
486
- msgid "Cayman Islands Dollar"
487
- msgstr ""
488
-
489
- #: profile-builder-2.0/admin/manage-fields.php:585
490
- msgid "Chile Peso"
491
- msgstr ""
492
-
493
- #: profile-builder-2.0/admin/manage-fields.php:586
494
- msgid "China Yuan Renminbi"
495
- msgstr ""
496
-
497
- #: profile-builder-2.0/admin/manage-fields.php:587
498
- msgid "Colombia Peso"
499
- msgstr ""
500
-
501
- #: profile-builder-2.0/admin/manage-fields.php:588
502
- msgid "Costa Rica Colon"
503
- msgstr ""
504
-
505
- #: profile-builder-2.0/admin/manage-fields.php:589
506
- msgid "Croatia Kuna"
507
- msgstr ""
508
-
509
- #: profile-builder-2.0/admin/manage-fields.php:590
510
- msgid "Cuba Peso"
511
- msgstr ""
512
-
513
- #: profile-builder-2.0/admin/manage-fields.php:591
514
- msgid "Czech Republic Koruna"
515
- msgstr ""
516
-
517
- #: profile-builder-2.0/admin/manage-fields.php:592
518
- msgid "Denmark Krone"
519
- msgstr ""
520
-
521
- #: profile-builder-2.0/admin/manage-fields.php:593
522
- msgid "Dominican Republic Peso"
523
- msgstr ""
524
-
525
- #: profile-builder-2.0/admin/manage-fields.php:594
526
- msgid "East Caribbean Dollar"
527
- msgstr ""
528
-
529
- #: profile-builder-2.0/admin/manage-fields.php:595
530
- msgid "Egypt Pound"
531
- msgstr ""
532
-
533
- #: profile-builder-2.0/admin/manage-fields.php:596
534
- msgid "El Salvador Colon"
535
- msgstr ""
536
-
537
- #: profile-builder-2.0/admin/manage-fields.php:597
538
- msgid "Estonia Kroon"
539
- msgstr ""
540
-
541
- #: profile-builder-2.0/admin/manage-fields.php:598
542
- msgid "Euro"
543
- msgstr ""
544
-
545
- #: profile-builder-2.0/admin/manage-fields.php:599
546
- msgid "Falkland Islands (Malvinas) Pound"
547
- msgstr ""
548
-
549
- #: profile-builder-2.0/admin/manage-fields.php:600
550
- msgid "Fiji Dollar"
551
- msgstr ""
552
-
553
- #: profile-builder-2.0/admin/manage-fields.php:601
554
- msgid "Ghana Cedis"
555
- msgstr ""
556
-
557
- #: profile-builder-2.0/admin/manage-fields.php:602
558
- msgid "Gibraltar Pound"
559
- msgstr ""
560
-
561
- #: profile-builder-2.0/admin/manage-fields.php:603
562
- msgid "Guatemala Quetzal"
563
- msgstr ""
564
-
565
- #: profile-builder-2.0/admin/manage-fields.php:604
566
- msgid "Guernsey Pound"
567
- msgstr ""
568
-
569
- #: profile-builder-2.0/admin/manage-fields.php:605
570
- msgid "Guyana Dollar"
571
- msgstr ""
572
-
573
- #: profile-builder-2.0/admin/manage-fields.php:606
574
- msgid "Honduras Lempira"
575
- msgstr ""
576
-
577
- #: profile-builder-2.0/admin/manage-fields.php:607
578
- msgid "Hong Kong Dollar"
579
- msgstr ""
580
-
581
- #: profile-builder-2.0/admin/manage-fields.php:608
582
- msgid "Hungary Forint"
583
- msgstr ""
584
-
585
- #: profile-builder-2.0/admin/manage-fields.php:609
586
- msgid "Iceland Krona"
587
- msgstr ""
588
-
589
- #: profile-builder-2.0/admin/manage-fields.php:610
590
- msgid "India Rupee"
591
- msgstr ""
592
-
593
- #: profile-builder-2.0/admin/manage-fields.php:611
594
- msgid "Indonesia Rupiah"
595
- msgstr ""
596
-
597
- #: profile-builder-2.0/admin/manage-fields.php:612
598
- msgid "Iran Rial"
599
- msgstr ""
600
-
601
- #: profile-builder-2.0/admin/manage-fields.php:613
602
- msgid "Isle of Man Pound"
603
- msgstr ""
604
-
605
- #: profile-builder-2.0/admin/manage-fields.php:614
606
- msgid "Israel Shekel"
607
- msgstr ""
608
-
609
- #: profile-builder-2.0/admin/manage-fields.php:615
610
- msgid "Jamaica Dollar"
611
- msgstr ""
612
-
613
- #: profile-builder-2.0/admin/manage-fields.php:616
614
- msgid "Japan Yen"
615
- msgstr ""
616
-
617
- #: profile-builder-2.0/admin/manage-fields.php:617
618
- msgid "Jersey Pound"
619
- msgstr ""
620
-
621
- #: profile-builder-2.0/admin/manage-fields.php:618
622
- msgid "Kazakhstan Tenge"
623
- msgstr ""
624
-
625
- #: profile-builder-2.0/admin/manage-fields.php:619
626
- msgid "Korea (North) Won"
627
- msgstr ""
628
-
629
- #: profile-builder-2.0/admin/manage-fields.php:620
630
- msgid "Korea (South) Won"
631
- msgstr ""
632
-
633
- #: profile-builder-2.0/admin/manage-fields.php:621
634
- msgid "Kyrgyzstan Som"
635
- msgstr ""
636
-
637
- #: profile-builder-2.0/admin/manage-fields.php:622
638
- msgid "Laos Kip"
639
- msgstr ""
640
-
641
- #: profile-builder-2.0/admin/manage-fields.php:623
642
- msgid "Latvia Lat"
643
- msgstr ""
644
-
645
- #: profile-builder-2.0/admin/manage-fields.php:624
646
- msgid "Lebanon Pound"
647
- msgstr ""
648
-
649
- #: profile-builder-2.0/admin/manage-fields.php:625
650
- msgid "Liberia Dollar"
651
- msgstr ""
652
-
653
- #: profile-builder-2.0/admin/manage-fields.php:626
654
- msgid "Lithuania Litas"
655
- msgstr ""
656
-
657
- #: profile-builder-2.0/admin/manage-fields.php:627
658
- msgid "Macedonia Denar"
659
- msgstr ""
660
-
661
- #: profile-builder-2.0/admin/manage-fields.php:628
662
- msgid "Malaysia Ringgit"
663
- msgstr ""
664
-
665
- #: profile-builder-2.0/admin/manage-fields.php:629
666
- msgid "Mauritius Rupee"
667
- msgstr ""
668
-
669
- #: profile-builder-2.0/admin/manage-fields.php:630
670
- msgid "Mexico Peso"
671
- msgstr ""
672
-
673
- #: profile-builder-2.0/admin/manage-fields.php:631
674
- msgid "Mongolia Tughrik"
675
- msgstr ""
676
-
677
- #: profile-builder-2.0/admin/manage-fields.php:632
678
- msgid "Mozambique Metical"
679
- msgstr ""
680
-
681
- #: profile-builder-2.0/admin/manage-fields.php:633
682
- msgid "Namibia Dollar"
683
- msgstr ""
684
-
685
- #: profile-builder-2.0/admin/manage-fields.php:634
686
- msgid "Nepal Rupee"
687
- msgstr ""
688
-
689
- #: profile-builder-2.0/admin/manage-fields.php:635
690
- msgid "Netherlands Antilles Guilder"
691
- msgstr ""
692
-
693
- #: profile-builder-2.0/admin/manage-fields.php:636
694
- msgid "New Zealand Dollar"
695
- msgstr ""
696
-
697
- #: profile-builder-2.0/admin/manage-fields.php:637
698
- msgid "Nicaragua Cordoba"
699
- msgstr ""
700
-
701
- #: profile-builder-2.0/admin/manage-fields.php:638
702
- msgid "Nigeria Naira"
703
- msgstr ""
704
-
705
- #: profile-builder-2.0/admin/manage-fields.php:639
706
- msgid "Norway Krone"
707
- msgstr ""
708
-
709
- #: profile-builder-2.0/admin/manage-fields.php:640
710
- msgid "Oman Rial"
711
- msgstr ""
712
-
713
- #: profile-builder-2.0/admin/manage-fields.php:641
714
- msgid "Pakistan Rupee"
715
- msgstr ""
716
-
717
- #: profile-builder-2.0/admin/manage-fields.php:642
718
- msgid "Panama Balboa"
719
- msgstr ""
720
-
721
- #: profile-builder-2.0/admin/manage-fields.php:643
722
- msgid "Paraguay Guarani"
723
- msgstr ""
724
-
725
- #: profile-builder-2.0/admin/manage-fields.php:644
726
- msgid "Peru Nuevo Sol"
727
- msgstr ""
728
-
729
- #: profile-builder-2.0/admin/manage-fields.php:645
730
- msgid "Philippines Peso"
731
- msgstr ""
732
-
733
- #: profile-builder-2.0/admin/manage-fields.php:646
734
- msgid "Poland Zloty"
735
- msgstr ""
736
-
737
- #: profile-builder-2.0/admin/manage-fields.php:647
738
- msgid "Qatar Riyal"
739
- msgstr ""
740
-
741
- #: profile-builder-2.0/admin/manage-fields.php:648
742
- msgid "Romania New Leu"
743
- msgstr ""
744
-
745
- #: profile-builder-2.0/admin/manage-fields.php:649
746
- msgid "Russia Ruble"
747
- msgstr ""
748
-
749
- #: profile-builder-2.0/admin/manage-fields.php:650
750
- msgid "Saint Helena Pound"
751
- msgstr ""
752
-
753
- #: profile-builder-2.0/admin/manage-fields.php:651
754
- msgid "Saudi Arabia Riyal"
755
- msgstr ""
756
-
757
- #: profile-builder-2.0/admin/manage-fields.php:652
758
- msgid "Serbia Dinar"
759
- msgstr ""
760
-
761
- #: profile-builder-2.0/admin/manage-fields.php:653
762
- msgid "Seychelles Rupee"
763
- msgstr ""
764
-
765
- #: profile-builder-2.0/admin/manage-fields.php:654
766
- msgid "Singapore Dollar"
767
- msgstr ""
768
-
769
- #: profile-builder-2.0/admin/manage-fields.php:655
770
- msgid "Solomon Islands Dollar"
771
- msgstr ""
772
-
773
- #: profile-builder-2.0/admin/manage-fields.php:656
774
- msgid "Somalia Shilling"
775
- msgstr ""
776
-
777
- #: profile-builder-2.0/admin/manage-fields.php:657
778
- msgid "South Africa Rand"
779
- msgstr ""
780
-
781
- #: profile-builder-2.0/admin/manage-fields.php:658
782
- msgid "Sri Lanka Rupee"
783
- msgstr ""
784
-
785
- #: profile-builder-2.0/admin/manage-fields.php:659
786
- msgid "Sweden Krona"
787
- msgstr ""
788
-
789
- #: profile-builder-2.0/admin/manage-fields.php:660
790
- msgid "Switzerland Franc"
791
- msgstr ""
792
-
793
- #: profile-builder-2.0/admin/manage-fields.php:661
794
- msgid "Suriname Dollar"
795
- msgstr ""
796
-
797
- #: profile-builder-2.0/admin/manage-fields.php:662
798
- msgid "Syria Pound"
799
- msgstr ""
800
-
801
- #: profile-builder-2.0/admin/manage-fields.php:663
802
- msgid "Taiwan New Dollar"
803
- msgstr ""
804
-
805
- #: profile-builder-2.0/admin/manage-fields.php:664
806
- msgid "Thailand Baht"
807
- msgstr ""
808
-
809
- #: profile-builder-2.0/admin/manage-fields.php:665
810
- msgid "Trinidad and Tobago Dollar"
811
- msgstr ""
812
-
813
- #: profile-builder-2.0/admin/manage-fields.php:666
814
- #: profile-builder-2.0/admin/manage-fields.php:667
815
- msgid "Turkey Lira"
816
- msgstr ""
817
-
818
- #: profile-builder-2.0/admin/manage-fields.php:668
819
- msgid "Tuvalu Dollar"
820
- msgstr ""
821
-
822
- #: profile-builder-2.0/admin/manage-fields.php:669
823
- msgid "Ukraine Hryvna"
824
- msgstr ""
825
-
826
- #: profile-builder-2.0/admin/manage-fields.php:670
827
- msgid "United Kingdom Pound"
828
- msgstr ""
829
-
830
- #: profile-builder-2.0/admin/manage-fields.php:671
831
- msgid "Uganda Shilling"
832
- msgstr ""
833
-
834
- #: profile-builder-2.0/admin/manage-fields.php:672
835
- msgid "US Dollar"
836
- msgstr ""
837
-
838
- #: profile-builder-2.0/admin/manage-fields.php:673
839
- msgid "Uruguay Peso"
840
- msgstr ""
841
-
842
- #: profile-builder-2.0/admin/manage-fields.php:674
843
- msgid "Uzbekistan Som"
844
- msgstr ""
845
-
846
- #: profile-builder-2.0/admin/manage-fields.php:675
847
- msgid "Venezuela Bolivar"
848
- msgstr ""
849
-
850
- #: profile-builder-2.0/admin/manage-fields.php:676
851
- msgid "Viet Nam Dong"
852
- msgstr ""
853
-
854
- #: profile-builder-2.0/admin/manage-fields.php:677
855
- msgid "Yemen Rial"
856
- msgstr ""
857
-
858
- #: profile-builder-2.0/admin/manage-fields.php:678
859
- msgid "Zimbabwe Dollar"
860
- msgstr ""
861
-
862
- #: profile-builder-2.0/admin/manage-fields.php:1097
863
- msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
864
- msgstr ""
865
-
866
- #: profile-builder-2.0/admin/manage-fields.php:1314
867
- msgid "Search Location"
868
- msgstr ""
869
-
870
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
871
- msgid "You are not allowed to do this."
872
- msgstr ""
873
-
874
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
875
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
876
- msgid "Search Users"
877
- msgstr ""
878
-
879
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
880
- msgid "Conditional Logic"
881
- msgstr ""
882
-
883
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
884
- msgid "Conditional Rules"
885
- msgstr ""
886
-
887
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
888
- msgid "This field has conditional logic enabled."
889
- msgstr ""
890
-
891
- #: profile-builder-2.0/features/functions.php:685
892
- msgid "Incorrect phone number"
893
- msgstr ""
894
-
895
- #: profile-builder-2.0/front-end/class-formbuilder.php:124
896
- msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
897
- msgstr ""
898
-
899
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
900
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
901
- msgid "Please add the Google Maps API key for this field."
902
- msgstr ""
903
-
904
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
905
- msgid "Something went wrong. Please try again."
906
- msgstr ""
907
-
908
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
909
- msgid "Please enter numbers only"
910
- msgstr ""
911
-
912
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
913
- msgid "Value must be a multiplier of %1$s"
914
- msgstr ""
915
-
916
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
917
- msgid "Value must be greater than or equal to %1$s"
918
- msgstr ""
919
-
920
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
921
- msgid "Value must be less than or equal to %1$s"
922
- msgstr ""
923
-
924
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
925
- msgid "Required phone number format: "
926
- msgstr ""
927
-
928
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
929
- msgid "Bolivia, __( Plurinational State of"
930
- msgstr ""
931
-
932
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
933
- msgid "Bonaire, __( Sint Eustatius and Saba"
934
- msgstr ""
935
-
936
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
937
- msgid "Brunei Darussalam"
938
- msgstr ""
939
-
940
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
941
- msgid "Cabo Verde"
942
- msgstr ""
943
-
944
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
945
- msgid "Cocos (Keeling) Islands"
946
- msgstr ""
947
-
948
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
949
- msgid "Congo"
950
- msgstr ""
951
-
952
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
953
- msgid "Congo, __( the Democratic Republic of the"
954
- msgstr ""
955
-
956
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
957
- msgid "Cote dIvoire"
958
- msgstr ""
959
-
960
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
961
- msgid "Falkland Islands (Malvinas)"
962
- msgstr ""
963
-
964
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
965
- msgid "Holy See (Vatican City State)"
966
- msgstr ""
967
-
968
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
969
- msgid "Iran, __( Islamic Republic of"
970
- msgstr ""
971
-
972
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
973
- msgid "Korea, __( Democratic Peoples Republic of"
974
- msgstr ""
975
-
976
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
977
- msgid "Korea, __( Republic of"
978
- msgstr ""
979
-
980
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
981
- msgid "Lao Peoples Democratic Republic"
982
- msgstr ""
983
-
984
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
985
- msgid "Macedonia, __( the former Yugoslav Republic of"
986
- msgstr ""
987
-
988
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
989
- msgid "Micronesia, __( Federated States of"
990
- msgstr ""
991
-
992
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
993
- msgid "Moldova, __( Republic of"
994
- msgstr ""
995
-
996
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
997
- msgid "Palestine, __( State of"
998
- msgstr ""
999
-
1000
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1001
- msgid "Russian Federation"
1002
- msgstr ""
1003
-
1004
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1005
- msgid "Saint Helena, __( Ascension and Tristan da Cunha"
1006
- msgstr ""
1007
-
1008
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1009
- msgid "Saint Martin (French part)"
1010
- msgstr ""
1011
-
1012
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1013
- msgid "Sint Maarten (Dutch part)"
1014
- msgstr ""
1015
-
1016
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1017
- msgid "Syrian Arab Republic"
1018
- msgstr ""
1019
-
1020
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1021
- msgid "Taiwan, __( Province of China"
1022
- msgstr ""
1023
-
1024
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1025
- msgid "Tanzania, __( United Republic of"
1026
- msgstr ""
1027
-
1028
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1029
- msgid "Timor-Leste"
1030
- msgstr ""
1031
-
1032
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1033
- msgid "Venezuela, __( Bolivarian Republic of"
1034
- msgstr ""
1035
-
1036
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1037
- msgid "Viet Nam"
1038
- msgstr ""
1039
-
1040
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1041
- msgid "Virgin Islands, __( British"
1042
- msgstr ""
1043
-
1044
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1045
- msgid "Virgin Islands, __( U.S."
1046
- msgstr ""
1047
-
1048
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
1049
- #: profile-builder-2.0/modules/user-listing/userlisting.php:186
1050
- msgid "User Fields Tags"
1051
- msgstr ""
1052
-
1053
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479
1054
- msgid "The users selected password at signup"
1055
- msgstr ""
1056
-
1057
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
1058
- msgid "[{{site_name}}] Notice of Email Change"
1059
- msgstr ""
1060
-
1061
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
1062
- msgid "Changed Email Address Notification"
1063
- msgstr ""
1064
-
1065
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1066
- msgid "Limit"
1067
- msgstr ""
1068
-
1069
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1070
- msgid "Enable limit to the number of fields to be generated by users in front end forms "
1071
- msgstr ""
1072
-
1073
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1074
- msgid "General Limit"
1075
- msgstr ""
1076
-
1077
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1078
- msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
1079
- msgstr ""
1080
-
1081
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1082
- msgid "Limit reached message"
1083
- msgstr ""
1084
-
1085
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1086
- msgid "The maximum number of fields has been reached."
1087
- msgstr ""
1088
-
1089
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1090
- msgid "The popup message to display when the limit of repeater groups is reached."
1091
- msgstr ""
1092
-
1093
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1094
- msgid "Limit per Role"
1095
- msgstr ""
1096
-
1097
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1098
- msgid "Leave 0 for unlimited."
1099
- msgstr ""
1100
-
1101
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1102
- msgid "Repeated field group"
1103
- msgstr ""
1104
-
1105
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1106
- msgid "Manage field or group of fields that will be repeatable."
1107
- msgstr ""
1108
-
1109
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1110
- msgid "Edit field group"
1111
- msgstr ""
1112
-
1113
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
1114
- msgid "Repeatable fields saved!"
1115
- msgstr ""
1116
-
1117
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
1118
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
1119
- msgid "Please enter a unique field title.\n"
1120
- msgstr ""
1121
-
1122
- #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
1123
- msgid "Are you sure you want to delete this?"
1124
- msgstr ""
1125
-
1126
- #: profile-builder-2.0/modules/user-listing/userlisting.php:192
1127
- msgid "Sort Tags"
1128
- msgstr ""
1129
-
1130
- #: profile-builder-2.0/modules/user-listing/userlisting.php:201
1131
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2308
1132
- msgid "Faceted Menus"
1133
- msgstr ""
1134
-
1135
- #: profile-builder-2.0/modules/user-listing/userlisting.php:202
1136
- msgid "User Count"
1137
- msgstr ""
1138
-
1139
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1553
1140
- msgid "Show All"
1141
- msgstr ""
1142
-
1143
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1144
- msgid "No options available"
1145
- msgstr ""
1146
-
1147
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
1148
- msgid "Remove All Filters"
1149
- msgstr ""
1150
-
1151
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1152
- msgid "Label"
1153
- msgstr ""
1154
-
1155
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1156
- msgid "Choose the facet name that appears on the frontend"
1157
- msgstr ""
1158
-
1159
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1160
- msgid "Facet Type"
1161
- msgstr ""
1162
-
1163
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1164
- msgid "Choose the facet menu type"
1165
- msgstr ""
1166
-
1167
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1168
- msgid "Facet Meta"
1169
- msgstr ""
1170
-
1171
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1172
- msgid "Choose the meta field for the facet menu"
1173
- msgstr ""
1174
-
1175
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1176
- msgid "Behaviour"
1177
- msgstr ""
1178
-
1179
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1180
- msgid "Narrow the results"
1181
- msgstr ""
1182
-
1183
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1184
- msgid "Expand the results"
1185
- msgstr ""
1186
-
1187
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1188
- msgid "Choose how multiple selections affect the results"
1189
- msgstr ""
1190
-
1191
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1192
- msgid "Visible choices"
1193
- msgstr ""
1194
-
1195
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1196
- msgid "Show a toggle link after this many choices. Leave blank for all"
1197
- msgstr ""
1198
-
1199
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1200
- msgid "Search Fields"
1201
- msgstr ""
1202
-
1203
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1204
- msgid "Choose the fields in which the Search Field will look in"
1205
- msgstr ""
1206
-
1207
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2330
1208
- msgid "Search Settings"
1209
- msgstr ""
1210
-
1211
- #: pb-add-on-woocommerce/billing-fields.php:8
1212
- #: pb-add-on-woocommerce/shipping-fields.php:8
1213
- msgid "Company Name"
1214
- msgstr "Firmanavn"
1215
-
1216
- #: pb-add-on-woocommerce/billing-fields.php:9
1217
- #: pb-add-on-woocommerce/shipping-fields.php:9
1218
- msgid "Address"
1219
- msgstr "Adresse"
1220
-
1221
- #: pb-add-on-woocommerce/billing-fields.php:5
1222
- #: pb-add-on-woocommerce/shipping-fields.php:5
1223
- msgid "Country"
1224
- msgstr "Land"
1225
-
1226
- #: pb-add-on-woocommerce/billing-fields.php:11
1227
- #: pb-add-on-woocommerce/shipping-fields.php:11
1228
- msgid "Town / City"
1229
- msgstr ""
1230
-
1231
- #: pb-add-on-woocommerce/billing-fields.php:12
1232
- #: pb-add-on-woocommerce/shipping-fields.php:12
1233
- msgid "State / County"
1234
- msgstr "Stat"
1235
-
1236
- #: pb-add-on-woocommerce/billing-fields.php:13
1237
- #: pb-add-on-woocommerce/shipping-fields.php:13
1238
- msgid "Postcode / Zip"
1239
- msgstr "Postnr"
1240
-
1241
- #: pb-add-on-woocommerce/billing-fields.php:14
1242
- msgid "Email Address"
1243
- msgstr "Email"
1244
-
1245
- #: pb-add-on-woocommerce/billing-fields.php:15
1246
- msgid "Phone"
1247
- msgstr "Telefon"
1248
-
1249
- #: pb-add-on-woocommerce/billing-fields.php:278
1250
- msgid "Ship to a different address?"
1251
- msgstr "Send til anden adresse"
1252
-
1253
- #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1254
- msgid "Billing Address"
1255
- msgstr "Fakturerings adresse"
1256
-
1257
- #: pb-add-on-woocommerce/index.php:169
1258
- msgid "Displays customer billing fields in front-end. "
1259
- msgstr "Se kunde faktureringsfelter i front-end"
1260
-
1261
- #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1262
- msgid "Shipping Address"
1263
- msgstr "Leveringsadresse"
1264
-
1265
- #: pb-add-on-woocommerce/index.php:173
1266
- msgid "Displays customer shipping fields in front-end. "
1267
- msgstr "Se kunde leveringsfelter i front-end"
1268
-
1269
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1270
- msgid "Display on WooCommerce Checkout"
1271
- msgstr "Se på WooCommerce betal siden"
1272
-
1273
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1274
- msgid "Whether the field should be added to the WooCommerce checkout form or not"
1275
- msgstr ""
1276
-
1277
- #: pb-add-on-woocommerce/index.php:541
1278
- msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1279
- msgstr "WooCommerce skal installeres ag aktiveret for at Profile Builder - WooCommerce Sync Add-on virker!"
1280
-
1281
- #: pb-add-on-woocommerce/woosync-page.php:23
1282
- #: pb-add-on-woocommerce/woosync-page.php:70
1283
- msgid "WooCommerce Sync"
1284
- msgstr "WooCommerce Sync"
1285
-
1286
- #: pb-add-on-woocommerce/woosync-page.php:76
1287
- msgid "Choose Register form to display on My Account page:"
1288
- msgstr "Choose Register form to display on My Account page:"
1289
-
1290
- #: pb-add-on-woocommerce/woosync-page.php:81
1291
- msgid "Default Register"
1292
- msgstr "Default Register"
1293
-
1294
- #: pb-add-on-woocommerce/woosync-page.php:103
1295
- msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1296
- msgstr ""
1297
-
1298
- #: pb-add-on-woocommerce/woosync-page.php:110
1299
- msgid "Choose Edit Profile form to display on My Account page:"
1300
- msgstr "Choose Edit Profile form to display on My Account page:"
1301
-
1302
- #: pb-add-on-woocommerce/woosync-page.php:115
1303
- msgid "Default Edit Profile"
1304
- msgstr "Standard editerings profil"
1305
-
1306
- #: pb-add-on-woocommerce/woosync-page.php:137
1307
- msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1308
- msgstr "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1309
-
1310
- #: profile-builder-2.0/admin/add-ons.php:190
1311
- msgid "Recommended Plugins"
1312
- msgstr "Anbefalede plugins"
1313
-
1314
- #: profile-builder-2.0/admin/add-ons.php:219
1315
- #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1316
- msgid "Free"
1317
- msgstr "Fri"
1318
-
1319
- #: profile-builder-2.0/admin/add-ons.php:221
1320
- msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1321
- msgstr "Accept user payments, create subscription plans and restrict content on your membership site."
1322
-
1323
- #: profile-builder-2.0/admin/add-ons.php:222
1324
- #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1325
- msgid "More Details"
1326
- msgstr "Flere detaljer"
1327
-
1328
- #: profile-builder-2.0/admin/add-ons.php:240
1329
- #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1330
- #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1331
- #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1332
- msgid "Plugin is <strong>inactive</strong>"
1333
- msgstr "Plugin er <strong>inaktiv</strong>"
1334
-
1335
- #: profile-builder-2.0/admin/add-ons.php:242
1336
- #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1337
- #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1338
- #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1339
- msgid "Plugin is <strong>active</strong>"
1340
- msgstr "Plugin er <strong>aktiv</strong>"
1341
-
1342
- #: profile-builder-2.0/admin/add-ons.php:256
1343
- #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1344
- msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1345
- msgstr "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1346
-
1347
- #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1348
- msgid "Paid Accounts"
1349
- msgstr "Betalt konto"
1350
-
1351
- #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1352
- msgid "Paid Member Subscriptions - a free WordPress plugin"
1353
- msgstr "Paid Member Subscriptions - a free WordPress plugin"
1354
-
1355
- #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1356
- msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1357
- msgstr "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1358
-
1359
- #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1360
- msgid "Paid & Free Subscriptions"
1361
- msgstr "Betalt og fri tilmelding"
1362
-
1363
- #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1364
- msgid "Restrict Content"
1365
- msgstr "Beskyt indhold"
1366
-
1367
- #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1368
- msgid "Member Management"
1369
- msgstr "Medlemsstyring"
1370
-
1371
- #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1372
- msgid "Email Templates"
1373
- msgstr "Email skabeloner"
1374
-
1375
- #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1376
- msgid "Account Management"
1377
- msgstr "Kontostyring"
1378
-
1379
- #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1380
- msgid "Subscription Management"
1381
- msgstr "Tilmeldingsstyring"
1382
-
1383
- #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1384
- msgid "Payment Management"
1385
- msgstr "Betalingsstyring"
1386
-
1387
- #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1388
- msgid "Plugin is Active"
1389
- msgstr "Plugin er aktiv"
1390
-
1391
- #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1392
- msgid "Plugin has been activated"
1393
- msgstr "Plugin er aktiveret"
1394
-
1395
- #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1396
- msgid "Plugin has been deactivated."
1397
- msgstr "Plugin er blevet deaktiveret"
1398
-
1399
- #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1400
- msgid "Accept user payments, create subscription plans and restrict content on your website."
1401
- msgstr "Accepter bruger betaling opret tilmeldings planer og beskyt indhold på din webside."
1402
-
1403
- #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1404
- msgid "Step by Step Quick Setup"
1405
- msgstr "Step by Step Quick Setup"
1406
-
1407
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
1408
- msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1409
- msgstr ""
1410
-
1411
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1412
- msgid "After Login"
1413
- msgstr "Efter logind"
1414
-
1415
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1416
- msgid "After Logout"
1417
- msgstr "Efter logud"
1418
-
1419
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1420
- msgid "After Registration"
1421
- msgstr "Efter tilmelding"
1422
-
1423
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1424
- msgid "After Edit Profile"
1425
- msgstr "Efter brugerprofil opdatering"
1426
-
1427
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1428
- msgid "After Successful Email Confirmation"
1429
- msgstr "Efter email bekræftelse"
1430
-
1431
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1432
- msgid "After Successful Password Reset"
1433
- msgstr "Efter psssword reset"
1434
-
1435
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1436
- msgid "Dashboard (redirect users from accessing the dashboard)"
1437
- msgstr "Dashboard (redirect users from accessing the dashboard)"
1438
-
1439
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1440
- msgid "User ID"
1441
- msgstr "Bruger ID"
1442
-
1443
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1444
- msgid "User ID or Username"
1445
- msgstr "Bruger ID eller Brugernavn"
1446
-
1447
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1448
- msgid "User ID / Username"
1449
- msgstr "Bruger ID / Brugernavn"
1450
-
1451
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1452
- msgid "Please select and enter the ID or username of your user."
1453
- msgstr "Vælg og intast ID eller brugernavn på din bruger"
1454
-
1455
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1456
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1457
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1458
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1459
- msgid "Redirect Type"
1460
- msgstr "Redirect Type"
1461
-
1462
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1463
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1464
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1465
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1466
- msgid "Redirect URL"
1467
- msgstr "Redirect URL"
1468
-
1469
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1470
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1471
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1472
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1473
- msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1474
- msgstr "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1475
-
1476
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1477
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1478
- msgid "Individual User Redirects"
1479
- msgstr "Individual User Redirects"
1480
-
1481
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1482
- msgid "... Choose"
1483
- msgstr "... Vælg"
1484
-
1485
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1486
- msgid "Select a user role."
1487
- msgstr "Vælg brugerrolle"
1488
-
1489
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1490
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1491
- msgid "User Role based Redirects"
1492
- msgstr "Rollebaseret bruger redirects"
1493
-
1494
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1495
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1496
- msgid "Global Redirects"
1497
- msgstr "Global Redirects"
1498
-
1499
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1500
- msgid "Login ( wp_login.php )"
1501
- msgstr "Logind ( wp_login.php )"
1502
-
1503
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1504
- msgid "Register ( wp-login.php?action=register )"
1505
- msgstr "Tilmeld ( wp-login.php?action=register )"
1506
-
1507
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1508
- msgid "Lost Password ( wp-login.php?action=lostpassword )"
1509
- msgstr "Mistet kodeord ( wp-login.php?action=lostpassword )"
1510
-
1511
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1512
- msgid "Author Archive ( http://sitename.com/author/admin )"
1513
- msgstr "Forfatter arkiv ( http://sitename.com/author/admin )"
1514
-
1515
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1516
- msgid "Redirect Default WordPress Forms and Pages"
1517
- msgstr "Redirect Default WordPress Forms and Pages"
1518
-
1519
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1520
- msgid "How does this work?"
1521
- msgstr "Hvordan virker dette ?"
1522
-
1523
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1524
- msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1525
- msgstr "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1526
-
1527
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1528
- msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1529
- msgstr "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1530
-
1531
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1532
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1533
- msgid "<pre>Redirect</pre><pre>URL</pre>"
1534
- msgstr "<pre>Redirect</pre><pre>URL</pre>"
1535
-
1536
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1537
- msgid "These redirects happen after a successful action, like registration or after a successful login."
1538
- msgstr "These redirects happen after a successful action, like registration or after a successful login."
1539
-
1540
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1541
- msgid "Which redirect happens depends on the following priority:"
1542
- msgstr "Which redirect happens depends on the following priority:"
1543
-
1544
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1545
- msgid "Redirect Default WordPress forms and pages"
1546
- msgstr "Redirect Default WordPress forms and pages"
1547
-
1548
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
1549
- msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1550
- msgstr "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1551
-
1552
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1553
- msgid "Available tags for dynamic URLs"
1554
- msgstr "Available tags for dynamic URLs"
1555
-
1556
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
1557
- msgid "You use the following tags in your URLs to redirect users to various pages."
1558
- msgstr "You use the following tags in your URLs to redirect users to various pages."
1559
-
1560
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1561
- msgid "generates a url of the current website homepage."
1562
- msgstr "generates a url of the current website homepage."
1563
-
1564
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1565
- msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1566
- msgstr "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1567
-
1568
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1569
- msgid "the ID of the user"
1570
- msgstr "Bruger ID "
1571
-
1572
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1573
- msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1574
- msgstr "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1575
-
1576
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
1577
- msgid "the URL of the previously visited page"
1578
- msgstr "URL på sidst besøgte side"
1579
-
1580
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
1581
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
1582
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
1583
- msgid "You can't add duplicate redirects!"
1584
- msgstr "Du kan ikke oprette duplicate redirects!"
1585
-
1586
- #: profile-builder-2.0/admin/admin-functions.php:41
1587
- msgid "Display name publicly as - only appears on the Edit Profile page!"
1588
- msgstr "Display name publicly as - only appears on the Edit Profile page!"
1589
-
1590
- #: profile-builder-2.0/admin/basic-info.php:37
1591
- msgid "Friction-less login using %s shortcode or a widget."
1592
- msgstr "Friction-less login using %s shortcode or a widget."
1593
-
1594
- #: profile-builder-2.0/admin/basic-info.php:41
1595
- msgid "Beautiful registration forms fully customizable using the %s shortcode."
1596
- msgstr "Beautiful registration forms fully customizable using the %s shortcode."
1597
-
1598
- #: profile-builder-2.0/admin/basic-info.php:45
1599
- msgid "Straight forward edit profile forms using %s shortcode."
1600
- msgstr "Straight forward edit profile forms using %s shortcode."
1601
-
1602
- #: profile-builder-2.0/admin/basic-info.php:58
1603
- msgid "Allow users to recover their password in the front-end using the %s."
1604
- msgstr "Allow users to recover their password in the front-end using the %s."
1605
-
1606
- #: profile-builder-2.0/admin/basic-info.php:140
1607
- msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1608
- msgstr "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1609
-
1610
- #: profile-builder-2.0/admin/general-settings.php:115
1611
- msgid "\"Admin Approval\" on User Role:"
1612
- msgstr "Admin godkendelse på denne brugerrolle"
1613
-
1614
- #: profile-builder-2.0/admin/general-settings.php:134
1615
- msgid "Select on what user roles to activate Admin Approval."
1616
- msgstr "Select on what user roles to activate Admin Approval."
1617
-
1618
- #: profile-builder-2.0/admin/manage-fields.php:133
1619
- msgid "Display on PB forms"
1620
- msgstr "Se på PB forms"
1621
-
1622
- #: profile-builder-2.0/admin/manage-fields.php:133
1623
- msgid "PB Login"
1624
- msgstr "PB Login"
1625
-
1626
- #: profile-builder-2.0/admin/manage-fields.php:133
1627
- msgid "PB Register"
1628
- msgstr "PB Register"
1629
-
1630
- #: profile-builder-2.0/admin/manage-fields.php:133
1631
- msgid "PB Recover Password"
1632
- msgstr "PB Recover Password"
1633
-
1634
- #: profile-builder-2.0/admin/manage-fields.php:133
1635
- msgid "Select on which Profile Builder forms to display reCAPTCHA"
1636
- msgstr "Select on which Profile Builder forms to display reCAPTCHA"
1637
-
1638
- #: profile-builder-2.0/admin/manage-fields.php:134
1639
- msgid "Display on default WP forms"
1640
- msgstr "Display on default WP forms"
1641
-
1642
- #: profile-builder-2.0/admin/manage-fields.php:134
1643
- msgid "Default WP Login"
1644
- msgstr "Default WP Login"
1645
-
1646
- #: profile-builder-2.0/admin/manage-fields.php:134
1647
- msgid "Default WP Register"
1648
- msgstr "Default WP Register"
1649
-
1650
- #: profile-builder-2.0/admin/manage-fields.php:134
1651
- msgid "Default WP Recover Password"
1652
- msgstr "Default WP Recover Password"
1653
-
1654
- #: profile-builder-2.0/admin/manage-fields.php:134
1655
- msgid "Select on which default WP forms to display reCAPTCHA"
1656
- msgstr "Vælg på hvilne standard WP forms de vil se reCAPTCHA"
1657
-
1658
- #: profile-builder-2.0/admin/manage-fields.php:140
1659
- #: profile-builder-2.0/admin/manage-fields.php:141
1660
- #: profile-builder-2.0/admin/manage-fields.php:142
1661
- msgid "Default option of the field"
1662
- msgstr "Standard værdi på feltet"
1663
-
1664
- #: profile-builder-2.0/admin/manage-fields.php:282
1665
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
- msgid "Afghanistan"
1667
- msgstr "Afghanistan"
1668
-
1669
- #: profile-builder-2.0/admin/manage-fields.php:283
1670
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1671
- msgid "Aland Islands"
1672
- msgstr "Aland Islands"
1673
-
1674
- #: profile-builder-2.0/admin/manage-fields.php:284
1675
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1676
- msgid "Albania"
1677
- msgstr "Albania"
1678
-
1679
- #: profile-builder-2.0/admin/manage-fields.php:285
1680
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1681
- msgid "Algeria"
1682
- msgstr "Algeria"
1683
-
1684
- #: profile-builder-2.0/admin/manage-fields.php:286
1685
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1686
- msgid "American Samoa"
1687
- msgstr "American Samoa"
1688
-
1689
- #: profile-builder-2.0/admin/manage-fields.php:287
1690
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1691
- msgid "Andorra"
1692
- msgstr "Andorra"
1693
-
1694
- #: profile-builder-2.0/admin/manage-fields.php:288
1695
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
- msgid "Angola"
1697
- msgstr "Angola"
1698
-
1699
- #: profile-builder-2.0/admin/manage-fields.php:289
1700
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1701
- msgid "Anguilla"
1702
- msgstr "Anguilla"
1703
-
1704
- #: profile-builder-2.0/admin/manage-fields.php:290
1705
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1706
- msgid "Antarctica"
1707
- msgstr "Antarctica"
1708
-
1709
- #: profile-builder-2.0/admin/manage-fields.php:291
1710
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1711
- msgid "Antigua and Barbuda"
1712
- msgstr "Antigua and Barbuda"
1713
-
1714
- #: profile-builder-2.0/admin/manage-fields.php:292
1715
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1716
- msgid "Argentina"
1717
- msgstr "Argentina"
1718
-
1719
- #: profile-builder-2.0/admin/manage-fields.php:293
1720
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1721
- msgid "Armenia"
1722
- msgstr "Armenia"
1723
-
1724
- #: profile-builder-2.0/admin/manage-fields.php:294
1725
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1726
- msgid "Aruba"
1727
- msgstr "Aruba"
1728
-
1729
- #: profile-builder-2.0/admin/manage-fields.php:295
1730
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1731
- msgid "Australia"
1732
- msgstr "Australia"
1733
-
1734
- #: profile-builder-2.0/admin/manage-fields.php:296
1735
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1736
- msgid "Austria"
1737
- msgstr "Austria"
1738
-
1739
- #: profile-builder-2.0/admin/manage-fields.php:297
1740
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1741
- msgid "Azerbaijan"
1742
- msgstr "Azerbaijan"
1743
-
1744
- #: profile-builder-2.0/admin/manage-fields.php:298
1745
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1746
- msgid "Bahamas"
1747
- msgstr "Bahamas"
1748
-
1749
- #: profile-builder-2.0/admin/manage-fields.php:299
1750
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1751
- msgid "Bahrain"
1752
- msgstr "Bahrain"
1753
-
1754
- #: profile-builder-2.0/admin/manage-fields.php:300
1755
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1756
- msgid "Bangladesh"
1757
- msgstr "Bangladesh"
1758
-
1759
- #: profile-builder-2.0/admin/manage-fields.php:301
1760
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1761
- msgid "Barbados"
1762
- msgstr "Barbados"
1763
-
1764
- #: profile-builder-2.0/admin/manage-fields.php:302
1765
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1766
- msgid "Belarus"
1767
- msgstr "Belarus"
1768
-
1769
- #: profile-builder-2.0/admin/manage-fields.php:303
1770
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1771
- msgid "Belgium"
1772
- msgstr "Belgium"
1773
-
1774
- #: profile-builder-2.0/admin/manage-fields.php:304
1775
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1776
- msgid "Belize"
1777
- msgstr "Belize"
1778
-
1779
- #: profile-builder-2.0/admin/manage-fields.php:305
1780
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1781
- msgid "Benin"
1782
- msgstr "Benin"
1783
-
1784
- #: profile-builder-2.0/admin/manage-fields.php:306
1785
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1786
- msgid "Bermuda"
1787
- msgstr "Bermuda"
1788
-
1789
- #: profile-builder-2.0/admin/manage-fields.php:307
1790
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1791
- msgid "Bhutan"
1792
- msgstr "Bhutan"
1793
-
1794
- #: profile-builder-2.0/admin/manage-fields.php:308
1795
- msgid "Bolivia"
1796
- msgstr "Bolivia"
1797
-
1798
- #: profile-builder-2.0/admin/manage-fields.php:309
1799
- msgid "Bonaire, Saint Eustatius and Saba"
1800
- msgstr "Bonaire, Saint Eustatius and Saba"
1801
-
1802
- #: profile-builder-2.0/admin/manage-fields.php:310
1803
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1804
- msgid "Bosnia and Herzegovina"
1805
- msgstr "Bosnia and Herzegovina"
1806
-
1807
- #: profile-builder-2.0/admin/manage-fields.php:311
1808
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1809
- msgid "Botswana"
1810
- msgstr "Botswana"
1811
-
1812
- #: profile-builder-2.0/admin/manage-fields.php:312
1813
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1814
- msgid "Bouvet Island"
1815
- msgstr "Bouvet Island"
1816
-
1817
- #: profile-builder-2.0/admin/manage-fields.php:313
1818
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1819
- msgid "Brazil"
1820
- msgstr "Brazil"
1821
-
1822
- #: profile-builder-2.0/admin/manage-fields.php:314
1823
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1824
- msgid "British Indian Ocean Territory"
1825
- msgstr "British Indian Ocean Territory"
1826
-
1827
- #: profile-builder-2.0/admin/manage-fields.php:315
1828
- msgid "British Virgin Islands"
1829
- msgstr "British Virgin Islands"
1830
-
1831
- #: profile-builder-2.0/admin/manage-fields.php:316
1832
- msgid "Brunei"
1833
- msgstr "Brunei"
1834
-
1835
- #: profile-builder-2.0/admin/manage-fields.php:317
1836
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1837
- msgid "Bulgaria"
1838
- msgstr "Bulgaria"
1839
-
1840
- #: profile-builder-2.0/admin/manage-fields.php:318
1841
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1842
- msgid "Burkina Faso"
1843
- msgstr "Burkina Faso"
1844
-
1845
- #: profile-builder-2.0/admin/manage-fields.php:319
1846
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1847
- msgid "Burundi"
1848
- msgstr "Burundi"
1849
-
1850
- #: profile-builder-2.0/admin/manage-fields.php:320
1851
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1852
- msgid "Cambodia"
1853
- msgstr "Cambodia"
1854
-
1855
- #: profile-builder-2.0/admin/manage-fields.php:321
1856
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1857
- msgid "Cameroon"
1858
- msgstr "Cameroon"
1859
-
1860
- #: profile-builder-2.0/admin/manage-fields.php:322
1861
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1862
- msgid "Canada"
1863
- msgstr "Canada"
1864
-
1865
- #: profile-builder-2.0/admin/manage-fields.php:323
1866
- msgid "Cape Verde"
1867
- msgstr "Cape Verde"
1868
-
1869
- #: profile-builder-2.0/admin/manage-fields.php:324
1870
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1871
- msgid "Cayman Islands"
1872
- msgstr "Cayman Islands"
1873
-
1874
- #: profile-builder-2.0/admin/manage-fields.php:325
1875
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1876
- msgid "Central African Republic"
1877
- msgstr "Central African Republic"
1878
-
1879
- #: profile-builder-2.0/admin/manage-fields.php:326
1880
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1881
- msgid "Chad"
1882
- msgstr "Chad"
1883
-
1884
- #: profile-builder-2.0/admin/manage-fields.php:327
1885
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1886
- msgid "Chile"
1887
- msgstr "Chile"
1888
-
1889
- #: profile-builder-2.0/admin/manage-fields.php:328
1890
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1891
- msgid "China"
1892
- msgstr "China"
1893
-
1894
- #: profile-builder-2.0/admin/manage-fields.php:329
1895
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1896
- msgid "Christmas Island"
1897
- msgstr "Christmas Island"
1898
-
1899
- #: profile-builder-2.0/admin/manage-fields.php:330
1900
- msgid "Cocos Islands"
1901
- msgstr "Cocos Islands"
1902
-
1903
- #: profile-builder-2.0/admin/manage-fields.php:331
1904
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1905
- msgid "Colombia"
1906
- msgstr "Colombia"
1907
-
1908
- #: profile-builder-2.0/admin/manage-fields.php:332
1909
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1910
- msgid "Comoros"
1911
- msgstr "Comoros"
1912
-
1913
- #: profile-builder-2.0/admin/manage-fields.php:333
1914
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1915
- msgid "Cook Islands"
1916
- msgstr "Cook Islands"
1917
-
1918
- #: profile-builder-2.0/admin/manage-fields.php:334
1919
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1920
- msgid "Costa Rica"
1921
- msgstr "Costa Rica"
1922
-
1923
- #: profile-builder-2.0/admin/manage-fields.php:335
1924
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1925
- msgid "Croatia"
1926
- msgstr "Croatia"
1927
-
1928
- #: profile-builder-2.0/admin/manage-fields.php:336
1929
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1930
- msgid "Cuba"
1931
- msgstr "Cuba"
1932
-
1933
- #: profile-builder-2.0/admin/manage-fields.php:337
1934
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1935
- msgid "Curacao"
1936
- msgstr "Curacao"
1937
-
1938
- #: profile-builder-2.0/admin/manage-fields.php:338
1939
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1940
- msgid "Cyprus"
1941
- msgstr "Cyprus"
1942
-
1943
- #: profile-builder-2.0/admin/manage-fields.php:339
1944
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1945
- msgid "Czech Republic"
1946
- msgstr "Czech Republic"
1947
-
1948
- #: profile-builder-2.0/admin/manage-fields.php:340
1949
- msgid "Democratic Republic of the Congo"
1950
- msgstr "Democratic Republic of the Congo"
1951
-
1952
- #: profile-builder-2.0/admin/manage-fields.php:341
1953
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1954
- msgid "Denmark"
1955
- msgstr "Denmark"
1956
-
1957
- #: profile-builder-2.0/admin/manage-fields.php:342
1958
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1959
- msgid "Djibouti"
1960
- msgstr "Djibouti"
1961
-
1962
- #: profile-builder-2.0/admin/manage-fields.php:343
1963
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1964
- msgid "Dominica"
1965
- msgstr "Dominica"
1966
-
1967
- #: profile-builder-2.0/admin/manage-fields.php:344
1968
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1969
- msgid "Dominican Republic"
1970
- msgstr "Dominican Republic"
1971
-
1972
- #: profile-builder-2.0/admin/manage-fields.php:345
1973
- msgid "East Timor"
1974
- msgstr "East Timor"
1975
-
1976
- #: profile-builder-2.0/admin/manage-fields.php:346
1977
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1978
- msgid "Ecuador"
1979
- msgstr "Ecuador"
1980
-
1981
- #: profile-builder-2.0/admin/manage-fields.php:347
1982
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1983
- msgid "Egypt"
1984
- msgstr "Egypt"
1985
-
1986
- #: profile-builder-2.0/admin/manage-fields.php:348
1987
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1988
- msgid "El Salvador"
1989
- msgstr "El Salvador"
1990
-
1991
- #: profile-builder-2.0/admin/manage-fields.php:349
1992
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1993
- msgid "Equatorial Guinea"
1994
- msgstr "Equatorial Guinea"
1995
-
1996
- #: profile-builder-2.0/admin/manage-fields.php:350
1997
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1998
- msgid "Eritrea"
1999
- msgstr "Eritrea"
2000
-
2001
- #: profile-builder-2.0/admin/manage-fields.php:351
2002
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2003
- msgid "Estonia"
2004
- msgstr "Estonia"
2005
-
2006
- #: profile-builder-2.0/admin/manage-fields.php:352
2007
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2008
- msgid "Ethiopia"
2009
- msgstr "Ethiopia"
2010
-
2011
- #: profile-builder-2.0/admin/manage-fields.php:353
2012
- msgid "Falkland Islands"
2013
- msgstr "Falkland Islands"
2014
-
2015
- #: profile-builder-2.0/admin/manage-fields.php:354
2016
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2017
- msgid "Faroe Islands"
2018
- msgstr "Faroe Islands"
2019
-
2020
- #: profile-builder-2.0/admin/manage-fields.php:355
2021
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2022
- msgid "Fiji"
2023
- msgstr "Fiji"
2024
-
2025
- #: profile-builder-2.0/admin/manage-fields.php:356
2026
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2027
- msgid "Finland"
2028
- msgstr "Finland"
2029
-
2030
- #: profile-builder-2.0/admin/manage-fields.php:357
2031
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2032
- msgid "France"
2033
- msgstr "France"
2034
-
2035
- #: profile-builder-2.0/admin/manage-fields.php:358
2036
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2037
- msgid "French Guiana"
2038
- msgstr "French Guiana"
2039
-
2040
- #: profile-builder-2.0/admin/manage-fields.php:359
2041
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2042
- msgid "French Polynesia"
2043
- msgstr "French Polynesia"
2044
-
2045
- #: profile-builder-2.0/admin/manage-fields.php:360
2046
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2047
- msgid "French Southern Territories"
2048
- msgstr "French Southern Territories"
2049
-
2050
- #: profile-builder-2.0/admin/manage-fields.php:361
2051
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2052
- msgid "Gabon"
2053
- msgstr "Gabon"
2054
-
2055
- #: profile-builder-2.0/admin/manage-fields.php:362
2056
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2057
- msgid "Gambia"
2058
- msgstr "Gambia"
2059
-
2060
- #: profile-builder-2.0/admin/manage-fields.php:363
2061
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
- msgid "Georgia"
2063
- msgstr "Georgia"
2064
-
2065
- #: profile-builder-2.0/admin/manage-fields.php:364
2066
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2067
- msgid "Germany"
2068
- msgstr "Germany"
2069
-
2070
- #: profile-builder-2.0/admin/manage-fields.php:365
2071
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2072
- msgid "Ghana"
2073
- msgstr "Ghana"
2074
-
2075
- #: profile-builder-2.0/admin/manage-fields.php:366
2076
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
- msgid "Gibraltar"
2078
- msgstr "Gibraltar"
2079
-
2080
- #: profile-builder-2.0/admin/manage-fields.php:367
2081
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
- msgid "Greece"
2083
- msgstr "Greece"
2084
-
2085
- #: profile-builder-2.0/admin/manage-fields.php:368
2086
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
- msgid "Greenland"
2088
- msgstr "Greenland"
2089
-
2090
- #: profile-builder-2.0/admin/manage-fields.php:369
2091
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
- msgid "Grenada"
2093
- msgstr "Grenada"
2094
-
2095
- #: profile-builder-2.0/admin/manage-fields.php:370
2096
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2097
- msgid "Guadeloupe"
2098
- msgstr "Guadeloupe"
2099
-
2100
- #: profile-builder-2.0/admin/manage-fields.php:371
2101
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2102
- msgid "Guam"
2103
- msgstr "Guam"
2104
-
2105
- #: profile-builder-2.0/admin/manage-fields.php:372
2106
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2107
- msgid "Guatemala"
2108
- msgstr "Guatemala"
2109
-
2110
- #: profile-builder-2.0/admin/manage-fields.php:373
2111
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2112
- msgid "Guernsey"
2113
- msgstr "Guernsey"
2114
-
2115
- #: profile-builder-2.0/admin/manage-fields.php:374
2116
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2117
- msgid "Guinea"
2118
- msgstr "Guinea"
2119
-
2120
- #: profile-builder-2.0/admin/manage-fields.php:375
2121
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2122
- msgid "Guinea-Bissau"
2123
- msgstr "Guinea-Bissau"
2124
-
2125
- #: profile-builder-2.0/admin/manage-fields.php:376
2126
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2127
- msgid "Guyana"
2128
- msgstr "Guyana"
2129
-
2130
- #: profile-builder-2.0/admin/manage-fields.php:377
2131
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2132
- msgid "Haiti"
2133
- msgstr "Haiti"
2134
-
2135
- #: profile-builder-2.0/admin/manage-fields.php:378
2136
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2137
- msgid "Heard Island and McDonald Islands"
2138
- msgstr "Heard Island and McDonald Islands"
2139
-
2140
- #: profile-builder-2.0/admin/manage-fields.php:379
2141
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2142
- msgid "Honduras"
2143
- msgstr "Honduras"
2144
-
2145
- #: profile-builder-2.0/admin/manage-fields.php:380
2146
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2147
- msgid "Hong Kong"
2148
- msgstr "Hong Kong"
2149
-
2150
- #: profile-builder-2.0/admin/manage-fields.php:381
2151
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2152
- msgid "Hungary"
2153
- msgstr "Hungary"
2154
-
2155
- #: profile-builder-2.0/admin/manage-fields.php:382
2156
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2157
- msgid "Iceland"
2158
- msgstr "Iceland"
2159
-
2160
- #: profile-builder-2.0/admin/manage-fields.php:383
2161
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2162
- msgid "India"
2163
- msgstr "India"
2164
-
2165
- #: profile-builder-2.0/admin/manage-fields.php:384
2166
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2167
- msgid "Indonesia"
2168
- msgstr "Indonesia"
2169
-
2170
- #: profile-builder-2.0/admin/manage-fields.php:385
2171
- msgid "Iran"
2172
- msgstr "Iran"
2173
-
2174
- #: profile-builder-2.0/admin/manage-fields.php:386
2175
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2176
- msgid "Iraq"
2177
- msgstr "Iraq"
2178
-
2179
- #: profile-builder-2.0/admin/manage-fields.php:387
2180
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2181
- msgid "Ireland"
2182
- msgstr "Ireland"
2183
-
2184
- #: profile-builder-2.0/admin/manage-fields.php:388
2185
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2186
- msgid "Isle of Man"
2187
- msgstr "Isle of Man"
2188
-
2189
- #: profile-builder-2.0/admin/manage-fields.php:389
2190
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2191
- msgid "Israel"
2192
- msgstr "Israel"
2193
-
2194
- #: profile-builder-2.0/admin/manage-fields.php:390
2195
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2196
- msgid "Italy"
2197
- msgstr "Italy"
2198
-
2199
- #: profile-builder-2.0/admin/manage-fields.php:391
2200
- msgid "Ivory Coast"
2201
- msgstr "Ivory Coast"
2202
-
2203
- #: profile-builder-2.0/admin/manage-fields.php:392
2204
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2205
- msgid "Jamaica"
2206
- msgstr "Jamaica"
2207
-
2208
- #: profile-builder-2.0/admin/manage-fields.php:393
2209
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2210
- msgid "Japan"
2211
- msgstr "Japan"
2212
-
2213
- #: profile-builder-2.0/admin/manage-fields.php:394
2214
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2215
- msgid "Jersey"
2216
- msgstr "Jersey"
2217
-
2218
- #: profile-builder-2.0/admin/manage-fields.php:395
2219
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2220
- msgid "Jordan"
2221
- msgstr "Jordan"
2222
-
2223
- #: profile-builder-2.0/admin/manage-fields.php:396
2224
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2225
- msgid "Kazakhstan"
2226
- msgstr "Kazakhstan"
2227
-
2228
- #: profile-builder-2.0/admin/manage-fields.php:397
2229
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2230
- msgid "Kenya"
2231
- msgstr "Kenya"
2232
-
2233
- #: profile-builder-2.0/admin/manage-fields.php:398
2234
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2235
- msgid "Kiribati"
2236
- msgstr "Kiribati"
2237
-
2238
- #: profile-builder-2.0/admin/manage-fields.php:399
2239
- msgid "Kosovo"
2240
- msgstr "Kosovo"
2241
-
2242
- #: profile-builder-2.0/admin/manage-fields.php:400
2243
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2244
- msgid "Kuwait"
2245
- msgstr "Kuwait"
2246
-
2247
- #: profile-builder-2.0/admin/manage-fields.php:401
2248
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2249
- msgid "Kyrgyzstan"
2250
- msgstr "Kyrgyzstan"
2251
-
2252
- #: profile-builder-2.0/admin/manage-fields.php:402
2253
- msgid "Laos"
2254
- msgstr "Laos"
2255
-
2256
- #: profile-builder-2.0/admin/manage-fields.php:403
2257
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2258
- msgid "Latvia"
2259
- msgstr "Latvia"
2260
-
2261
- #: profile-builder-2.0/admin/manage-fields.php:404
2262
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2263
- msgid "Lebanon"
2264
- msgstr "Lebanon"
2265
-
2266
- #: profile-builder-2.0/admin/manage-fields.php:405
2267
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2268
- msgid "Lesotho"
2269
- msgstr "Lesotho"
2270
-
2271
- #: profile-builder-2.0/admin/manage-fields.php:406
2272
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2273
- msgid "Liberia"
2274
- msgstr "Liberia"
2275
-
2276
- #: profile-builder-2.0/admin/manage-fields.php:407
2277
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2278
- msgid "Libya"
2279
- msgstr "Libya"
2280
-
2281
- #: profile-builder-2.0/admin/manage-fields.php:408
2282
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2283
- msgid "Liechtenstein"
2284
- msgstr "Liechtenstein"
2285
-
2286
- #: profile-builder-2.0/admin/manage-fields.php:409
2287
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2288
- msgid "Lithuania"
2289
- msgstr "Lithuania"
2290
-
2291
- #: profile-builder-2.0/admin/manage-fields.php:410
2292
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2293
- msgid "Luxembourg"
2294
- msgstr "Luxembourg"
2295
-
2296
- #: profile-builder-2.0/admin/manage-fields.php:411
2297
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2298
- msgid "Macao"
2299
- msgstr "Macao"
2300
-
2301
- #: profile-builder-2.0/admin/manage-fields.php:412
2302
- msgid "Macedonia"
2303
- msgstr "Macedonia"
2304
-
2305
- #: profile-builder-2.0/admin/manage-fields.php:413
2306
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2307
- msgid "Madagascar"
2308
- msgstr "Madagascar"
2309
-
2310
- #: profile-builder-2.0/admin/manage-fields.php:414
2311
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2312
- msgid "Malawi"
2313
- msgstr "Malawi"
2314
-
2315
- #: profile-builder-2.0/admin/manage-fields.php:415
2316
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2317
- msgid "Malaysia"
2318
- msgstr "Malaysia"
2319
-
2320
- #: profile-builder-2.0/admin/manage-fields.php:416
2321
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2322
- msgid "Maldives"
2323
- msgstr "Maldives"
2324
-
2325
- #: profile-builder-2.0/admin/manage-fields.php:417
2326
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2327
- msgid "Mali"
2328
- msgstr "Mali"
2329
-
2330
- #: profile-builder-2.0/admin/manage-fields.php:418
2331
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2332
- msgid "Malta"
2333
- msgstr "Malta"
2334
-
2335
- #: profile-builder-2.0/admin/manage-fields.php:419
2336
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2337
- msgid "Marshall Islands"
2338
- msgstr "Marshall Islands"
2339
-
2340
- #: profile-builder-2.0/admin/manage-fields.php:420
2341
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2342
- msgid "Martinique"
2343
- msgstr "Martinique"
2344
-
2345
- #: profile-builder-2.0/admin/manage-fields.php:421
2346
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2347
- msgid "Mauritania"
2348
- msgstr "Mauritania"
2349
-
2350
- #: profile-builder-2.0/admin/manage-fields.php:422
2351
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2352
- msgid "Mauritius"
2353
- msgstr "Mauritius"
2354
-
2355
- #: profile-builder-2.0/admin/manage-fields.php:423
2356
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2357
- msgid "Mayotte"
2358
- msgstr "Mayotte"
2359
-
2360
- #: profile-builder-2.0/admin/manage-fields.php:424
2361
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2362
- msgid "Mexico"
2363
- msgstr "Mexico"
2364
-
2365
- #: profile-builder-2.0/admin/manage-fields.php:425
2366
- msgid "Micronesia"
2367
- msgstr "Micronesia"
2368
-
2369
- #: profile-builder-2.0/admin/manage-fields.php:426
2370
- msgid "Moldova"
2371
- msgstr "Moldova"
2372
-
2373
- #: profile-builder-2.0/admin/manage-fields.php:427
2374
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2375
- msgid "Monaco"
2376
- msgstr "Monaco"
2377
-
2378
- #: profile-builder-2.0/admin/manage-fields.php:428
2379
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2380
- msgid "Mongolia"
2381
- msgstr "Mongolia"
2382
-
2383
- #: profile-builder-2.0/admin/manage-fields.php:429
2384
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
- msgid "Montenegro"
2386
- msgstr "Montenegro"
2387
-
2388
- #: profile-builder-2.0/admin/manage-fields.php:430
2389
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2390
- msgid "Montserrat"
2391
- msgstr "Montserrat"
2392
-
2393
- #: profile-builder-2.0/admin/manage-fields.php:431
2394
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2395
- msgid "Morocco"
2396
- msgstr "Morocco"
2397
-
2398
- #: profile-builder-2.0/admin/manage-fields.php:432
2399
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2400
- msgid "Mozambique"
2401
- msgstr "Mozambique"
2402
-
2403
- #: profile-builder-2.0/admin/manage-fields.php:433
2404
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2405
- msgid "Myanmar"
2406
- msgstr "Myanmar"
2407
-
2408
- #: profile-builder-2.0/admin/manage-fields.php:434
2409
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2410
- msgid "Namibia"
2411
- msgstr "Namibia"
2412
-
2413
- #: profile-builder-2.0/admin/manage-fields.php:435
2414
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2415
- msgid "Nauru"
2416
- msgstr "Nauru"
2417
-
2418
- #: profile-builder-2.0/admin/manage-fields.php:436
2419
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2420
- msgid "Nepal"
2421
- msgstr "Nepal"
2422
-
2423
- #: profile-builder-2.0/admin/manage-fields.php:437
2424
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2425
- msgid "Netherlands"
2426
- msgstr "Netherlands"
2427
-
2428
- #: profile-builder-2.0/admin/manage-fields.php:438
2429
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2430
- msgid "New Caledonia"
2431
- msgstr "New Caledonia"
2432
-
2433
- #: profile-builder-2.0/admin/manage-fields.php:439
2434
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2435
- msgid "New Zealand"
2436
- msgstr "New Zealand"
2437
-
2438
- #: profile-builder-2.0/admin/manage-fields.php:440
2439
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2440
- msgid "Nicaragua"
2441
- msgstr "Nicaragua"
2442
-
2443
- #: profile-builder-2.0/admin/manage-fields.php:441
2444
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2445
- msgid "Niger"
2446
- msgstr "Niger"
2447
-
2448
- #: profile-builder-2.0/admin/manage-fields.php:442
2449
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2450
- msgid "Nigeria"
2451
- msgstr "Nigeria"
2452
-
2453
- #: profile-builder-2.0/admin/manage-fields.php:443
2454
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2455
- msgid "Niue"
2456
- msgstr "Niue"
2457
-
2458
- #: profile-builder-2.0/admin/manage-fields.php:444
2459
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2460
- msgid "Norfolk Island"
2461
- msgstr "Norfolk Island"
2462
-
2463
- #: profile-builder-2.0/admin/manage-fields.php:445
2464
- msgid "North Korea"
2465
- msgstr "North Korea"
2466
-
2467
- #: profile-builder-2.0/admin/manage-fields.php:446
2468
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2469
- msgid "Northern Mariana Islands"
2470
- msgstr "Northern Mariana Islands"
2471
-
2472
- #: profile-builder-2.0/admin/manage-fields.php:447
2473
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2474
- msgid "Norway"
2475
- msgstr "Norway"
2476
-
2477
- #: profile-builder-2.0/admin/manage-fields.php:448
2478
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2479
- msgid "Oman"
2480
- msgstr "Oman"
2481
-
2482
- #: profile-builder-2.0/admin/manage-fields.php:449
2483
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2484
- msgid "Pakistan"
2485
- msgstr "Pakistan"
2486
-
2487
- #: profile-builder-2.0/admin/manage-fields.php:450
2488
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2489
- msgid "Palau"
2490
- msgstr "Palau"
2491
-
2492
- #: profile-builder-2.0/admin/manage-fields.php:451
2493
- msgid "Palestinian Territory"
2494
- msgstr "Palestinian Territory"
2495
-
2496
- #: profile-builder-2.0/admin/manage-fields.php:452
2497
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2498
- msgid "Panama"
2499
- msgstr "Panama"
2500
-
2501
- #: profile-builder-2.0/admin/manage-fields.php:453
2502
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2503
- msgid "Papua New Guinea"
2504
- msgstr "Papua New Guinea"
2505
-
2506
- #: profile-builder-2.0/admin/manage-fields.php:454
2507
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2508
- msgid "Paraguay"
2509
- msgstr "Paraguay"
2510
-
2511
- #: profile-builder-2.0/admin/manage-fields.php:455
2512
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2513
- msgid "Peru"
2514
- msgstr "Peru"
2515
-
2516
- #: profile-builder-2.0/admin/manage-fields.php:456
2517
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2518
- msgid "Philippines"
2519
- msgstr "Philippines"
2520
-
2521
- #: profile-builder-2.0/admin/manage-fields.php:457
2522
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2523
- msgid "Pitcairn"
2524
- msgstr "Pitcairn"
2525
-
2526
- #: profile-builder-2.0/admin/manage-fields.php:458
2527
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2528
- msgid "Poland"
2529
- msgstr "Poland"
2530
-
2531
- #: profile-builder-2.0/admin/manage-fields.php:459
2532
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2533
- msgid "Portugal"
2534
- msgstr "Portugal"
2535
-
2536
- #: profile-builder-2.0/admin/manage-fields.php:460
2537
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2538
- msgid "Puerto Rico"
2539
- msgstr "Puerto Rico"
2540
-
2541
- #: profile-builder-2.0/admin/manage-fields.php:461
2542
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2543
- msgid "Qatar"
2544
- msgstr "Qatar"
2545
-
2546
- #: profile-builder-2.0/admin/manage-fields.php:462
2547
- msgid "Republic of the Congo"
2548
- msgstr "Republic of the Congo"
2549
-
2550
- #: profile-builder-2.0/admin/manage-fields.php:463
2551
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2552
- msgid "Reunion"
2553
- msgstr "Reunion"
2554
-
2555
- #: profile-builder-2.0/admin/manage-fields.php:464
2556
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2557
- msgid "Romania"
2558
- msgstr "Romania"
2559
-
2560
- #: profile-builder-2.0/admin/manage-fields.php:465
2561
- msgid "Russia"
2562
- msgstr "Russia"
2563
-
2564
- #: profile-builder-2.0/admin/manage-fields.php:466
2565
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2566
- msgid "Rwanda"
2567
- msgstr "Rwanda"
2568
-
2569
- #: profile-builder-2.0/admin/manage-fields.php:467
2570
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2571
- msgid "Saint Barthelemy"
2572
- msgstr "Saint Barthelemy"
2573
-
2574
- #: profile-builder-2.0/admin/manage-fields.php:468
2575
- msgid "Saint Helena"
2576
- msgstr "Saint Helena"
2577
-
2578
- #: profile-builder-2.0/admin/manage-fields.php:469
2579
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2580
- msgid "Saint Kitts and Nevis"
2581
- msgstr "Saint Kitts and Nevis"
2582
-
2583
- #: profile-builder-2.0/admin/manage-fields.php:470
2584
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2585
- msgid "Saint Lucia"
2586
- msgstr "Saint Lucia"
2587
-
2588
- #: profile-builder-2.0/admin/manage-fields.php:471
2589
- msgid "Saint Martin"
2590
- msgstr "Saint Martin"
2591
-
2592
- #: profile-builder-2.0/admin/manage-fields.php:472
2593
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2594
- msgid "Saint Pierre and Miquelon"
2595
- msgstr "Saint Pierre and Miquelon"
2596
-
2597
- #: profile-builder-2.0/admin/manage-fields.php:473
2598
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2599
- msgid "Saint Vincent and the Grenadines"
2600
- msgstr "Saint Vincent and the Grenadines"
2601
-
2602
- #: profile-builder-2.0/admin/manage-fields.php:474
2603
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2604
- msgid "Samoa"
2605
- msgstr "Samoa"
2606
-
2607
- #: profile-builder-2.0/admin/manage-fields.php:475
2608
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2609
- msgid "San Marino"
2610
- msgstr "San Marino"
2611
-
2612
- #: profile-builder-2.0/admin/manage-fields.php:476
2613
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2614
- msgid "Sao Tome and Principe"
2615
- msgstr "Sao Tome and Principe"
2616
-
2617
- #: profile-builder-2.0/admin/manage-fields.php:477
2618
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2619
- msgid "Saudi Arabia"
2620
- msgstr "Saudi Arabia"
2621
-
2622
- #: profile-builder-2.0/admin/manage-fields.php:478
2623
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2624
- msgid "Senegal"
2625
- msgstr "Senegal"
2626
-
2627
- #: profile-builder-2.0/admin/manage-fields.php:479
2628
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2629
- msgid "Serbia"
2630
- msgstr "Serbia"
2631
-
2632
- #: profile-builder-2.0/admin/manage-fields.php:480
2633
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2634
- msgid "Seychelles"
2635
- msgstr "Seychelles"
2636
-
2637
- #: profile-builder-2.0/admin/manage-fields.php:481
2638
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2639
- msgid "Sierra Leone"
2640
- msgstr "Sierra Leone"
2641
-
2642
- #: profile-builder-2.0/admin/manage-fields.php:482
2643
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2644
- msgid "Singapore"
2645
- msgstr "Singapore"
2646
-
2647
- #: profile-builder-2.0/admin/manage-fields.php:483
2648
- msgid "Sint Maarten"
2649
- msgstr "Sint Maarten"
2650
-
2651
- #: profile-builder-2.0/admin/manage-fields.php:484
2652
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2653
- msgid "Slovakia"
2654
- msgstr "Slovakia"
2655
-
2656
- #: profile-builder-2.0/admin/manage-fields.php:485
2657
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2658
- msgid "Slovenia"
2659
- msgstr "Slovenia"
2660
-
2661
- #: profile-builder-2.0/admin/manage-fields.php:486
2662
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2663
- msgid "Solomon Islands"
2664
- msgstr "Solomon Islands"
2665
-
2666
- #: profile-builder-2.0/admin/manage-fields.php:487
2667
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2668
- msgid "Somalia"
2669
- msgstr "Somalia"
2670
-
2671
- #: profile-builder-2.0/admin/manage-fields.php:488
2672
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2673
- msgid "South Africa"
2674
- msgstr "South Africa"
2675
-
2676
- #: profile-builder-2.0/admin/manage-fields.php:489
2677
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2678
- msgid "South Georgia and the South Sandwich Islands"
2679
- msgstr "South Georgia and the South Sandwich Islands"
2680
-
2681
- #: profile-builder-2.0/admin/manage-fields.php:490
2682
- msgid "South Korea"
2683
- msgstr "South Korea"
2684
-
2685
- #: profile-builder-2.0/admin/manage-fields.php:491
2686
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2687
- msgid "South Sudan"
2688
- msgstr "South Sudan"
2689
-
2690
- #: profile-builder-2.0/admin/manage-fields.php:492
2691
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2692
- msgid "Spain"
2693
- msgstr "Spain"
2694
-
2695
- #: profile-builder-2.0/admin/manage-fields.php:493
2696
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2697
- msgid "Sri Lanka"
2698
- msgstr "Sri Lanka"
2699
-
2700
- #: profile-builder-2.0/admin/manage-fields.php:494
2701
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2702
- msgid "Sudan"
2703
- msgstr "Sudan"
2704
-
2705
- #: profile-builder-2.0/admin/manage-fields.php:495
2706
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2707
- msgid "Suriname"
2708
- msgstr "Suriname"
2709
-
2710
- #: profile-builder-2.0/admin/manage-fields.php:496
2711
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2712
- msgid "Svalbard and Jan Mayen"
2713
- msgstr "Svalbard and Jan Mayen"
2714
-
2715
- #: profile-builder-2.0/admin/manage-fields.php:497
2716
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2717
- msgid "Swaziland"
2718
- msgstr "Swaziland"
2719
-
2720
- #: profile-builder-2.0/admin/manage-fields.php:498
2721
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2722
- msgid "Sweden"
2723
- msgstr "Sweden"
2724
-
2725
- #: profile-builder-2.0/admin/manage-fields.php:499
2726
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2727
- msgid "Switzerland"
2728
- msgstr "Switzerland"
2729
-
2730
- #: profile-builder-2.0/admin/manage-fields.php:500
2731
- msgid "Syria"
2732
- msgstr "Syria"
2733
-
2734
- #: profile-builder-2.0/admin/manage-fields.php:501
2735
- msgid "Taiwan"
2736
- msgstr "Taiwan"
2737
-
2738
- #: profile-builder-2.0/admin/manage-fields.php:502
2739
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2740
- msgid "Tajikistan"
2741
- msgstr "Tajikistan"
2742
-
2743
- #: profile-builder-2.0/admin/manage-fields.php:503
2744
- msgid "Tanzania"
2745
- msgstr "Tanzania"
2746
-
2747
- #: profile-builder-2.0/admin/manage-fields.php:504
2748
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2749
- msgid "Thailand"
2750
- msgstr "Thailand"
2751
-
2752
- #: profile-builder-2.0/admin/manage-fields.php:505
2753
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2754
- msgid "Togo"
2755
- msgstr "Togo"
2756
-
2757
- #: profile-builder-2.0/admin/manage-fields.php:506
2758
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2759
- msgid "Tokelau"
2760
- msgstr "Tokelau"
2761
-
2762
- #: profile-builder-2.0/admin/manage-fields.php:507
2763
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2764
- msgid "Tonga"
2765
- msgstr "Tonga"
2766
-
2767
- #: profile-builder-2.0/admin/manage-fields.php:508
2768
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2769
- msgid "Trinidad and Tobago"
2770
- msgstr "Trinidad and Tobago"
2771
-
2772
- #: profile-builder-2.0/admin/manage-fields.php:509
2773
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2774
- msgid "Tunisia"
2775
- msgstr "Tunisia"
2776
-
2777
- #: profile-builder-2.0/admin/manage-fields.php:510
2778
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2779
- msgid "Turkey"
2780
- msgstr "Turkey"
2781
-
2782
- #: profile-builder-2.0/admin/manage-fields.php:511
2783
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2784
- msgid "Turkmenistan"
2785
- msgstr "Turkmenistan"
2786
-
2787
- #: profile-builder-2.0/admin/manage-fields.php:512
2788
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2789
- msgid "Turks and Caicos Islands"
2790
- msgstr "Turks and Caicos Islands"
2791
-
2792
- #: profile-builder-2.0/admin/manage-fields.php:513
2793
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2794
- msgid "Tuvalu"
2795
- msgstr "Tuvalu"
2796
-
2797
- #: profile-builder-2.0/admin/manage-fields.php:514
2798
- msgid "U.S. Virgin Islands"
2799
- msgstr "U.S. Virgin Islands"
2800
-
2801
- #: profile-builder-2.0/admin/manage-fields.php:515
2802
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2803
- msgid "Uganda"
2804
- msgstr "Uganda"
2805
-
2806
- #: profile-builder-2.0/admin/manage-fields.php:516
2807
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2808
- msgid "Ukraine"
2809
- msgstr "Ukraine"
2810
-
2811
- #: profile-builder-2.0/admin/manage-fields.php:517
2812
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2813
- msgid "United Arab Emirates"
2814
- msgstr "United Arab Emirates"
2815
-
2816
- #: profile-builder-2.0/admin/manage-fields.php:518
2817
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2818
- msgid "United Kingdom"
2819
- msgstr "United Kingdom"
2820
-
2821
- #: profile-builder-2.0/admin/manage-fields.php:519
2822
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2823
- msgid "United States"
2824
- msgstr "United States"
2825
-
2826
- #: profile-builder-2.0/admin/manage-fields.php:520
2827
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2828
- msgid "United States Minor Outlying Islands"
2829
- msgstr "United States Minor Outlying Islands"
2830
-
2831
- #: profile-builder-2.0/admin/manage-fields.php:521
2832
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2833
- msgid "Uruguay"
2834
- msgstr "Uruguay"
2835
-
2836
- #: profile-builder-2.0/admin/manage-fields.php:522
2837
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2838
- msgid "Uzbekistan"
2839
- msgstr "Uzbekistan"
2840
-
2841
- #: profile-builder-2.0/admin/manage-fields.php:523
2842
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2843
- msgid "Vanuatu"
2844
- msgstr "Vanuatu"
2845
-
2846
- #: profile-builder-2.0/admin/manage-fields.php:524
2847
- msgid "Vatican"
2848
- msgstr "Vatican"
2849
-
2850
- #: profile-builder-2.0/admin/manage-fields.php:525
2851
- msgid "Venezuela"
2852
- msgstr "Venezuela"
2853
-
2854
- #: profile-builder-2.0/admin/manage-fields.php:526
2855
- msgid "Vietnam"
2856
- msgstr "Vietnam"
2857
-
2858
- #: profile-builder-2.0/admin/manage-fields.php:527
2859
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2860
- msgid "Wallis and Futuna"
2861
- msgstr "Wallis and Futuna"
2862
-
2863
- #: profile-builder-2.0/admin/manage-fields.php:528
2864
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2865
- msgid "Western Sahara"
2866
- msgstr "Western Sahara"
2867
-
2868
- #: profile-builder-2.0/admin/manage-fields.php:529
2869
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2870
- msgid "Yemen"
2871
- msgstr "Yemen"
2872
-
2873
- #: profile-builder-2.0/admin/manage-fields.php:530
2874
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2875
- msgid "Zambia"
2876
- msgstr "Zambia"
2877
-
2878
- #: profile-builder-2.0/admin/manage-fields.php:531
2879
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2880
- msgid "Zimbabwe"
2881
- msgstr "Zimbabwe"
2882
-
2883
- #: profile-builder-2.0/admin/manage-fields.php:1219
2884
- msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2885
- msgstr "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2886
-
2887
- #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
2888
- msgid "Your account has to be confirmed by an administrator before you can log in."
2889
- msgstr "Di konto skal godekendes af en administrator før du kan logge ind"
2890
-
2891
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
2892
- msgid "Your account has been successfully created!"
2893
- msgstr "Din konto er oprettet!"
2894
-
2895
- #: profile-builder-2.0/features/functions.php:678
2896
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
2897
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
2898
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2899
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
2900
- msgid "Please enter a (valid) reCAPTCHA value"
2901
- msgstr "Indtast en valid reCAPTCHA værdi"
2902
-
2903
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2904
- msgid "Click the BACK button on your browser, and try again."
2905
- msgstr "Tryk på BACK knappen i din browser, og prøv igen."
2906
-
2907
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2908
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2909
- msgid "Sorry, you cannot upload this file type for this field."
2910
- msgstr "Beklager, du kan ikke uploade denne fil type."
2911
-
2912
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2913
- msgid "An error occurred, please try again later."
2914
- msgstr "Der opstaod en fejl, prøv venligst igen senere."
2915
-
2916
- #: profile-builder-2.0/modules/user-listing/userlisting.php:282
2917
- msgid "More"
2918
- msgstr "Mere"
2919
-
2920
- #: profile-builder-2.0/modules/user-listing/userlisting.php:376
2921
- msgid "You do not have permission to view this user list."
2922
- msgstr "Du har ikke lov til at se denne bruger liste."
2923
-
2924
- #: profile-builder-2.0/modules/user-listing/userlisting.php:389
2925
- msgid "You do not have the required user role to view this user list."
2926
- msgstr "Du er ikke oprettet med en rigtige brugerrolle for at se denne liste"
2927
-
2928
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
2929
- msgid "Ascending"
2930
- msgstr "Stigende"
2931
-
2932
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
2933
- msgid "Descending"
2934
- msgstr "Faldende"
2935
-
2936
- #: profile-builder-2.0/admin/add-ons.php:148
2937
- #: profile-builder-2.0/admin/add-ons.php:248
2938
- #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2939
- #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2940
- msgid "Download Now"
2941
- msgstr "Download nu"
2942
-
2943
- #: profile-builder-2.0/admin/admin-functions.php:200
2944
- msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
2945
- msgstr "Hvis du kan lide at bruge <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate os på WordPress.org</a>. Flere tilfredse brugere betyder flere features, færre fejl og bedre support til alle."
2946
-
2947
- #: profile-builder-2.0/admin/manage-fields.php:82
2948
- msgid "Choose one of the supported field types"
2949
- msgstr "Vælg en af de supporterede felttyper"
2950
-
2951
- #: profile-builder-2.0/admin/manage-fields.php:84
2952
- msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2953
- msgstr ".Ekstra felttyper er tilgængelig i <a href=\"%s\">Hobbyist or PRO versions</a>."
2954
-
2955
- #: profile-builder-2.0/admin/manage-fields.php:131
2956
- msgid "Site Key"
2957
- msgstr "Site nøgle (Key)"
2958
-
2959
- #: profile-builder-2.0/admin/manage-fields.php:131
2960
- msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2961
- msgstr "Site nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2962
-
2963
- #: profile-builder-2.0/admin/manage-fields.php:132
2964
- msgid "Secret Key"
2965
- msgstr "Hemmelig nøgle (Key)"
2966
-
2967
- #: profile-builder-2.0/admin/manage-fields.php:132
2968
- msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2969
- msgstr "Den hemmelige nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2970
-
2971
- #: profile-builder-2.0/admin/manage-fields.php:1023
2972
- msgid "You must enter the site key\n"
2973
- msgstr "Du skal enter site nøglen (Key)\n"
2974
-
2975
- #: profile-builder-2.0/admin/manage-fields.php:1025
2976
- msgid "You must enter the secret key\n"
2977
- msgstr "Du skal enter den hemmelige nøgle (Key)\n"
2978
-
2979
- #: profile-builder-2.0/admin/add-ons.php:10
2980
- #: profile-builder-2.0/admin/add-ons.php:32
2981
- msgid "Add-Ons"
2982
- msgstr "Tilføjelser"
2983
-
2984
- #: profile-builder-2.0/admin/add-ons.php:34
2985
- #: profile-builder-2.0/admin/add-ons.php:129
2986
- #: profile-builder-2.0/admin/add-ons.php:231
2987
- #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2988
- #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2989
- #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2990
- msgid "Activate"
2991
- msgstr "Aktivér"
2992
-
2993
- #: profile-builder-2.0/admin/add-ons.php:36
2994
- #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2995
- msgid "Downloading and installing..."
2996
- msgstr "Dowloader og installerer...."
2997
-
2998
- #: profile-builder-2.0/admin/add-ons.php:37
2999
- #: profile-builder-2.0/admin/pms-cross-promotion.php:81
3000
- msgid "Installation complete"
3001
- msgstr "Installationen gennemført"
3002
-
3003
- #: profile-builder-2.0/admin/add-ons.php:39
3004
- msgid "Add-On is Active"
3005
- msgstr "Tilføjelser er aktive"
3006
-
3007
- #: profile-builder-2.0/admin/add-ons.php:40
3008
- msgid "Add-On has been activated"
3009
- msgstr "Tilføjelser er blevet aktiveret"
3010
-
3011
- #: profile-builder-2.0/admin/add-ons.php:41
3012
- #: profile-builder-2.0/admin/pms-cross-promotion.php:85
3013
- msgid "Retry Install"
3014
- msgstr "Geninstallér"
3015
-
3016
- #: profile-builder-2.0/admin/add-ons.php:43
3017
- #: profile-builder-2.0/admin/add-ons.php:140
3018
- msgid "Add-On is <strong>active</strong>"
3019
- msgstr "Tilføjelser (add-on) er <strong>active</strong>"
3020
-
3021
- #: profile-builder-2.0/admin/add-ons.php:44
3022
- #: profile-builder-2.0/admin/add-ons.php:138
3023
- msgid "Add-On is <strong>inactive</strong>"
3024
- msgstr "Tilføjelser (add-on) er <strong>inactive</strong>"
3025
-
3026
- #: profile-builder-2.0/admin/add-ons.php:46
3027
- #: profile-builder-2.0/admin/add-ons.php:133
3028
- #: profile-builder-2.0/admin/add-ons.php:235
3029
- #: profile-builder-2.0/admin/pms-cross-promotion.php:90
3030
- #: profile-builder-2.0/admin/pms-cross-promotion.php:118
3031
- #: profile-builder-2.0/admin/pms-cross-promotion.php:197
3032
- msgid "Deactivate"
3033
- msgstr "Deaktivér"
3034
-
3035
- #: profile-builder-2.0/admin/add-ons.php:47
3036
- msgid "Add-On has been deactivated."
3037
- msgstr "Tilføjelser er blevet deaktiveret"
3038
-
3039
- #: profile-builder-2.0/admin/add-ons.php:59
3040
- msgid "Something went wrong, we could not connect to the server. Please try again later."
3041
- msgstr "Et eller andet gik galt, vi kunne ikke forbinde til serveren. Venligst prøv igen senere."
3042
-
3043
- #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3044
- #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3045
- msgid "Install Now"
3046
- msgstr "Installér nu"
3047
-
3048
- #: profile-builder-2.0/admin/add-ons.php:153
3049
- #: profile-builder-2.0/admin/add-ons.php:251
3050
- #: profile-builder-2.0/admin/pms-cross-promotion.php:141
3051
- #: profile-builder-2.0/admin/pms-cross-promotion.php:220
3052
- msgid "Compatible with your version of Profile Builder."
3053
- msgstr "Kompatibel med din version af Profile Builder."
3054
-
3055
- #: profile-builder-2.0/admin/add-ons.php:162
3056
- msgid "Upgrade Profile Builder"
3057
- msgstr "Opgradér Profile Builder"
3058
-
3059
- #: profile-builder-2.0/admin/add-ons.php:163
3060
- msgid "Not compatible with Profile Builder"
3061
- msgstr "Ikke kompatibel med Profile Builder"
3062
-
3063
- #: profile-builder-2.0/admin/add-ons.php:171
3064
- msgid "Not compatible with your version of Profile Builder."
3065
- msgstr "Ikke kompatibel med din version af Profile Builder"
3066
-
3067
- #: profile-builder-2.0/admin/add-ons.php:172
3068
- msgid "Minimum required Profile Builder version:"
3069
- msgstr "Minimum krævet version af Profile Builder:"
3070
-
3071
- #: profile-builder-2.0/admin/add-ons.php:177
3072
- msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
3073
- msgstr "Kunne ikke installere tilføjelse (add-on). Prøv igen eller <a href=\"%s\" target=\"_blank\">install manually</a>."
3074
-
3075
- #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3076
- msgid "You must enter a valid email address."
3077
- msgstr "Du skal indtaste en gyldig e-mail adresse."
3078
-
3079
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3080
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3081
- msgid "This username is invalid because it uses illegal characters."
3082
- msgstr "Dette brugernavn er ugyldigt, idet det indeholde karaterer / tegn som ikke er tilladte."
3083
-
3084
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3085
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3086
- msgid "Please enter a valid username."
3087
- msgstr "Venligst indtast et gyldigt brugernavn."
3088
-
3089
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
3090
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
3091
- msgid "Only administrators can see this field on edit profile forms."
3092
- msgstr "Kun administratorer kan se dette felt på rediger profilformularer."
3093
-
3094
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
3095
- msgid "As an administrator you cannot change your role."
3096
- msgstr "Som administrator kan du ikke ændre din rolle."
3097
-
3098
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3099
- msgid ""
3100
- "\n"
3101
- "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3102
- "<p>His/her new password is: {{password}}</p>\n"
3103
- msgstr ""
3104
- "\n"
3105
- "<p>{{username}} har foretaget en ændring af adgangskoden via genskab adgangskode.</p>\n"
3106
- "\n"
3107
- "<p>Hans/hendes nye adgangskode er: {{password}}</p>\n"
3108
- "\n"
3109
-
3110
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3111
- msgid "Admin Notification for User Password Reset"
3112
- msgstr "Admin meddelelse for genskabning af bruger adgangskode"
3113
-
3114
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
3115
- msgid "Reset Key"
3116
- msgstr "Genskab nøgle"
3117
-
3118
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
3119
- msgid "Reset Url"
3120
- msgstr "Genskab URL"
3121
-
3122
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
3123
- msgid "Reset Link"
3124
- msgstr "Genskab link"
3125
-
3126
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3127
- msgid ""
3128
- "\n"
3129
- "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3130
- "Username: {{username}}</p>\n"
3131
- "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3132
- "<p>To reset your password, visit the following address:<br/>\n"
3133
- "{{{reset_link}}}</p>\n"
3134
- msgstr ""
3135
- "\n"
3136
- "<p>Nogen har foretaget en genskabning af adgangskoden for følgende konto: {{site_name}}<br/>\n"
3137
- "Brugernavn: {{username}}</p>\n"
3138
- "<p>Hvis dette var en fejl skal du blot se bort fra denne email og intet vil ske.</p>\n"
3139
- "<p>For at genskabe din adgangskode gå ind på følgende adresse:<br/>\n"
3140
- "{{{reset_link}}}</p>\n"
3141
-
3142
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3143
- msgid "[{{site_name}}] Password Reset"
3144
- msgstr "[{{site_name}}] Nulstil adgangskode "
3145
-
3146
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3147
- msgid "Password Reset Email"
3148
- msgstr "E-mail vedr. nulstilling af adgangskode"
3149
-
3150
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3151
- msgid ""
3152
- "\n"
3153
- "<p>You have successfully reset your password to: {{password}}</p>\n"
3154
- msgstr ""
3155
- "\n"
3156
- "<p>Du har med succes nulstillet din adgangskode til: {{password}}</p>\n"
3157
- "\n"
3158
-
3159
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3160
- msgid "[{{site_name}}] Password Reset Successfully"
3161
- msgstr "[{{site_name}}] Adgangskode nulstillet succesfuldt"
3162
-
3163
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3164
- msgid "Password Reset Success Email"
3165
- msgstr "E-mail vedr. adgangskode nulstillet succesfuldt"
3166
-
3167
- #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3168
- msgid "User Nicename"
3169
- msgstr "Bruger kaldenavn"
3170
-
3171
- #: pb-add-on-woocommerce/woosync-page.php:80
3172
- #: pb-add-on-woocommerce/woosync-page.php:114
3173
- #: profile-builder-2.0/modules/user-listing/userlisting.php:499
3174
- msgid "None"
3175
- msgstr "Ingen"
3176
-
3177
- #: profile-builder-2.0/admin/admin-functions.php:132
3178
- msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3179
- msgstr "<strong>FEJL</strong>: Adgangskoden skal bestå af mindst %s characters"
3180
-
3181
- #: profile-builder-2.0/admin/admin-functions.php:148
3182
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3183
- msgstr "<strong>FEJL</strong>: Adgangskodens styrke skal være mindst: %s"
3184
-
3185
- #: profile-builder-2.0/admin/general-settings.php:179
3186
- msgid "Username and Email"
3187
- msgstr "Brugernavn og e-mail"
3188
-
3189
- #: profile-builder-2.0/admin/general-settings.php:184
3190
- msgid "\"Username and Email\" - users can Log In with both Username and Email."
3191
- msgstr "\"Brugernavn og e-mail\" - brugere kan logge ind med såvel brugernavn som e-mail."
3192
-
3193
- #: profile-builder-2.0/admin/general-settings.php:185
3194
- msgid "\"Username\" - users can Log In only with Username."
3195
- msgstr "\"Brugernavn\" - brugere kan kun logge ind med brugernavn."
3196
-
3197
- #: profile-builder-2.0/admin/general-settings.php:186
3198
- msgid "\"Email\" - users can Log In only with Email."
3199
- msgstr "\"E-mail\" - brugere kan kun logge ind med e-mail."
3200
-
3201
- #: profile-builder-2.0/admin/manage-fields.php:124
3202
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3203
- msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default: .jpg,.jpeg,.gif,.png (.*)"
3204
-
3205
- #: profile-builder-2.0/admin/manage-fields.php:125
3206
- msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
3207
- msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default alle WordPress tilladte filformater (.*)"
3208
-
3209
- #: profile-builder-2.0/admin/manage-fields.php:135
3210
- msgid "User Roles"
3211
- msgstr "Brugerroller"
3212
-
3213
- #: profile-builder-2.0/admin/manage-fields.php:135
3214
- msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3215
- msgstr "Vælg hvilke brugerroller der skal vises for brugerne (\"træk\" og \"slip\" for at om-organiserer)"
3216
-
3217
- #: profile-builder-2.0/admin/manage-fields.php:136
3218
- msgid "User Roles Order"
3219
- msgstr "Brugerroller orden"
3220
-
3221
- #: profile-builder-2.0/admin/manage-fields.php:136
3222
- msgid "Save the user role order from the user roles checkboxes"
3223
- msgstr "Gem brugerrolle ordenen fra brugerrollernes tjekbokse"
3224
-
3225
- #: profile-builder-2.0/admin/manage-fields.php:1128
3226
- msgid "Please select at least one user role\n"
3227
- msgstr "Vælg venligst mindst en brugerrolle\n"
3228
-
3229
- #: profile-builder-2.0/admin/register-version.php:22
3230
- msgid "Profile Builder Register"
3231
- msgstr "Registrer Profile Builder"
3232
-
3233
- #: profile-builder-2.0/admin/register-version.php:81
3234
- msgid "The serial number is about to expire soon!"
3235
- msgstr "Serienummeret udløber snart!"
3236
-
3237
- #: profile-builder-2.0/admin/register-version.php:81
3238
- msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3239
- msgstr "Dit serienummer er ved at udløbe, venligst %1$s forny din licens%2$s."
3240
-
3241
- #: profile-builder-2.0/admin/register-version.php:83
3242
- msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3243
- msgstr " Dit serienummer er udløbet, venligst %1$s forny din licens%2$s."
3244
-
3245
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3246
- msgid "Add Entry"
3247
- msgstr "Tilføj post"
3248
-
3249
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3250
- msgid "show"
3251
- msgstr "vis"
3252
-
3253
- #: profile-builder-2.0/features/functions.php:736
3254
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3255
- msgstr "For at tillade brugere at registrere sig på din hjemmeside via Profile Builder, skal du først aktivere brugerregistrering. Gå til %1$sNetwork Settings%2$s, og under registreringsopsætningen sørg for at sætte markering ved “Brugerkonti må registreres.” %3$sDismiss%4$s"
3256
-
3257
- #: profile-builder-2.0/front-end/class-formbuilder.php:659
3258
- msgid "User to edit:"
3259
- msgstr "Bruger der skal redigeres:"
3260
-
3261
- #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3262
- #: profile-builder-2.0/front-end/recover.php:262
3263
- msgid "The password must have the minimum length of %s characters"
3264
- msgstr "Adgangskoden skal have en minimumslængde på %s karakterer"
3265
-
3266
- #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3267
- #: profile-builder-2.0/front-end/recover.php:266
3268
- msgid "The password must have a minimum strength of %s"
3269
- msgstr "Adgangskoden skal minimum have en styrke på %s"
3270
-
3271
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
3272
- msgid "You cannot register this user role"
3273
- msgstr "Du kan ikke registrere denne brugerrolle"
3274
-
3275
- #: profile-builder-2.0/front-end/login.php:153
3276
- msgid "username or email"
3277
- msgstr "brugernavn eller e-mail"
3278
-
3279
- #: profile-builder-2.0/front-end/login.php:222
3280
- msgid "Username or Email"
3281
- msgstr "Brugernavn eller e-mail"
3282
-
3283
- #: profile-builder-2.0/front-end/logout.php:15
3284
- msgid "You are currently logged in as %s. "
3285
- msgstr "Du er i øjeblikket logget ind som %s."
3286
-
3287
- #: profile-builder-2.0/front-end/logout.php:15
3288
- msgid "Log out &raquo;"
3289
- msgstr "Log ud &raquo;"
3290
-
3291
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3292
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3293
- msgid "User Role"
3294
- msgstr "Brugerrolle"
3295
-
3296
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
3297
- msgid "View all extra shortcode parameters"
3298
- msgstr "Se alle ekstra \"shortcode\" parametre"
3299
-
3300
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3301
- msgid "displays only the users that you specified the user_id for"
3302
- msgstr "vis kun de brugere som du specificerede 'user_id' for"
3303
-
3304
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3305
- msgid "displays all users except the ones you specified the user_id for"
3306
- msgstr "vis alle brugere undtagen dem som du specificerede 'user_id' for"
3307
-
3308
- #: profile-builder-2.0/features/functions.php:566
3309
- msgid "Minimum length of %d characters"
3310
- msgstr "Minimum længde på %d karakterer"
3311
-
3312
- #: profile-builder-2.0/front-end/class-formbuilder.php:146
3313
- #: profile-builder-2.0/front-end/class-formbuilder.php:149
3314
- msgid "This message is only visible by administrators"
3315
- msgstr "Denne meddelelse er kun synlig for administratorer"
3316
-
3317
- #: profile-builder-2.0/modules/user-listing/userlisting.php:413
3318
- msgid "User not found"
3319
- msgstr "Bruger ikke fundet"
3320
-
3321
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3322
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3323
- msgid "Valid tags {{reply_to}} and {{site_name}}"
3324
- msgstr "Gyldige tags {{reply_to}} og{{site_name}}"
3325
-
3326
- #: profile-builder-2.0/admin/admin-bar.php:48
3327
- msgid "Choose which user roles view the admin bar in the front-end of the website."
3328
- msgstr "Vælg hvilke brugerroller der skal se kontrolpanelet på sitets 'front-end'."
3329
-
3330
- #: profile-builder-2.0/admin/manage-fields.php:129
3331
- msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3332
- msgstr "Indsæt en komma separeret liste med værdier<br/>Det kan være hvad som helst, idet værdierne er skjulte for brugeren. Men listen må ikke indeholde specielle karakterer eller apostroffer."
3333
-
3334
- #: profile-builder-2.0/admin/manage-fields.php:1055
3335
- msgid "The meta-name cannot be empty\n"
3336
- msgstr "'Meta-name' kan ikke være tom\n"
3337
-
3338
- #: profile-builder-2.0/admin/register-version.php:69
3339
- msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3340
- msgstr "Nu du har erhvervet en kopi af %s bør du tage dig tid til at registrere det med serienummeret som du modtog."
3341
-
3342
- #: profile-builder-2.0/admin/register-version.php:243
3343
- msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3344
- msgstr "<p>Din<strong>Profile Builder</strong> serienummer er ugyldigt eller mangler. <br/>Venligst %1$sregistrer din kopi%2$s for at få adgang til automatiske opdateringer og support.Har du brug for en licensnøgle? %3$sPurchase one now%4$s</p>"
3345
-
3346
- #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3347
- #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3348
- #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3349
- #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3350
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
3351
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
3352
- msgid "...Choose"
3353
- msgstr "...Vælg"
3354
-
3355
- #: profile-builder-2.0/features/class-list-table.php:526
3356
- #: profile-builder-2.0/features/class-list-table.php:942
3357
- msgid "1 item"
3358
- msgstr "1 emne"
3359
-
3360
- #: profile-builder-2.0/features/functions.php:552
3361
- msgid "Very Weak"
3362
- msgstr "Meget svag"
3363
-
3364
- #: profile-builder-2.0/features/functions.php:640
3365
- msgid "This field is required"
3366
- msgstr "Dette felt er obligatorisk"
3367
-
3368
- #: profile-builder-2.0/features/functions.php:704
3369
- msgid "Cancel"
3370
- msgstr "Annuller"
3371
-
3372
- #: profile-builder-2.0/features/functions.php:740
3373
- msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3374
- msgstr "For at tillade bruger at registrere sig på dit site via Profile Builder, skal du først aktiverer brugerregistrering. Gå til %1$sIndstillinger -> Generel%2$s fane, og under Medlemskab sørge for at markere “Alle kan registrere sig\". %3$sAfvis%4$s"
3375
-
3376
- #: profile-builder-2.0/front-end/login.php:144
3377
- msgid "Invalid username."
3378
- msgstr "Ugyldigt brugernavn"
3379
-
3380
- #: profile-builder-2.0/front-end/login.php:149
3381
- #: profile-builder-2.0/front-end/login.php:153
3382
- msgid "username"
3383
- msgstr "brugernavn"
3384
-
3385
- #: profile-builder-2.0/front-end/login.php:149
3386
- msgid "email"
3387
- msgstr "e-mail"
3388
-
3389
- #: profile-builder-2.0/front-end/login.php:256
3390
- msgid "Lost your password?"
3391
- msgstr "Mistet din adgangskode?"
3392
-
3393
- #: profile-builder-2.0/index.php:34
3394
- msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3395
- msgstr "er også aktiveret. Du skal deaktivere det før aktivering af plugin'et."
3396
-
3397
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3398
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3399
- msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3400
- msgstr "Skal være en gyldig e-mail adresse eller {{reply_to}} som default for administrator e-mailen"
3401
-
3402
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3403
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3404
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
3405
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
3406
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
3407
- msgid "Your selected password at signup"
3408
- msgstr "Din valgte adgangskode ved oprettelse"
3409
-
3410
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3411
- msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3412
- msgstr "Disse indstillinger gemmes ligeledes på indstillingssiden på 'Admin Email Customizer', når de gemmes."
3413
-
3414
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3415
- msgid "This form is empty."
3416
- msgstr "Denne formular er tom."
3417
-
3418
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3419
- msgid "Delete all items"
3420
- msgstr "Slet alle emner"
3421
-
3422
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3423
- msgid "Delete all"
3424
- msgstr "Slet alt"
3425
-
3426
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1621
3427
- msgid "Choose..."
3428
- msgstr "Vælg..."
3429
-
3430
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3431
- msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3432
- msgstr "Angiv antallet af brugere som vises på hver side af den samlede brugeroversigt"
3433
-
3434
- #: profile-builder-2.0/admin/admin-bar.php:10
3435
- msgid "Show/Hide the Admin Bar on the Front-End"
3436
- msgstr "Vis/Skjul 'Admin menu' på 'Front-end'"
3437
-
3438
- #: profile-builder-2.0/admin/admin-bar.php:10
3439
- #: profile-builder-2.0/admin/admin-bar.php:47
3440
- msgid "Admin Bar Settings"
3441
- msgstr "Admin menu indstillinger "
3442
-
3443
- #: profile-builder-2.0/admin/admin-bar.php:57
3444
- msgid "User-Role"
3445
- msgstr "Brugerrolle"
3446
-
3447
- #: profile-builder-2.0/admin/admin-bar.php:58
3448
- msgid "Visibility"
3449
- msgstr "Synlighed"
3450
-
3451
- #: profile-builder-2.0/admin/admin-bar.php:73
3452
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3453
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3454
- msgid "Default"
3455
- msgstr "Default"
3456
-
3457
- #: profile-builder-2.0/admin/admin-bar.php:74
3458
- msgid "Show"
3459
- msgstr "Vis"
3460
-
3461
- #: profile-builder-2.0/admin/admin-bar.php:75
3462
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1554
3463
- msgid "Hide"
3464
- msgstr "Skjul"
3465
-
3466
- #: pb-add-on-woocommerce/woosync-page.php:147
3467
- #: profile-builder-2.0/admin/admin-bar.php:86
3468
- #: profile-builder-2.0/admin/general-settings.php:224
3469
- #: profile-builder-2.0/admin/register-version.php:95
3470
- #: profile-builder-2.0/features/functions.php:697
3471
- #: profile-builder-2.0/modules/modules.php:127
3472
- msgid "Save Changes"
3473
- msgstr "Gem ændringer"
3474
-
3475
- #: profile-builder-2.0/admin/admin-functions.php:37
3476
- msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
3477
- msgstr "Login er indstillet til at blive foretaget ved hjælp af e-mail. Dette felt vil IKKE fremgå af 'front-end'! (du kan ændre disse indstillinger på \"%s\" fanen)"
3478
-
3479
- #: profile-builder-2.0/admin/admin-functions.php:37
3480
- #: profile-builder-2.0/admin/general-settings.php:10
3481
- #: profile-builder-2.0/admin/general-settings.php:35
3482
- msgid "General Settings"
3483
- msgstr "Generelle indstillinger"
3484
-
3485
- #: profile-builder-2.0/admin/admin-functions.php:137
3486
- #: profile-builder-2.0/admin/general-settings.php:210
3487
- msgid "Very weak"
3488
- msgstr "Meget svag"
3489
-
3490
- #: profile-builder-2.0/admin/admin-functions.php:137
3491
- #: profile-builder-2.0/admin/general-settings.php:211
3492
- #: profile-builder-2.0/features/functions.php:552
3493
- msgid "Weak"
3494
- msgstr "Svag"
3495
-
3496
- #: profile-builder-2.0/admin/admin-functions.php:137
3497
- #: profile-builder-2.0/admin/general-settings.php:212
3498
- #: profile-builder-2.0/features/functions.php:552
3499
- msgid "Medium"
3500
- msgstr "Middel"
3501
-
3502
- #: profile-builder-2.0/admin/admin-functions.php:137
3503
- #: profile-builder-2.0/admin/general-settings.php:213
3504
- #: profile-builder-2.0/features/functions.php:552
3505
- msgid "Strong"
3506
- msgstr "Stærk"
3507
-
3508
- #: profile-builder-2.0/admin/admin-functions.php:187
3509
- msgid "Add Field"
3510
- msgstr "Tilføj felt"
3511
-
3512
- #: profile-builder-2.0/admin/admin-functions.php:189
3513
- #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3514
- msgid "Save Settings"
3515
- msgstr "Gem indstillinger"
3516
-
3517
- #: profile-builder-2.0/admin/basic-info.php:10
3518
- msgid "Basic Information"
3519
- msgstr "Basis information"
3520
-
3521
- #: profile-builder-2.0/admin/basic-info.php:29
3522
- msgid "Version %s"
3523
- msgstr "Version %s"
3524
-
3525
- #: profile-builder-2.0/admin/basic-info.php:30
3526
- msgid "<strong>Profile Builder </strong>"
3527
- msgstr "<strong>Profile Builder </strong>"
3528
-
3529
- #: profile-builder-2.0/admin/basic-info.php:31
3530
- msgid "The best way to add front-end registration, edit profile and login forms."
3531
- msgstr "Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på."
3532
-
3533
- #: profile-builder-2.0/admin/basic-info.php:33
3534
- msgid "For Modern User Interaction"
3535
- msgstr "Til 'Modern User Interaction'"
3536
-
3537
- #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3538
- #: profile-builder-2.0/admin/basic-info.php:36
3539
- #: profile-builder-2.0/features/login-widget/login-widget.php:59
3540
- msgid "Login"
3541
- msgstr "Log ind"
3542
-
3543
- #: profile-builder-2.0/admin/basic-info.php:40
3544
- msgid "Registration"
3545
- msgstr "Registrering"
3546
-
3547
- #: profile-builder-2.0/admin/basic-info.php:44
3548
- msgid "Edit Profile"
3549
- msgstr "Rediger profil"
3550
-
3551
- #: profile-builder-2.0/admin/basic-info.php:51
3552
- msgid "Extra Features"
3553
- msgstr "Ekstra funktioner"
3554
-
3555
- #: profile-builder-2.0/admin/basic-info.php:52
3556
- msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3557
- msgstr "Funktioner som giver dig mere kontrol over dine brugere, forbedret sikkerhed og hjælper dig med at bekæmpe spam ved brugerregistrering."
3558
-
3559
- #: profile-builder-2.0/admin/basic-info.php:53
3560
- msgid "Enable extra features"
3561
- msgstr "Aktiver ekstra funktioner"
3562
-
3563
- #: profile-builder-2.0/admin/basic-info.php:57
3564
- msgid "Recover Password"
3565
- msgstr "Genskab adgangskode"
3566
-
3567
- #: profile-builder-2.0/admin/basic-info.php:61
3568
- msgid "Admin Approval (*)"
3569
- msgstr "Admin godkendelse (*)"
3570
-
3571
- #: profile-builder-2.0/admin/basic-info.php:62
3572
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3573
- msgstr "Du bestemmer hvem der er bruger på dit site. Få besked via e-mail eller godkende flere brugere ad gangen fra WordPress UI."
3574
-
3575
- #: profile-builder-2.0/admin/basic-info.php:65
3576
- msgid "Email Confirmation"
3577
- msgstr "E-mail bekræftelse"
3578
-
3579
- #: profile-builder-2.0/admin/basic-info.php:66
3580
- msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3581
- msgstr "Sørg for at brugere registrerer med en ægte e-mail adresse. Ved registrering vil brugerne modtage en e-mail, hvori de skal bekræfte deres e-mail adresse."
3582
-
3583
- #: profile-builder-2.0/admin/basic-info.php:69
3584
- msgid "Minimum Password Length and Strength Meter"
3585
- msgstr "Minimum længde og styrke på adgangskode"
3586
-
3587
- #: profile-builder-2.0/admin/basic-info.php:70
3588
- msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3589
- msgstr "Undgå svage adgangskoder ved at sætte et krav om min. længde samt sætte et krav om en vis styrke på adgangskoden."
3590
-
3591
- #: profile-builder-2.0/admin/basic-info.php:73
3592
- msgid "Login with Email or Username"
3593
- msgstr "Log ind med e-mail eller brugernavn"
3594
-
3595
- #: profile-builder-2.0/admin/basic-info.php:74
3596
- msgid "Allow users to log in with their email or username when accessing your site."
3597
- msgstr "Tillad brugere at logge ind med deres e-mail eller brugernavn når de logger ind på dit site."
3598
-
3599
- #: profile-builder-2.0/admin/basic-info.php:87
3600
- msgid "Customize Your Forms The Way You Want (*)"
3601
- msgstr "Tilpas dine formularer som du ønsker det (*)"
3602
-
3603
- #: profile-builder-2.0/admin/basic-info.php:88
3604
- msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3605
- msgstr "Med ekstra profil felter kan du lave nøjagtigt den registreringsformular, som dit projekt har brug for. "
3606
-
3607
- #: profile-builder-2.0/admin/basic-info.php:90
3608
- msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3609
- msgstr "Ekstra profilfelter er tilgængelig i Hobbyist og PRO versionerne"
3610
-
3611
- #: profile-builder-2.0/admin/basic-info.php:92
3612
- msgid "Get started with extra fields"
3613
- msgstr "Kom i gang med ekstra felter"
3614
-
3615
- #: profile-builder-2.0/admin/basic-info.php:95
3616
- msgid "Avatar Upload"
3617
- msgstr "Avatar upload"
3618
-
3619
- #: profile-builder-2.0/admin/basic-info.php:96
3620
- msgid "Generic Uploads"
3621
- msgstr "Generisk upload"
3622
-
3623
- #: profile-builder-2.0/admin/basic-info.php:97
3624
- msgid "Agree To Terms Checkbox"
3625
- msgstr "Accept af betingelser tjekboks"
3626
-
3627
- #: profile-builder-2.0/admin/basic-info.php:98
3628
- msgid "Datepicker"
3629
- msgstr "Datovælger"
3630
-
3631
- #: profile-builder-2.0/admin/basic-info.php:101
3632
- msgid "reCAPTCHA"
3633
- msgstr "reCAPTCHA"
3634
-
3635
- #: profile-builder-2.0/admin/basic-info.php:102
3636
- msgid "Country Select"
3637
- msgstr "Landevalg"
3638
-
3639
- #: profile-builder-2.0/admin/basic-info.php:104
3640
- msgid "Timezone Select"
3641
- msgstr "Tidszone valg"
3642
-
3643
- #: profile-builder-2.0/admin/basic-info.php:108
3644
- msgid "Input / Hidden Input"
3645
- msgstr "Input / Skjult input"
3646
-
3647
- #: profile-builder-2.0/admin/basic-info.php:110
3648
- msgid "Checkbox"
3649
- msgstr "Tjekboks"
3650
-
3651
- #: profile-builder-2.0/admin/basic-info.php:111
3652
- msgid "Select"
3653
- msgstr "Vælg"
3654
-
3655
- #: profile-builder-2.0/admin/basic-info.php:112
3656
- msgid "Radio Buttons"
3657
- msgstr "'Radio' knapper"
3658
-
3659
- #: profile-builder-2.0/admin/basic-info.php:113
3660
- msgid "Textarea"
3661
- msgstr "Tekstområde"
3662
-
3663
- #: profile-builder-2.0/admin/basic-info.php:125
3664
- msgid "Powerful Modules (**)"
3665
- msgstr "Stærke moduler (**)"
3666
-
3667
- #: profile-builder-2.0/admin/basic-info.php:126
3668
- msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3669
- msgstr "Alt hvad du behøver for at håndtere dine brugere er formentlig allerede tilgængeligt ved at bruge Pro Moduler."
3670
-
3671
- #: profile-builder-2.0/admin/basic-info.php:128
3672
- msgid "Enable your modules"
3673
- msgstr "Aktiver dine moduler"
3674
-
3675
- #: profile-builder-2.0/admin/basic-info.php:131
3676
- msgid "Find out more about PRO Modules"
3677
- msgstr "Fin ud af mere om PRO Moduler"
3678
-
3679
- #: profile-builder-2.0/admin/basic-info.php:136
3680
- #: profile-builder-2.0/modules/modules.php:89
3681
- #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3682
- #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3683
- #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3684
- #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3685
- msgid "User Listing"
3686
- msgstr "Brugeroversigt"
3687
-
3688
- #: profile-builder-2.0/admin/basic-info.php:138
3689
- msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3690
- msgstr "Brugervenlige skabeloner gør det muligt at liste dit websites bruger ligesom du kan skabe enkelt bruger sider. Og så er det 'Shortcode' baseret, som gør det muligt for dig at tilpasse dine lister/oversigter. "
3691
-
3692
- #: profile-builder-2.0/admin/basic-info.php:144
3693
- msgid "Email Customizer"
3694
- msgstr "E-mail opsætning"
3695
-
3696
- #: profile-builder-2.0/admin/basic-info.php:145
3697
- msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3698
- msgstr "Personaliser alle e-mails sendt til dine brugere eller administratorer. Ved registrering, e-mail bekræftelse, administrator godkendelse / afvisning."
3699
-
3700
- #: profile-builder-2.0/admin/basic-info.php:148
3701
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3702
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3703
- #: profile-builder-2.0/modules/modules.php:110
3704
- msgid "Custom Redirects"
3705
- msgstr "Brugertilpassede omdirigeringer ('redirects')"
3706
-
3707
- #: profile-builder-2.0/admin/basic-info.php:149
3708
- msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3709
- msgstr "Hold dine brugere ud af Wordpress' kontrolpanel ('dashboard'), omdiriger dem til forsiden efter login eller registrering. Alt dette er kun nogle få klik væk."
3710
-
3711
- #: profile-builder-2.0/admin/basic-info.php:154
3712
- #: profile-builder-2.0/modules/modules.php:75
3713
- msgid "Multiple Registration Forms"
3714
- msgstr "Forskellige registreringsformularer"
3715
-
3716
- #: profile-builder-2.0/admin/basic-info.php:155
3717
- msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3718
- msgstr "Opsæt forskellige registreringsformularer med forskellige felter tilpasset bestemte brugeroller. Indsaml forskelligt information fra forskellige brugertyper."
3719
-
3720
- #: profile-builder-2.0/admin/basic-info.php:158
3721
- #: profile-builder-2.0/modules/modules.php:82
3722
- msgid "Multiple Edit-profile Forms"
3723
- msgstr "Forskellige profil redigerings formularer"
3724
-
3725
- #: profile-builder-2.0/admin/basic-info.php:159
3726
- msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3727
- msgstr "Tillad forskellige brugerroller at redigere deres specifikke information. Opsæt forskellige profil redigerings formularer med forskellige felter tilpasset bestemte brugerroller."
3728
-
3729
- #: profile-builder-2.0/admin/basic-info.php:187
3730
- msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3731
- msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s."
3732
-
3733
- #: profile-builder-2.0/admin/basic-info.php:188
3734
- msgid "** only available in the %1$sPro version%2$s."
3735
- msgstr "** kun tilgængelig i %1$sPro version%2$s."
3736
-
3737
- #: profile-builder-2.0/admin/general-settings.php:39
3738
- msgid "Load Profile Builder's own CSS file in the front-end:"
3739
- msgstr "Brug Profile Builders egen CSS fil i 'front-end':"
3740
-
3741
- #: profile-builder-2.0/admin/general-settings.php:42
3742
- #: profile-builder-2.0/admin/general-settings.php:55
3743
- #: profile-builder-2.0/admin/general-settings.php:104
3744
- #: profile-builder-2.0/admin/general-settings.php:151
3745
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3746
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3747
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3748
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
3749
- msgid "Yes"
3750
- msgstr "Ja"
3751
-
3752
- #: profile-builder-2.0/admin/general-settings.php:44
3753
- msgid "You can find the default file here: %1$s"
3754
- msgstr "Du kan finde default filen her: %1$s"
3755
-
3756
- #: profile-builder-2.0/admin/general-settings.php:51
3757
- msgid "\"Email Confirmation\" Activated:"
3758
- msgstr "\"E-mail bekræftelse\" aktiveret:"
3759
-
3760
- #: profile-builder-2.0/admin/general-settings.php:56
3761
- #: profile-builder-2.0/admin/general-settings.php:105
3762
- #: profile-builder-2.0/admin/general-settings.php:150
3763
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3764
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3765
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3766
- msgid "No"
3767
- msgstr "Nej"
3768
-
3769
- #: profile-builder-2.0/admin/general-settings.php:61
3770
- msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3771
- msgstr "Du kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s."
3772
-
3773
- #: profile-builder-2.0/admin/general-settings.php:69
3774
- msgid "\"Email Confirmation\" Landing Page:"
3775
- msgstr "\"E-mail bekræftelse\" landings side:"
3776
-
3777
- #: profile-builder-2.0/admin/general-settings.php:74
3778
- msgid "Existing Pages"
3779
- msgstr "Eksisterende sider"
3780
-
3781
- #: profile-builder-2.0/admin/general-settings.php:89
3782
- msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3783
- msgstr "Angiv siden hvortil brugere bliver omdirigeret til når de bekræfter e-mail kontoen. Denne side kan være forskellig fra registrerings siden (siderne) og kan altid ændres. Hvis ingen er valgt vises der en simpel bekræftelsesside for brugeren."
3784
-
3785
- #: profile-builder-2.0/admin/general-settings.php:100
3786
- msgid "\"Admin Approval\" Activated:"
3787
- msgstr "\"Administrator godkendelse\" aktiveret:"
3788
-
3789
- #: profile-builder-2.0/admin/general-settings.php:108
3790
- msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3791
- msgstr "Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s."
3792
-
3793
- #: profile-builder-2.0/admin/general-settings.php:165
3794
- msgid "\"Admin Approval\" Feature:"
3795
- msgstr "\"Administrator godkendelse\" funktion:"
3796
-
3797
- #: profile-builder-2.0/admin/general-settings.php:168
3798
- msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3799
- msgstr "Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-mail eller godkend flere brugere samlet ('bulk') via WordPress UI. Aktiver 'Administrator godkendelse' ved at opgradere til %1$sHobbyist or PRO versions%2$s."
3800
-
3801
- #: profile-builder-2.0/admin/general-settings.php:175
3802
- msgid "Allow Users to Log in With:"
3803
- msgstr "Tillad brugere at logge ind med:"
3804
-
3805
- #: profile-builder-2.0/admin/general-settings.php:180
3806
- #: profile-builder-2.0/admin/manage-fields.php:201
3807
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3808
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3809
- #: profile-builder-2.0/front-end/login.php:85
3810
- #: profile-builder-2.0/front-end/login.php:99
3811
- #: profile-builder-2.0/front-end/login.php:218
3812
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3813
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3814
- #: profile-builder-2.0/modules/user-listing/userlisting.php:102
3815
- #: profile-builder-2.0/modules/user-listing/userlisting.php:277
3816
- #: profile-builder-2.0/modules/user-listing/userlisting.php:730
3817
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2219
3818
- msgid "Username"
3819
- msgstr "Brugernavn"
3820
-
3821
- #: profile-builder-2.0/admin/general-settings.php:181
3822
- #: profile-builder-2.0/front-end/login.php:215
3823
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3824
- #: profile-builder-2.0/modules/user-listing/userlisting.php:736
3825
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2220
3826
- msgid "Email"
3827
- msgstr "E-mail"
3828
-
3829
- #: profile-builder-2.0/admin/general-settings.php:193
3830
- msgid "Minimum Password Length:"
3831
- msgstr "Min. længde på adgangskode:"
3832
-
3833
- #: profile-builder-2.0/admin/general-settings.php:198
3834
- msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3835
- msgstr "Angiv minimum antallet af karakterer som adgangskoden skal bestå af. Lad feltet være tomt for ikke at have minimumsbegrænsning."
3836
-
3837
- #: profile-builder-2.0/admin/general-settings.php:205
3838
- msgid "Minimum Password Strength:"
3839
- msgstr "Minimum styrke på adgangskode:"
3840
-
3841
- #: profile-builder-2.0/admin/general-settings.php:209
3842
- msgid "Disabled"
3843
- msgstr "Deaktiver"
3844
-
3845
- #: profile-builder-2.0/admin/manage-fields.php:12
3846
- msgid "Manage Fields"
3847
- msgstr "Håndter felter"
3848
-
3849
- #: profile-builder-2.0/admin/manage-fields.php:13
3850
- msgid "Manage Default and Extra Fields"
3851
- msgstr "Håndter standard ('default') og ekstra felter"
3852
-
3853
- #: profile-builder-2.0/admin/manage-fields.php:118
3854
- msgid "Field Title"
3855
- msgstr "Felt titel"
3856
-
3857
- #: profile-builder-2.0/admin/manage-fields.php:118
3858
- msgid "Title of the field"
3859
- msgstr "Feltets titel"
3860
-
3861
- #: profile-builder-2.0/admin/manage-fields.php:119
3862
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3863
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3864
- msgid "Field"
3865
- msgstr "Felt"
3866
-
3867
- #: profile-builder-2.0/admin/manage-fields.php:120
3868
- msgid "Meta-name"
3869
- msgstr "Meta-navn"
3870
-
3871
- #: profile-builder-2.0/admin/manage-fields.php:121
3872
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3873
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3874
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3875
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3876
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3877
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3878
- msgid "ID"
3879
- msgstr "ID"
3880
-
3881
- #: profile-builder-2.0/admin/manage-fields.php:121
3882
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3883
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3884
- msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
3885
- msgstr "En unik autogenereret ID for dette bestemte felt<br/>Du kan bruge dette sammen med filtre for at målrette dette element, hvis nødvendigt.<br/>Kan ikke redigeres "
3886
-
3887
- #: profile-builder-2.0/admin/manage-fields.php:122
3888
- msgid "Description"
3889
- msgstr "Beskrivelse"
3890
-
3891
- #: profile-builder-2.0/admin/manage-fields.php:122
3892
- msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3893
- msgstr "Angiv en (detaljeret) beskrivelse til slutbrugerne af muligheden<br/>Valgfri"
3894
-
3895
- #: profile-builder-2.0/admin/manage-fields.php:123
3896
- msgid "Row Count"
3897
- msgstr "Række antal"
3898
-
3899
- #: profile-builder-2.0/admin/manage-fields.php:123
3900
- msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3901
- msgstr "Angiv antallet af rækker i feltet 'Textarea'<br/>Hvis ikke angivet er default 5 rækker"
3902
-
3903
- #: profile-builder-2.0/admin/manage-fields.php:124
3904
- msgid "Allowed Image Extensions"
3905
- msgstr "Tilladte billedformater ('extensions')"
3906
-
3907
- #: profile-builder-2.0/admin/manage-fields.php:125
3908
- msgid "Allowed Upload Extensions"
3909
- msgstr "Tilladte upload formater ('extensions')"
3910
-
3911
- #: profile-builder-2.0/admin/manage-fields.php:126
3912
- msgid "Avatar Size"
3913
- msgstr "Avatar størrelse"
3914
-
3915
- #: profile-builder-2.0/admin/manage-fields.php:126
3916
- msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3917
- msgstr "Angiv en værdi (mellem 20 og 200) for størrelsen af 'Avatar'<br/>Hvis ikke angivet er default sat til 100"
3918
-
3919
- #: profile-builder-2.0/admin/manage-fields.php:127
3920
- msgid "Date-format"
3921
- msgstr "Datoformat"
3922
-
3923
- #: profile-builder-2.0/admin/manage-fields.php:128
3924
- msgid "Terms of Agreement"
3925
- msgstr "Aftalebetingelser"
3926
-
3927
- #: profile-builder-2.0/admin/manage-fields.php:128
3928
- msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3929
- msgstr "Angiv en detaljeret beskrivelse til brugerne af aftalebetingelserne.<br/>Link kan indsætte ved at anvende standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3930
-
3931
- #: profile-builder-2.0/admin/manage-fields.php:129
3932
- msgid "Options"
3933
- msgstr "Valgmuligheder"
3934
-
3935
- #: profile-builder-2.0/admin/manage-fields.php:130
3936
- msgid "Labels"
3937
- msgstr "Labels"
3938
-
3939
- #: profile-builder-2.0/admin/manage-fields.php:130
3940
- msgid "Enter a comma separated list of labels<br/>Visible for the user"
3941
- msgstr "Angiv et komme separeret liste med labels<br/>Synlig for brugeren"
3942
-
3943
- #: profile-builder-2.0/admin/manage-fields.php:137
3944
- msgid "Default Value"
3945
- msgstr "Standard værdi"
3946
-
3947
- #: profile-builder-2.0/admin/manage-fields.php:137
3948
- msgid "Default value of the field"
3949
- msgstr "Feltets standardværdi"
3950
-
3951
- #: profile-builder-2.0/admin/manage-fields.php:138
3952
- #: profile-builder-2.0/admin/manage-fields.php:140
3953
- #: profile-builder-2.0/admin/manage-fields.php:141
3954
- #: profile-builder-2.0/admin/manage-fields.php:142
3955
- msgid "Default Option"
3956
- msgstr "Standard indstillingsvalg"
3957
-
3958
- #: profile-builder-2.0/admin/manage-fields.php:138
3959
- msgid "Specify the option which should be selected by default"
3960
- msgstr "Angiv indstillingen som skal vælges som standard"
3961
-
3962
- #: profile-builder-2.0/admin/manage-fields.php:139
3963
- msgid "Default Option(s)"
3964
- msgstr "Standard indstillingsvalg (flere)"
3965
-
3966
- #: profile-builder-2.0/admin/manage-fields.php:139
3967
- msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3968
- msgstr "Angiv indstillingen som skal vælges som standard<br/>Hvis der er flere valgmuligheder, separer dem med ',' (et komma)"
3969
-
3970
- #: profile-builder-2.0/admin/manage-fields.php:153
3971
- msgid "Default Content"
3972
- msgstr "Standard indhold"
3973
-
3974
- #: profile-builder-2.0/admin/manage-fields.php:153
3975
- msgid "Default value of the textarea"
3976
- msgstr "Standard værdi for tekstområdet ('textarea')"
3977
-
3978
- #: pb-add-on-woocommerce/index.php:306
3979
- #: profile-builder-2.0/admin/manage-fields.php:160
3980
- msgid "Required"
3981
- msgstr "Krævet"
3982
-
3983
- #: profile-builder-2.0/admin/manage-fields.php:160
3984
- msgid "Whether the field is required or not"
3985
- msgstr "Om feltet er krævet eller ikke"
3986
-
3987
- #: profile-builder-2.0/admin/manage-fields.php:161
3988
- msgid "Overwrite Existing"
3989
- msgstr "Overskriv eksisterende"
3990
-
3991
- #: profile-builder-2.0/admin/manage-fields.php:161
3992
- msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
3993
- msgstr "Ved at vælge 'Ja' tilføjes feltet til listen, men vil overskrive ethvert andet felt i databasen som har det samme meta-navn<br/>Brug dette på eget ansvar"
3994
-
3995
- #: profile-builder-2.0/admin/manage-fields.php:167
3996
- msgid "Field Properties"
3997
- msgstr "Felt indstillinger"
3998
-
3999
- #: profile-builder-2.0/admin/manage-fields.php:181
4000
- msgid "Registration & Edit Profile"
4001
- msgstr "Registrering & ændre profil"
4002
-
4003
- #: profile-builder-2.0/admin/manage-fields.php:200
4004
- msgid "Name"
4005
- msgstr "Navn"
4006
-
4007
- #: profile-builder-2.0/admin/manage-fields.php:201
4008
- msgid "Usernames cannot be changed."
4009
- msgstr "Brugernavn kan ikke ændres"
4010
-
4011
- #: pb-add-on-woocommerce/billing-fields.php:6
4012
- #: pb-add-on-woocommerce/shipping-fields.php:6
4013
- #: profile-builder-2.0/admin/manage-fields.php:202
4014
- msgid "First Name"
4015
- msgstr "Fornavn"
4016
-
4017
- #: pb-add-on-woocommerce/billing-fields.php:7
4018
- #: pb-add-on-woocommerce/shipping-fields.php:7
4019
- #: profile-builder-2.0/admin/manage-fields.php:203
4020
- msgid "Last Name"
4021
- msgstr "Efternavn"
4022
-
4023
- #: profile-builder-2.0/admin/manage-fields.php:204
4024
- #: profile-builder-2.0/modules/user-listing/userlisting.php:769
4025
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2227
4026
- msgid "Nickname"
4027
- msgstr "Kælenavn"
4028
-
4029
- #: profile-builder-2.0/admin/manage-fields.php:205
4030
- msgid "Display name publicly as"
4031
- msgstr "Vis navn offentligt som"
4032
-
4033
- #: profile-builder-2.0/admin/manage-fields.php:206
4034
- msgid "Contact Info"
4035
- msgstr "Kontakt info"
4036
-
4037
- #: profile-builder-2.0/admin/manage-fields.php:207
4038
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
4039
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
4040
- #: profile-builder-2.0/front-end/recover.php:118
4041
- #: profile-builder-2.0/modules/user-listing/userlisting.php:108
4042
- msgid "E-mail"
4043
- msgstr "E-mail"
4044
-
4045
- #: profile-builder-2.0/admin/manage-fields.php:208
4046
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
4047
- #: profile-builder-2.0/modules/user-listing/userlisting.php:111
4048
- #: profile-builder-2.0/modules/user-listing/userlisting.php:751
4049
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2221
4050
- msgid "Website"
4051
- msgstr "Website"
4052
-
4053
- #: profile-builder-2.0/admin/manage-fields.php:212
4054
- msgid "AIM"
4055
- msgstr "AIM"
4056
-
4057
- #: profile-builder-2.0/admin/manage-fields.php:213
4058
- msgid "Yahoo IM"
4059
- msgstr "Yahoo IM"
4060
-
4061
- #: profile-builder-2.0/admin/manage-fields.php:214
4062
- msgid "Jabber / Google Talk"
4063
- msgstr "Jabber / Google Talk"
4064
-
4065
- #: profile-builder-2.0/admin/manage-fields.php:217
4066
- msgid "About Yourself"
4067
- msgstr "Om dig selv"
4068
-
4069
- #: profile-builder-2.0/admin/manage-fields.php:218
4070
- #: profile-builder-2.0/modules/user-listing/userlisting.php:114
4071
- #: profile-builder-2.0/modules/user-listing/userlisting.php:754
4072
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2222
4073
- msgid "Biographical Info"
4074
- msgstr "Biografi info"
4075
-
4076
- #: profile-builder-2.0/admin/manage-fields.php:218
4077
- msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4078
- msgstr "Del en lille biografisk information for at fylde din profil ud. Dette kan blive vist offentligt."
4079
-
4080
- #: profile-builder-2.0/admin/manage-fields.php:219
4081
- #: profile-builder-2.0/front-end/recover.php:73
4082
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4083
- msgid "Password"
4084
- msgstr "Kodeord"
4085
-
4086
- #: profile-builder-2.0/admin/manage-fields.php:219
4087
- msgid "Type your password."
4088
- msgstr "Skriv din kodeord."
4089
-
4090
- #: profile-builder-2.0/admin/manage-fields.php:220
4091
- #: profile-builder-2.0/front-end/recover.php:74
4092
- msgid "Repeat Password"
4093
- msgstr "Gentag dit kodeord"
4094
-
4095
- #: profile-builder-2.0/admin/manage-fields.php:220
4096
- msgid "Type your password again. "
4097
- msgstr "Skriv dit kodeord igen."
4098
-
4099
- #: profile-builder-2.0/admin/manage-fields.php:980
4100
- #: profile-builder-2.0/admin/manage-fields.php:1137
4101
- msgid "You must select a field\n"
4102
- msgstr "Du skal vælge et felt\n"
4103
-
4104
- #: profile-builder-2.0/admin/manage-fields.php:990
4105
- msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4106
- msgstr "Vælg venligst en anden felttype, da denne allerede eksistere i din formular. (skal være unik)\n"
4107
-
4108
- #: profile-builder-2.0/admin/manage-fields.php:1001
4109
- msgid "The entered avatar size is not between 20 and 200\n"
4110
- msgstr "Den indsatte avatar størrelse er ikke mellem 20 og 200\n"
4111
-
4112
- #: profile-builder-2.0/admin/manage-fields.php:1004
4113
- msgid "The entered avatar size is not numerical\n"
4114
- msgstr "Det indtastede rækkenummer er ikke nummereret\n"
4115
-
4116
- #: profile-builder-2.0/admin/manage-fields.php:1012
4117
- msgid "The entered row number is not numerical\n"
4118
- msgstr "Det indsatte række nummer er ikke nummeret\n"
4119
-
4120
- #: profile-builder-2.0/admin/manage-fields.php:1015
4121
- msgid "You must enter a value for the row number\n"
4122
- msgstr "Du skal indtaste en værdi for rækkenummeret\n"
4123
-
4124
- #: profile-builder-2.0/admin/manage-fields.php:1036
4125
- msgid "The entered value for the Datepicker is not a valid date-format\n"
4126
- msgstr "Den indsatte værdi for datovælgeren er ikke korret datoformat\n"
4127
-
4128
- #: profile-builder-2.0/admin/manage-fields.php:1039
4129
- msgid "You must enter a value for the date-format\n"
4130
- msgstr "Du skal indskrive en værdi for datoformatet\n"
4131
-
4132
- #: profile-builder-2.0/admin/manage-fields.php:1067
4133
- #: profile-builder-2.0/admin/manage-fields.php:1075
4134
- #: profile-builder-2.0/admin/manage-fields.php:1086
4135
- msgid "That meta-name is already in use\n"
4136
- msgstr "Det meta-navn er allerede i brug\n"
4137
-
4138
- #: profile-builder-2.0/admin/manage-fields.php:1117
4139
- msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4140
- msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s\n"
4141
-
4142
- #: profile-builder-2.0/admin/manage-fields.php:1121
4143
- msgid "The following option did not coincide with the ones in the options list: %s\n"
4144
- msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s \n"
4145
-
4146
- #: profile-builder-2.0/admin/manage-fields.php:1144
4147
- msgid "That field is already added in this form\n"
4148
- msgstr "Det felt er allerede tilføjet denne formular\n"
4149
-
4150
- #: profile-builder-2.0/admin/manage-fields.php:1193
4151
- msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4152
- msgstr "<pre>titel</pre><pre>Type</pre><pre>Meta navn</pre><pre class=\"wppb-mb-head-required\">nødvendigt</pre>"
4153
-
4154
- #: profile-builder-2.0/admin/manage-fields.php:1193
4155
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4156
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4157
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4158
- #: profile-builder-2.0/features/functions.php:718
4159
- #: profile-builder-2.0/features/functions.php:725
4160
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4161
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4162
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4163
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4164
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4165
- msgid "Edit"
4166
- msgstr "Rediger"
4167
-
4168
- #: profile-builder-2.0/admin/manage-fields.php:1193
4169
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4170
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4171
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4172
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4173
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4174
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4175
- #: profile-builder-2.0/features/functions.php:711
4176
- #: profile-builder-2.0/features/functions.php:725
4177
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4178
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4179
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4180
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4181
- msgid "Delete"
4182
- msgstr "Slet"
4183
-
4184
- #: profile-builder-2.0/admin/manage-fields.php:1208
4185
- msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4186
- msgstr "Benyt disse shortcodes på siden du vil have vist formularerne:"
4187
-
4188
- #: profile-builder-2.0/admin/register-version.php:14
4189
- msgid "Register Your Version"
4190
- msgstr "Registrer din version"
4191
-
4192
- #: profile-builder-2.0/admin/register-version.php:14
4193
- msgid "Register Version"
4194
- msgstr "Registrer version"
4195
-
4196
- #: profile-builder-2.0/admin/register-version.php:70
4197
- msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4198
- msgstr "Hvis du registrere denne version af Profile Builder, så vil du modtage information vedrørende opgraderinger, patches og teknisk support."
4199
-
4200
- #: profile-builder-2.0/admin/register-version.php:72
4201
- msgid " Serial Number:"
4202
- msgstr "Serie Nummer:"
4203
-
4204
- #: profile-builder-2.0/admin/register-version.php:77
4205
- msgid "The serial number was successfully validated!"
4206
- msgstr "Serienummeret blev godkendt!"
4207
-
4208
- #: profile-builder-2.0/admin/register-version.php:79
4209
- msgid "The serial number entered couldn't be validated!"
4210
- msgstr "Serienummeret som du har indsat er ikke korrekt!"
4211
-
4212
- #: profile-builder-2.0/admin/register-version.php:83
4213
- msgid "The serial number couldn't be validated because it expired!"
4214
- msgstr "Serienummeret kunne ikke godkendes da det er udløbet!"
4215
-
4216
- #: profile-builder-2.0/admin/register-version.php:85
4217
- msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
4218
- msgstr "Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!"
4219
-
4220
- #: profile-builder-2.0/admin/register-version.php:87
4221
- msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4222
- msgstr "(f.eks.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4223
-
4224
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4225
- #: profile-builder-2.0/features/functions.php:725
4226
- msgid "Content"
4227
- msgstr "Indhold"
4228
-
4229
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4230
- msgid "Edit this item"
4231
- msgstr "Rediger denne"
4232
-
4233
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4234
- msgid "Delete this item"
4235
- msgstr "Slet denne"
4236
-
4237
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4238
- msgid "Please enter a value for the required field "
4239
- msgstr "Venligst indsæt en værdi for feltet"
4240
-
4241
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4242
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4243
- msgid "Select File"
4244
- msgstr "Vælg en fil"
4245
-
4246
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4247
- #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4248
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4249
- msgid "Remove"
4250
- msgstr "Fjern"
4251
-
4252
- #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4253
- msgid "You can add the information for the %s after you add a entry"
4254
- msgstr "Du kan tilføje information for %s efter du har indsat en indtastning"
4255
-
4256
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4257
- #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4258
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4259
- msgid "Upload "
4260
- msgstr "Upload"
4261
-
4262
- #: profile-builder-2.0/features/class-list-table.php:184
4263
- msgid "No items found."
4264
- msgstr "Intet fundet."
4265
-
4266
- #: profile-builder-2.0/features/class-list-table.php:308
4267
- msgid "Bulk Actions"
4268
- msgstr "Mængde aktion"
4269
-
4270
- #: profile-builder-2.0/features/class-list-table.php:318
4271
- msgid "Apply"
4272
- msgstr "Tilføj"
4273
-
4274
- #: profile-builder-2.0/features/class-list-table.php:402
4275
- msgid "Show all dates"
4276
- msgstr "Vis alle datoer"
4277
-
4278
- #: profile-builder-2.0/features/class-list-table.php:415
4279
- msgid "%1$s %2$d"
4280
- msgstr "%1$s %2$d"
4281
-
4282
- #: profile-builder-2.0/features/class-list-table.php:431
4283
- msgid "List View"
4284
- msgstr "Listevisning"
4285
-
4286
- #: profile-builder-2.0/features/class-list-table.php:432
4287
- msgid "Excerpt View"
4288
- msgstr "Uddragsvisning"
4289
-
4290
- #: profile-builder-2.0/features/class-list-table.php:458
4291
- msgid "%s pending"
4292
- msgstr "%s afventer"
4293
-
4294
- #: profile-builder-2.0/features/class-list-table.php:566
4295
- msgid "%1$s of %2$s"
4296
- msgstr "%1$s of %2$s"
4297
-
4298
- #: profile-builder-2.0/features/class-list-table.php:713
4299
- msgid "Select All"
4300
- msgstr "Vælg alt"
4301
-
4302
- #: profile-builder-2.0/features/functions.php:526
4303
- msgid "Strength indicator"
4304
- msgstr "Styrkeindikator"
4305
-
4306
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4307
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4308
- msgid "Admin Approval"
4309
- msgstr "Admin godkendelse"
4310
-
4311
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4312
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4313
- msgid "Do you want to"
4314
- msgstr "Vil du"
4315
-
4316
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4317
- msgid "Your session has expired! Please refresh the page and try again"
4318
- msgstr "Din session er udløbet! Venligst opdater siden og prøv igen"
4319
-
4320
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
4321
- msgid "User successfully approved!"
4322
- msgstr "Bruger godkendt!"
4323
-
4324
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:74
4325
- msgid "User successfully unapproved!"
4326
- msgstr "Bruger ikke godkendt!"
4327
-
4328
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:80
4329
- msgid "User successfully deleted!"
4330
- msgstr "Bruger slettet!"
4331
-
4332
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:85
4333
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:131
4334
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
4335
- msgid "You either don't have permission for that action or there was an error!"
4336
- msgstr "Enten har du ikke tilladelse til dette eller der var en felj!"
4337
-
4338
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
4339
- msgid "Your session has expired! Please refresh the page and try again."
4340
- msgstr "Din session er udløbet! Opdater venligst siden og prøv igen."
4341
-
4342
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
4343
- msgid "Users successfully approved!"
4344
- msgstr "Brugere godkendt!"
4345
-
4346
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:119
4347
- msgid "Users successfully unapproved!"
4348
- msgstr "Brugere ikke godkendt med succes!"
4349
-
4350
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:127
4351
- msgid "Users successfully deleted!"
4352
- msgstr "Brugere slettet!"
4353
-
4354
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:147
4355
- msgid "Your account on %1$s has been approved!"
4356
- msgstr "Din konto på %1$s er blevet godkendt!"
4357
-
4358
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:148
4359
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:151
4360
- msgid "approved"
4361
- msgstr "godkendt"
4362
-
4363
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4364
- msgid "An administrator has just approved your account on %1$s (%2$s)."
4365
- msgstr "En administrator har netop godkendt din konto på %1$s (%2$s)."
4366
-
4367
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:155
4368
- msgid "Your account on %1$s has been unapproved!"
4369
- msgstr "Din konto på %1$s er blevet 'ikke-godkendt'!"
4370
-
4371
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:156
4372
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:159
4373
- msgid "unapproved"
4374
- msgstr "'ikke-godkendt'"
4375
-
4376
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:158
4377
- msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4378
- msgstr "En administrator har netop sat din konto til 'ikke-godkendt' på %1$s (%2$s)."
4379
-
4380
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
4381
- msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4382
- msgstr "<strong>ERROR</strong>: Din konto skal godkendes af en administrator før du kan logge ind."
4383
-
4384
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
4385
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4386
- msgstr "Din konto skal først være godkendt af en administrator før du kan bruge 'Genskab adgangskode'"
4387
-
4388
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4389
- msgid "delete this user?"
4390
- msgstr "slet denne bruger?"
4391
-
4392
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4393
- msgid "unapprove this user?"
4394
- msgstr "sæt denne bruge til 'ikke-godkendt'?"
4395
-
4396
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4397
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4398
- msgid "Unapprove"
4399
- msgstr "Ophæv godkendelsen"
4400
-
4401
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4402
- msgid "approve this user?"
4403
- msgstr "godkend denne bruger?"
4404
-
4405
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4406
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4407
- msgid "Approve"
4408
- msgstr "Godkend"
4409
-
4410
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4411
- #: profile-builder-2.0/modules/user-listing/userlisting.php:278
4412
- #: profile-builder-2.0/modules/user-listing/userlisting.php:742
4413
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2224
4414
- msgid "Firstname"
4415
- msgstr "Fornavn"
4416
-
4417
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4418
- #: profile-builder-2.0/modules/user-listing/userlisting.php:745
4419
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2225
4420
- msgid "Lastname"
4421
- msgstr "Efternavn"
4422
-
4423
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4424
- #: profile-builder-2.0/modules/user-listing/userlisting.php:149
4425
- #: profile-builder-2.0/modules/user-listing/userlisting.php:279
4426
- #: profile-builder-2.0/modules/user-listing/userlisting.php:772
4427
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2229
4428
- msgid "Role"
4429
- msgstr "Rolle"
4430
-
4431
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4432
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4433
- msgid "Registered"
4434
- msgstr "Registreret"
4435
-
4436
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4437
- msgid "User-status"
4438
- msgstr "Brugerstatus"
4439
-
4440
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4441
- msgid "Do you want to bulk approve the selected users?"
4442
- msgstr "Ønsker du at godkende de valgte brugere på én gang?"
4443
-
4444
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4445
- msgid "Do you want to bulk unapprove the selected users?"
4446
- msgstr "Ønsker du at ophæve godkendelsen af de valgte brugere på én gang?"
4447
-
4448
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4449
- msgid "Do you want to bulk delete the selected users?"
4450
- msgstr "Ønsker du at slette de valgte brugere på én gang?"
4451
-
4452
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4453
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4454
- msgid "Sorry, but you don't have permission to do that!"
4455
- msgstr "Beklager, men du har ikke rettighederne til at gøre dette!"
4456
-
4457
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4458
- msgid "Approved"
4459
- msgstr "Godkendt"
4460
-
4461
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4462
- msgid "Unapproved"
4463
- msgstr "Ikke godkendt"
4464
-
4465
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4466
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4467
- msgid "All Users"
4468
- msgstr "Alle brugere"
4469
-
4470
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4471
- msgid "delete this user from the _signups table?"
4472
- msgstr "slet denne bruger fra tilmeldingstabellen (_signups table)?"
4473
-
4474
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4475
- msgid "confirm this email yourself?"
4476
- msgstr "bekræft selv denne e-mail?"
4477
-
4478
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4479
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4480
- msgid "Confirm Email"
4481
- msgstr "Bekræft e-mail"
4482
-
4483
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4484
- msgid "resend the activation link?"
4485
- msgstr "gen-send aktiveringslinket?"
4486
-
4487
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4488
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4489
- msgid "Resend Activation Email"
4490
- msgstr "Gen-send aktiverings e-mailen"
4491
-
4492
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4493
- msgid "%s couldn't be deleted"
4494
- msgstr "%s kunne ikke slettes"
4495
-
4496
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4497
- msgid "All users have been successfully deleted"
4498
- msgstr "Alle brugere er blevet slettet uden problemer"
4499
-
4500
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4501
- msgid "The selected users have been activated"
4502
- msgstr "De valgte brugere er blevet aktiveret"
4503
-
4504
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4505
- msgid "The selected users have had their activation emails resent"
4506
- msgstr "De valgte brugere har fået deres aktiverings e-mail gensendt"
4507
-
4508
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4509
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4510
- msgid "Users with Unconfirmed Email Address"
4511
- msgstr "Brugere med ubekræftede e-mail adresser"
4512
-
4513
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
4514
- msgid "There was an error performing that action!"
4515
- msgstr "Der opstod en fejl ved udførelsen af denne handling!"
4516
-
4517
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
4518
- msgid "The selected user couldn't be deleted"
4519
- msgstr "De valgte brugere kunne ikke slettes"
4520
-
4521
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
4522
- msgid "Email notification resent to user"
4523
- msgstr "E-mail besked er gensendt til bruger"
4524
-
4525
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
4526
- msgid "[%1$s] Activate %2$s"
4527
- msgstr "[%1$s] Aktivér %2$s"
4528
-
4529
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
4530
- #: profile-builder-2.0/front-end/register.php:71
4531
- msgid "Could not create user!"
4532
- msgstr "Kunne ikke oprette bruger!"
4533
-
4534
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
4535
- msgid "That username is already activated!"
4536
- msgstr "Dette brugernavn er allerede i brug!"
4537
-
4538
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468
4539
- msgid "There was an error while trying to activate the user"
4540
- msgstr "Der skete en fejl ved forsøg på at aktivere brugeren"
4541
-
4542
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516
4543
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4544
- msgid "A new subscriber has (been) registered!"
4545
- msgstr "En ny abonnent ('subscriber') er blevet registreret!"
4546
-
4547
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
4548
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4549
- msgstr "Ny abonnent ('subscriber') på %1$s.<br/><br/>Brugernavn:%2$s<br/>E-mail:%3$s<br/>"
4550
-
4551
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
4552
- msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
4553
- msgstr "\"Administrator godkendelses\" funktionen blev aktiveret på registreringstidspunktet, så vær venlig at huske at du skal godkende denne bruger før han/hun kan logge ind!"
4554
-
4555
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
4556
- msgid "[%1$s] Your new account information"
4557
- msgstr "[%1$s] Din nye konto information"
4558
-
4559
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
4560
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4561
- msgstr "Velkommen til %1$s!<br/><br/><br/>Dit brugernavn er:%2$s og adgangskoden er:%3$s"
4562
-
4563
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
4564
- #: profile-builder-2.0/front-end/register.php:125
4565
- msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4566
- msgstr "Før du kan tilgå din konto skal en administrator først godkende det. Du bliver adviseret via a-mail."
4567
-
4568
- #: profile-builder-2.0/features/login-widget/login-widget.php:10
4569
- msgid "This login widget lets you add a login form in the sidebar."
4570
- msgstr "Denne login widget gør det muligt for dig at tilføje en formular i din sidebar."
4571
-
4572
- #: profile-builder-2.0/features/login-widget/login-widget.php:15
4573
- msgid "Profile Builder Login Widget"
4574
- msgstr "Profile Builder login widget"
4575
-
4576
- #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4577
- #: profile-builder-2.0/front-end/class-formbuilder.php:415
4578
- #: profile-builder-2.0/front-end/login.php:250
4579
- msgid "Register"
4580
- msgstr "Registrer"
4581
-
4582
- #: profile-builder-2.0/features/login-widget/login-widget.php:63
4583
- msgid "Title:"
4584
- msgstr "Titel:"
4585
-
4586
- #: profile-builder-2.0/features/login-widget/login-widget.php:68
4587
- msgid "After login redirect URL (optional):"
4588
- msgstr "Efter login URL omdirigering (valgfri):"
4589
-
4590
- #: profile-builder-2.0/features/login-widget/login-widget.php:73
4591
- msgid "Register page URL (optional):"
4592
- msgstr "Registrerings side URL (valgfri):"
4593
-
4594
- #: profile-builder-2.0/features/login-widget/login-widget.php:78
4595
- msgid "Password Recovery page URL (optional):"
4596
- msgstr "Adgangskode genskabnings side URL (valgfri)"
4597
-
4598
- #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4599
- #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4600
- msgid "The usernames cannot be changed."
4601
- msgstr "Brugernavnene kan ikke ændres."
4602
-
4603
- #: profile-builder-2.0/front-end/class-formbuilder.php:136
4604
- msgid "Only an administrator can add new users."
4605
- msgstr "Kun administrator kan tilføje nye brugere."
4606
-
4607
- #: profile-builder-2.0/front-end/class-formbuilder.php:146
4608
- msgid "Users can register themselves or you can manually create users here."
4609
- msgstr "Brugere kan registrere sig selv eller du kan manuelt oprette brugere her."
4610
-
4611
- #: profile-builder-2.0/front-end/class-formbuilder.php:149
4612
- msgid "Users cannot currently register themselves, but you can manually create users here."
4613
- msgstr "Brugere kan ikke i øjeblikket registrere sig selv, men du kan manuelt oprette brugere her."
4614
-
4615
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4616
- msgid "You are currently logged in as %1s. You don't need another account. %2s"
4617
- msgstr "Du er i øjeblikket logget ind som %1s. Du har ikke brug for en anden konto. %2s"
4618
-
4619
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4620
- msgid "Log out of this account."
4621
- msgstr "Log ud fra denne konto."
4622
-
4623
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4624
- msgid "Logout"
4625
- msgstr "Log ud"
4626
-
4627
- #: profile-builder-2.0/front-end/class-formbuilder.php:175
4628
- msgid "You must be logged in to edit your profile."
4629
- msgstr "Du skal være logget ind for at redigere din profil."
4630
-
4631
- #: profile-builder-2.0/features/functions.php:994
4632
- msgid "here"
4633
- msgstr "her"
4634
-
4635
- #: profile-builder-2.0/features/functions.php:995
4636
- msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4637
- msgstr "Du vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$s"
4638
-
4639
- #: profile-builder-2.0/front-end/class-formbuilder.php:315
4640
- #: profile-builder-2.0/front-end/class-formbuilder.php:322
4641
- msgid "The account %1s has been successfully created!"
4642
- msgstr "Kontoen %1s er oprettet uden problemer!"
4643
-
4644
- #: profile-builder-2.0/front-end/class-formbuilder.php:318
4645
- #: profile-builder-2.0/front-end/class-formbuilder.php:328
4646
- msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4647
- msgstr "Før du kan tilgå din konto %1s, skal du bekræfte din e-mail adresse. Tjek venligst din indbakke og klik på aktiveringslinket."
4648
-
4649
- #: profile-builder-2.0/front-end/class-formbuilder.php:324
4650
- msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4651
- msgstr "Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail."
4652
-
4653
- #: profile-builder-2.0/front-end/class-formbuilder.php:347
4654
- msgid "Your profile has been successfully updated!"
4655
- msgstr "Din profil er blevet opdateret uden problemer!"
4656
-
4657
- #: profile-builder-2.0/front-end/class-formbuilder.php:358
4658
- msgid "There was an error in the submitted form"
4659
- msgstr "Der var en fejl i den sendte formular. "
4660
-
4661
- #: profile-builder-2.0/front-end/class-formbuilder.php:415
4662
- msgid "Add User"
4663
- msgstr "Tilføj bruger"
4664
-
4665
- #: profile-builder-2.0/admin/add-ons.php:170
4666
- #: profile-builder-2.0/front-end/class-formbuilder.php:418
4667
- msgid "Update"
4668
- msgstr "Opdater"
4669
-
4670
- #: profile-builder-2.0/front-end/class-formbuilder.php:481
4671
- msgid "Send these credentials via email."
4672
- msgstr "Send disse legitimationsoplysninger via e-mail."
4673
-
4674
- #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4675
- #: profile-builder-2.0/front-end/login.php:137
4676
- #: profile-builder-2.0/front-end/login.php:144
4677
- #: profile-builder-2.0/front-end/login.php:158
4678
- #: profile-builder-2.0/front-end/recover.php:17
4679
- #: profile-builder-2.0/front-end/recover.php:245
4680
- msgid "ERROR"
4681
- msgstr "FEJL"
4682
-
4683
- #: profile-builder-2.0/front-end/login.php:137
4684
- msgid "The password you entered is incorrect."
4685
- msgstr "Adgangskoden du angav er forkert."
4686
-
4687
- #: profile-builder-2.0/front-end/login.php:138
4688
- #: profile-builder-2.0/front-end/login.php:145
4689
- msgid "Password Lost and Found."
4690
- msgstr "Adgangskode 'mistet og fundet'"
4691
-
4692
- #: profile-builder-2.0/front-end/login.php:138
4693
- #: profile-builder-2.0/front-end/login.php:145
4694
- msgid "Lost your password"
4695
- msgstr "Mistet din adgangskode"
4696
-
4697
- #: profile-builder-2.0/front-end/login.php:158
4698
- msgid "Both fields are empty."
4699
- msgstr "Begge felter er tomme."
4700
-
4701
- #: profile-builder-2.0/front-end/login.php:296
4702
- msgid "You are currently logged in as %1$s. %2$s"
4703
- msgstr "Du er i øjeblikket logget ind som %1$s. %2$s"
4704
-
4705
- #: profile-builder-2.0/front-end/login.php:295
4706
- #: profile-builder-2.0/front-end/logout.php:25
4707
- msgid "Log out of this account"
4708
- msgstr "Log ud af denne konto"
4709
-
4710
- #: profile-builder-2.0/front-end/login.php:295
4711
- msgid "Log out"
4712
- msgstr "Log ud"
4713
-
4714
- #: profile-builder-2.0/front-end/recover.php:17
4715
- msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4716
- msgstr "Din konto skal først godkendes af en administrator før du kan bruge \"Genskab adgangskode\""
4717
-
4718
- #: profile-builder-2.0/front-end/recover.php:94
4719
- msgid "Reset Password"
4720
- msgstr "Genskab adgangskode"
4721
-
4722
- #: profile-builder-2.0/front-end/recover.php:121
4723
- msgid "Please enter your username or email address."
4724
- msgstr "Venligst angiv dit brugernavn eller e-mail adresse."
4725
-
4726
- #: profile-builder-2.0/front-end/recover.php:125
4727
- msgid "You will receive a link to create a new password via email."
4728
- msgstr "Du modtager et link via e-mail, så du kan oprette en ny adgangskode"
4729
-
4730
- #: profile-builder-2.0/front-end/recover.php:122
4731
- msgid "Username or E-mail"
4732
- msgstr "Brugernavn eller e-mail"
4733
-
4734
- #: profile-builder-2.0/front-end/recover.php:138
4735
- msgid "Get New Password"
4736
- msgstr "Anmod om ny adgangskode"
4737
-
4738
- #: profile-builder-2.0/front-end/recover.php:185
4739
- msgid "The username entered wasn't found in the database!"
4740
- msgstr "Det angivne brugernavn blev ikke fundet i databasen!"
4741
-
4742
- #: profile-builder-2.0/front-end/recover.php:185
4743
- msgid "Please check that you entered the correct username."
4744
- msgstr "Tjek venligst at du angav det korrekte brugernavn."
4745
-
4746
- #: profile-builder-2.0/front-end/recover.php:200
4747
- msgid "Check your e-mail for the confirmation link."
4748
- msgstr "Tjek din e-mail for bekræftelseslink."
4749
-
4750
- #: profile-builder-2.0/front-end/recover.php:235
4751
- msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
4752
- msgstr "Nogen anmodede om at adgangskoden skulle genskabes for følgende konto: <b>%1$s</b><br/>Hvis dette var en fejltagelse, så se bare bort fra denne e-mail og intet vil ske. <br/>For at genskabe din adgangskode, følge dette link:%2$s"
4753
-
4754
- #: profile-builder-2.0/front-end/recover.php:238
4755
- msgid "Password Reset from \"%1$s\""
4756
- msgstr "Adgangskode genskab fra \"%1$s\""
4757
-
4758
- #: profile-builder-2.0/front-end/recover.php:245
4759
- msgid "There was an error while trying to send the activation link to %1$s!"
4760
- msgstr "Der opstod en fejl, da aktivireingslinket blev forsøgt sendt til %1$s!"
4761
-
4762
- #: profile-builder-2.0/front-end/recover.php:207
4763
- msgid "The email address entered wasn't found in the database!"
4764
- msgstr "Den angivne e-mail adresse blev ikke fundet i databasen!"
4765
-
4766
- #: profile-builder-2.0/front-end/recover.php:207
4767
- msgid "Please check that you entered the correct email address."
4768
- msgstr "Tjek venligst at du angav den korrekte e-mail adresse."
4769
-
4770
- #: profile-builder-2.0/front-end/recover.php:273
4771
- msgid "Your password has been successfully changed!"
4772
- msgstr "Din adgangskode er ændret uden problemer!"
4773
-
4774
- #: profile-builder-2.0/front-end/recover.php:292
4775
- msgid "You have successfully reset your password to: %1$s"
4776
- msgstr "Du har med succes genskabt din adgangskode til: %1$s"
4777
-
4778
- #: profile-builder-2.0/front-end/recover.php:295
4779
- #: profile-builder-2.0/front-end/recover.php:306
4780
- msgid "Password Successfully Reset for %1$s on \"%2$s\""
4781
- msgstr "Adgangskoden ændret uden problemer for %1$s på \"%2$s\""
4782
-
4783
- #: profile-builder-2.0/front-end/recover.php:303
4784
- msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4785
- msgstr "%1$s har anmodet om ændring af adgangskoden via 'Genskab adgangskode'.<br/>Hans/hendes nye adgagnskode er:%2$s"
4786
-
4787
- #: profile-builder-2.0/front-end/recover.php:320
4788
- msgid "The entered passwords don't match!"
4789
- msgstr "Den angivne adgangskode matcher ikke!"
4790
-
4791
- #: profile-builder-2.0/front-end/recover.php:375
4792
- msgid "ERROR:"
4793
- msgstr "FEJL:"
4794
-
4795
- #: profile-builder-2.0/front-end/recover.php:375
4796
- msgid "Invalid key!"
4797
- msgstr "Ugyldig nøgle!"
4798
-
4799
- #: profile-builder-2.0/front-end/register.php:56
4800
- msgid "Invalid activation key!"
4801
- msgstr "Ugyldig aktiveringsnøgle!"
4802
-
4803
- #: profile-builder-2.0/front-end/register.php:60
4804
- msgid "This username is now active!"
4805
- msgstr "Dette brugernavn er nu aktivt!"
4806
-
4807
- #: profile-builder-2.0/front-end/register.php:74
4808
- msgid "This username is already activated!"
4809
- msgstr "Dette brugernavn er allerede aktiveret!"
4810
-
4811
- #: profile-builder-2.0/front-end/register.php:124
4812
- msgid "Your email was successfully confirmed."
4813
- msgstr "Din e-mail blev bekræftet uden problemer."
4814
-
4815
- #: profile-builder-2.0/front-end/register.php:153
4816
- msgid "There was an error while trying to activate the user."
4817
- msgstr "Der skete en fejl under forsøget på at aktivere brugeren."
4818
-
4819
- #: pb-add-on-woocommerce/index.php:393
4820
- #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4821
- msgid "The email you entered is not a valid email address."
4822
- msgstr "E-mailen, som du angav, er ikke en gyldig e-mail adresse."
4823
-
4824
- #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4825
- #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4826
- msgid "This email is already reserved to be used soon."
4827
- msgstr "Denne e-mail er allerede reserveret til snart at blive anvendt."
4828
-
4829
- #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4830
- #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4831
- #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4832
- #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4833
- #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4834
- #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4835
- msgid "Please try a different one!"
4836
- msgstr "Venligst prøv en anden!"
4837
-
4838
- #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4839
- #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4840
- msgid "This email is already in use."
4841
- msgstr "Denne e-mail er allerede i brug."
4842
-
4843
- #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4844
- #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4845
- msgid "The passwords do not match"
4846
- msgstr "Adgangskoden matcher ikke"
4847
-
4848
- #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4849
- msgid "This username already exists."
4850
- msgstr "Dette brugernavn eksisterer allerede."
4851
-
4852
- #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4853
- msgid "This username is already reserved to be used soon."
4854
- msgstr "Dette brugernavn er allerede reserveret til snart at blive anvendt."
4855
-
4856
- #: profile-builder-2.0/modules/user-listing/userlisting.php:276
4857
- msgid "Avatar"
4858
- msgstr "Avatar"
4859
-
4860
- #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4861
- #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4862
- #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4863
- #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4864
- #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4865
- #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4866
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4867
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4868
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4869
- #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4870
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52
4871
- #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4872
- #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4873
- #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4874
- #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4875
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4876
- #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4877
- msgid "required"
4878
- msgstr "krævet"
4879
-
4880
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48
4881
- msgid "To use reCAPTCHA you must get an API key from"
4882
- msgstr "For at bruge 'reCAPTCHA' skal du først have en API nøgle fra"
4883
-
4884
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
4885
- msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4886
- msgstr "Af sikkerhedsmæssige grunde skal du angive 'remote' ip til 'reCAPTCHA'!"
4887
-
4888
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
4889
- msgid "To use reCAPTCHA you must get an API public key from:"
4890
- msgstr "For at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:"
4891
-
4892
- #: profile-builder-2.0/modules/modules.php:11
4893
- #: profile-builder-2.0/modules/modules.php:58
4894
- msgid "Modules"
4895
- msgstr "Moduler"
4896
-
4897
- #: profile-builder-2.0/modules/modules.php:59
4898
- msgid "Here you can activate / deactivate available modules for Profile Builder."
4899
- msgstr "Her kan du aktivere / deaktivere tilgængelige moduler i Profile Builder."
4900
-
4901
- #: profile-builder-2.0/modules/modules.php:69
4902
- msgid "Name/Description"
4903
- msgstr "Navn/Beskrivelse"
4904
-
4905
- #: profile-builder-2.0/modules/modules.php:70
4906
- msgid "Status"
4907
- msgstr "Status"
4908
-
4909
- #: profile-builder-2.0/modules/modules.php:77
4910
- #: profile-builder-2.0/modules/modules.php:84
4911
- #: profile-builder-2.0/modules/modules.php:91
4912
- #: profile-builder-2.0/modules/modules.php:98
4913
- #: profile-builder-2.0/modules/modules.php:105
4914
- #: profile-builder-2.0/modules/modules.php:112
4915
- #: profile-builder-2.0/modules/modules.php:119
4916
- msgid "Active"
4917
- msgstr "Aktiv"
4918
-
4919
- #: profile-builder-2.0/modules/modules.php:78
4920
- #: profile-builder-2.0/modules/modules.php:85
4921
- #: profile-builder-2.0/modules/modules.php:92
4922
- #: profile-builder-2.0/modules/modules.php:99
4923
- #: profile-builder-2.0/modules/modules.php:106
4924
- #: profile-builder-2.0/modules/modules.php:113
4925
- #: profile-builder-2.0/modules/modules.php:120
4926
- msgid "Inactive"
4927
- msgstr "Inaktiv"
4928
-
4929
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4930
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4931
- #: profile-builder-2.0/modules/modules.php:96
4932
- msgid "Admin Email Customizer"
4933
- msgstr "Opsætning af administrator e-mails"
4934
-
4935
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4936
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4937
- #: profile-builder-2.0/modules/modules.php:103
4938
- msgid "User Email Customizer"
4939
- msgstr "Opsætning af bruger e-mails"
4940
-
4941
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
4942
- #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253
4943
- msgid "Save"
4944
- msgstr "Gem"
4945
-
4946
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4947
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4948
- msgid "Redirect"
4949
- msgstr "Omdiriger"
4950
-
4951
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4952
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4953
- msgid "URL"
4954
- msgstr "URL"
4955
-
4956
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4957
- msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4958
- msgstr "Disse indstillinger bliver samtidig også gemt i \"Opsætning af bruger e-mails\" når de gemmes."
4959
-
4960
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4961
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4962
- msgid "From (name)"
4963
- msgstr "Fra (navn)"
4964
-
4965
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4966
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4967
- msgid "From (reply-to email)"
4968
- msgstr "Fra (svar-til e-mail)"
4969
-
4970
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4971
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4972
- msgid "Common Settings"
4973
- msgstr "Fælles indstillinger"
4974
-
4975
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4976
- msgid ""
4977
- "\n"
4978
- "<p>New subscriber on {{site_name}}.</p>\n"
4979
- "<p>Username:{{username}}</p>\n"
4980
- "<p>E-mail:{{user_email}}</p>\n"
4981
- msgstr ""
4982
- "\n"
4983
- "<p>Ny abonnent på {{site_name}}.</p>\n"
4984
- "<p>Brugernavn:{{username}}</p>\n"
4985
- "<p>E-mail:{{user_email}}</p>\n"
4986
-
4987
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4988
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4989
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4990
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4991
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4992
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4993
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4994
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4995
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4996
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4997
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4998
- msgid "Email Subject"
4999
- msgstr "E-mail emne"
5000
-
5001
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
5002
- msgid "Default Registration & Registration with Email Confirmation"
5003
- msgstr "Standard registrering & registrering med e-mail bekræftelse"
5004
-
5005
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
5006
- msgid ""
5007
- "\n"
5008
- "<p>New subscriber on {{site_name}}.</p>\n"
5009
- "<p>Username:{{username}}</p>\n"
5010
- "<p>E-mail:{{user_email}}</p>\n"
5011
- "<p>The Admin Approval feature was activated at the time of registration,\n"
5012
- "so please remember that you need to approve this user before he/she can log in!</p>\n"
5013
- msgstr ""
5014
- "\n"
5015
- "<p>Ny abonnent på {{site_name}}.</p>\n"
5016
- "<p>Brugernavn:{{username}}</p>\n"
5017
- "<p>E-mail:{{user_email}}</p>\n"
5018
- "<p>Administrator godkendelsesfunktione blev aktiveret på tidspunktet for registrering,\n"
5019
- "så husk venligst at du skal godkende denne bruger før han/hun kan logge ind!</p>\n"
5020
-
5021
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5022
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
5023
- msgid "Registration with Admin Approval"
5024
- msgstr "Registrering med administrator godkendelse"
5025
-
5026
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
5027
- msgid "Available Tags"
5028
- msgstr "Tilgængelige 'tags'"
5029
-
5030
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
5031
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
5032
- msgid "User Meta"
5033
- msgstr "Bruger 'meta'"
5034
-
5035
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
5036
- msgid "Site Url"
5037
- msgstr "Site URL"
5038
-
5039
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
5040
- msgid "Site Name"
5041
- msgstr "Site navn"
5042
-
5043
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
5044
- #: profile-builder-2.0/modules/user-listing/userlisting.php:158
5045
- msgid "User Id"
5046
- msgstr "Bruger ID"
5047
-
5048
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
5049
- msgid "Reply To"
5050
- msgstr "Svar til"
5051
-
5052
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40
5053
- msgid "Activation Key"
5054
- msgstr "Aktiveringsnøgle"
5055
-
5056
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41
5057
- msgid "Activation Url"
5058
- msgstr "Aktiverings URL"
5059
-
5060
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
5061
- msgid "Activation Link"
5062
- msgstr "Aktiveringslink"
5063
-
5064
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5065
- msgid ""
5066
- "\n"
5067
- "<h3>Welcome to {{site_name}}!</h3>\n"
5068
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5069
- msgstr ""
5070
- "\n"
5071
- "<h3>Velkommen til {{site_name}}!</h3>\n"
5072
- "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
5073
-
5074
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5075
- msgid "Default Registration"
5076
- msgstr "Standard registrering"
5077
-
5078
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5079
- msgid ""
5080
- "\n"
5081
- "<p>To activate your user, please click the following link:<br/>\n"
5082
- "{{{activation_link}}}</p>\n"
5083
- "<p>After you activate, you will receive another email with your credentials.</p>\n"
5084
- msgstr ""
5085
- "\n"
5086
- "<p>For at aktivere din bruger klik venligst på følgende link:<br/>\n"
5087
- "{{{activation_link}}}</p>\n"
5088
- "<p>Efter du aktiverer vil du modtage endnu en e-mail med dine legitimationsoplysninger.</p>\n"
5089
-
5090
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5091
- msgid "[{{site_name}}] Activate {{username}}"
5092
- msgstr "[{{site_name}}] Aktivér {{username}}"
5093
-
5094
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5095
- msgid "Registration with Email Confirmation"
5096
- msgstr "Registrering med e-mail bekræftelse"
5097
-
5098
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5099
- msgid ""
5100
- "\n"
5101
- "<h3>Welcome to {{site_name}}!</h3>\n"
5102
- "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5103
- "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
5104
- msgstr ""
5105
- "\n"
5106
- "<h3>Velkommen til {{site_name}}!</h3>\n"
5107
- "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
5108
- "<p>Før du kan tilgå din konto skal en administrator først godkende den. Du vil få yderligere besked via e-mail.</p>\n"
5109
-
5110
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5111
- msgid "A new account has been created for you on {{site_name}}"
5112
- msgstr "En ny konto er blevet oprettet til dig på {{site_name}}"
5113
-
5114
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5115
- msgid ""
5116
- "\n"
5117
- "<h3>Good News!</h3>\n"
5118
- "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5119
- msgstr ""
5120
- "\n"
5121
- "<h3>Gode nyheder!</h3>\n"
5122
- "<p>En administrator har netop godkendt din konto: {{username}} på {{site_name}}.</p>\n"
5123
-
5124
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5125
- msgid "Your account on {{site_name}} has been approved!"
5126
- msgstr "Din konto på {{site_name}} er blevet godkendt!"
5127
-
5128
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5129
- msgid "User Approval Notification"
5130
- msgstr "Meddelelse om brugergodkendelse"
5131
-
5132
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5133
- msgid ""
5134
- "\n"
5135
- "<h3>Hello,</h3>\n"
5136
- "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5137
- msgstr ""
5138
- "\n"
5139
- "<h3>Hej,</h3>\n"
5140
- "<p>En administrator har desværre ophævet godkendelsen af din konto: {{username}} på {{site_name}}.</p>\n"
5141
-
5142
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5143
- msgid "Your account on {{site_name}} has been unapproved!"
5144
- msgstr "Din konto på {{site_name}} er ikke længere godkendt!"
5145
-
5146
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5147
- msgid "Unapproved User Notification"
5148
- msgstr "Meddelelse om ophævelse af brugerkonto"
5149
-
5150
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5151
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5152
- msgid "Edit-profile Form"
5153
- msgstr "Formular til profilredigering"
5154
-
5155
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5156
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5157
- #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5158
- msgid "Add New"
5159
- msgstr "Tilføj ny"
5160
-
5161
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5162
- msgid "Add new Edit-profile Form"
5163
- msgstr "Tilføj ny formular til profilredigering"
5164
-
5165
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5166
- msgid "Edit the Edit-profile Forms"
5167
- msgstr "Rediger profilredigerings formularer"
5168
-
5169
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5170
- msgid "New Edit-profile Form"
5171
- msgstr "Ny profilredigerings formular"
5172
-
5173
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5174
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5175
- msgid "Edit-profile Forms"
5176
- msgstr "Profilredigerings formularer"
5177
-
5178
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5179
- msgid "View the Edit-profile Form"
5180
- msgstr "Vis profilredigerings formular"
5181
-
5182
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5183
- msgid "Search the Edit-profile Forms"
5184
- msgstr "Søg profilredigerings formularer"
5185
-
5186
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5187
- msgid "No Edit-profile Form found"
5188
- msgstr "Ingen profilredigerings formular fundet"
5189
-
5190
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5191
- msgid "No Edit-profile Forms found in trash"
5192
- msgstr "Ingen profilredigerings formular fundet i papirkurven"
5193
-
5194
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5195
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5196
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2115
5197
- msgid "Shortcode"
5198
- msgstr "'Shortcode'"
5199
-
5200
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5201
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5202
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5203
- msgid "(no title)"
5204
- msgstr "(ingen titel)"
5205
-
5206
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5207
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5208
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2156
5209
- msgid "The shortcode will be available after you publish this form."
5210
- msgstr "'Shortcode' er tilgængelig efter du har publiceret denne formular."
5211
-
5212
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5213
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5214
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5215
- msgid "Use this shortcode on the page you want the form to be displayed:"
5216
- msgstr "Brug denne 'shortcode' på den side du ønsker formularen vist:"
5217
-
5218
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5219
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5220
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5221
- msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5222
- msgstr "<span style=\"color:red;\">Bemærk:</span> ændring af denne formulars titel ændrer også 'shortcode'!"
5223
-
5224
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5225
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5226
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
5227
- msgid "Form Shortcode"
5228
- msgstr "Formular 'shortcode'"
5229
-
5230
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5231
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5232
- msgid "Whether to redirect the user to a specific page or not"
5233
- msgstr "Hvorvidt brugeren skal omdirigeres til en bestemt side eller ikke"
5234
-
5235
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5236
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5237
- msgid "Display Messages"
5238
- msgstr "Vis meddelelser"
5239
-
5240
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5241
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5242
- msgid "Allowed time to display any success messages (in seconds)"
5243
- msgstr "Tilladt visningstid (i sekunder) for alle problemfrie meddelelser"
5244
-
5245
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5246
- msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
5247
- msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de opdaterer deres profil fra denne formular<br/>Brug følgende format: http://www.mysite.com"
5248
-
5249
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5250
- msgid "After Profile Update..."
5251
- msgstr "Efter profilopdatering..."
5252
-
5253
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5254
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5255
- msgid "Add New Field to the List"
5256
- msgstr "Tilføj nyt felt til listen"
5257
-
5258
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5259
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5260
- msgid "Choose one of the supported fields you manage <a href=\""
5261
- msgstr "Vælg en af de understøttede felter som du administrerer <a href=\""
5262
-
5263
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5264
- msgid "<pre>Title (Type)</pre>"
5265
- msgstr "<pre>Titel (Type)</pre>"
5266
-
5267
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5268
- msgid "You need to specify the title of the form before creating it"
5269
- msgstr "Du skal specificere formularens titel før du opretter den"
5270
-
5271
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5272
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5273
- msgid "Registration Form"
5274
- msgstr "Registreringsformular"
5275
-
5276
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5277
- msgid "Add new Registration Form"
5278
- msgstr "Tilføj ny registreringsformular"
5279
-
5280
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5281
- msgid "Edit the Registration Forms"
5282
- msgstr "Rediger registreringsformularer"
5283
-
5284
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5285
- msgid "New Registration Form"
5286
- msgstr "Ny registreringsformular"
5287
-
5288
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5289
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5290
- msgid "Registration Forms"
5291
- msgstr "Registreringsformularer"
5292
-
5293
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5294
- msgid "View the Registration Form"
5295
- msgstr "Vis registrerinsformularen"
5296
-
5297
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5298
- msgid "Search the Registration Forms"
5299
- msgstr "Søg registreringsformularer"
5300
-
5301
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5302
- msgid "No Registration Form found"
5303
- msgstr "Ingen registreringsformular funder"
5304
-
5305
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5306
- msgid "No Registration Forms found in trash"
5307
- msgstr "Ingen registreringsformularer fundet i papirkurven"
5308
-
5309
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5310
- msgid "Default Role"
5311
- msgstr "Standard rolle"
5312
-
5313
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5314
- msgid "Set Role"
5315
- msgstr "Indstil rolle"
5316
-
5317
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5318
- msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
5319
- msgstr "Vælg hvilken rolle brugeren får efter han/hun har registreret sig<br/>Hvis ikke specificeret, anvendes rollen der er sat som 'default' i WordPress indstillingerne"
5320
-
5321
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5322
- msgid "Automatically Log In"
5323
- msgstr "Automatisk log ind"
5324
-
5325
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5326
- msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
5327
- msgstr "Hvorvidt nyligt registrerede brugere skal logges automatisk ind eller ikke<br/>Virker kun på 'single-sites' hvor \"Administrator godkendelse\" og \"E-mail bekræftelse\" ikke er aktiveret<br/>ADVARSEL: 'Caching' af registreringsformularer vil bevirke, at den automatiske log ind funktion ikke vil fungere"
5328
-
5329
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5330
- msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
5331
- msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de er registreret via denne formular.<br/>Brug følgende format: http://www.mysite.com"
5332
-
5333
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5334
- msgid "After Registration..."
5335
- msgstr "Efter registrering..."
5336
-
5337
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1038
5338
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1485
5339
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1953
5340
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2426
5341
- msgid "Search Users by All Fields"
5342
- msgstr "Søg brugere ved at bruge 'Alle felter'"
5343
-
5344
- #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5345
- msgid "Add new User Listing"
5346
- msgstr "Tilføj ny brugeroversigt"
5347
-
5348
- #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5349
- msgid "Edit the User Listing"
5350
- msgstr "Rediger brugeroversigten"
5351
-
5352
- #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5353
- msgid "New User Listing"
5354
- msgstr "Ny brugeroversigt"
5355
-
5356
- #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5357
- msgid "View the User Listing"
5358
- msgstr "Vis brugeroversigten"
5359
-
5360
- #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5361
- msgid "Search the User Listing"
5362
- msgstr "Søg i brugeroversigt"
5363
-
5364
- #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5365
- msgid "No User Listing found"
5366
- msgstr "Ingen brugeroversigt fundet"
5367
-
5368
- #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5369
- msgid "No User Listing found in trash"
5370
- msgstr "Ingen brugeroversigt fundet i papirkurven"
5371
-
5372
- #: profile-builder-2.0/modules/user-listing/userlisting.php:105
5373
- msgid "Display name as"
5374
- msgstr "Vis navn som"
5375
-
5376
- #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5377
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2223
5378
- msgid "Registration Date"
5379
- msgstr "Registreringsdato"
5380
-
5381
- #: profile-builder-2.0/modules/user-listing/userlisting.php:151
5382
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2228
5383
- msgid "Number of Posts"
5384
- msgstr "Antal poster"
5385
-
5386
- #: profile-builder-2.0/modules/user-listing/userlisting.php:155
5387
- msgid "More Info"
5388
- msgstr "Mere info"
5389
-
5390
- #: profile-builder-2.0/modules/user-listing/userlisting.php:156
5391
- msgid "More Info Url"
5392
- msgstr "Mere info URL"
5393
-
5394
- #: profile-builder-2.0/modules/user-listing/userlisting.php:157
5395
- msgid "Avatar or Gravatar"
5396
- msgstr "Avatar eller Gravatar"
5397
-
5398
- #: profile-builder-2.0/modules/user-listing/userlisting.php:196
5399
- #: profile-builder-2.0/modules/user-listing/userlisting.php:227
5400
- msgid "Extra Functions"
5401
- msgstr "Ekstra funktioner"
5402
-
5403
- #: profile-builder-2.0/modules/user-listing/userlisting.php:199
5404
- msgid "Pagination"
5405
- msgstr "Sideopdeling"
5406
-
5407
- #: profile-builder-2.0/modules/user-listing/userlisting.php:200
5408
- msgid "Search all Fields"
5409
- msgstr "Søg 'Alle felter'"
5410
-
5411
- #: profile-builder-2.0/modules/user-listing/userlisting.php:229
5412
- msgid "Go Back Link"
5413
- msgstr "Tilbage link"
5414
-
5415
- #: profile-builder-2.0/modules/user-listing/userlisting.php:247
5416
- msgid "All-userlisting Template"
5417
- msgstr "Skabelon for flere-brugeroversigt"
5418
-
5419
- #: profile-builder-2.0/modules/user-listing/userlisting.php:250
5420
- msgid "Single-userlisting Template"
5421
- msgstr "Skabelon for enkelt-brugeroversigt"
5422
-
5423
- #: profile-builder-2.0/modules/user-listing/userlisting.php:733
5424
- msgid "First/Lastname"
5425
- msgstr "For-/Efternavn"
5426
-
5427
- #: profile-builder-2.0/modules/user-listing/userlisting.php:281
5428
- #: profile-builder-2.0/modules/user-listing/userlisting.php:739
5429
- msgid "Sign-up Date"
5430
- msgstr "Tilmeldingsdato"
5431
-
5432
- #: profile-builder-2.0/modules/user-listing/userlisting.php:748
5433
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2226
5434
- msgid "Display Name"
5435
- msgstr "Vis navn som"
5436
-
5437
- #: profile-builder-2.0/modules/user-listing/userlisting.php:280
5438
- #: profile-builder-2.0/modules/user-listing/userlisting.php:757
5439
- msgid "Posts"
5440
- msgstr "Poster"
5441
-
5442
- #: profile-builder-2.0/modules/user-listing/userlisting.php:760
5443
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2233
5444
- msgid "Aim"
5445
- msgstr "'Aim'"
5446
-
5447
- #: profile-builder-2.0/modules/user-listing/userlisting.php:763
5448
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2234
5449
- msgid "Yim"
5450
- msgstr "'Yim'"
5451
-
5452
- #: profile-builder-2.0/modules/user-listing/userlisting.php:766
5453
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2235
5454
- msgid "Jabber"
5455
- msgstr "'Jabber'"
5456
-
5457
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5458
- msgid "Click here to see more information about this user"
5459
- msgstr "Klik her for at se mere information om denne bruger"
5460
-
5461
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5462
- msgid "More..."
5463
- msgstr "Mere..."
5464
-
5465
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1293
5466
- msgid "Click here to see more information about this user."
5467
- msgstr "Klik her for at se mere information om denne bruger."
5468
-
5469
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5470
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1442
5471
- msgid "Click here to go back"
5472
- msgstr "Klik her for at gå tilbage"
5473
-
5474
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5475
- msgid "Back"
5476
- msgstr "Tilbage"
5477
-
5478
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1472
5479
- msgid "&laquo;&laquo; First"
5480
- msgstr "&laquo;&laquo; Først"
5481
-
5482
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1473
5483
- msgid "&laquo; Prev"
5484
- msgstr "&laquo; Forrige"
5485
-
5486
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1474
5487
- msgid "Next &raquo; "
5488
- msgstr "Næste &raquo; "
5489
-
5490
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1475
5491
- msgid "Last &raquo;&raquo;"
5492
- msgstr "Sidste &raquo;&raquo;"
5493
-
5494
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1504
5495
- msgid "You don't have any pagination settings on this userlisting!"
5496
- msgstr "Du har ingen sideopdeling (paginering) på denne brugeroversigt!"
5497
-
5498
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1970
5499
- msgid "Search"
5500
- msgstr "Søg"
5501
-
5502
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1971
5503
- msgid "Clear Results"
5504
- msgstr "Ryd resultatet"
5505
-
5506
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2165
5507
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
5508
- msgid "Extra shortcode parameters"
5509
- msgstr "Ekstra 'shortcode' parametre"
5510
-
5511
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
5512
- msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5513
- msgstr "viser brugere med en bestemt meta-værdi inden for et bestemt (ekstra) meta-felt"
5514
-
5515
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
5516
- msgid "Example:"
5517
- msgstr "Eksempel:"
5518
-
5519
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
5520
- msgid "Remember though, that the field-value combination must exist in the database."
5521
- msgstr "Husk dog, at feltværdi kombinationen skal eksistere i databasen."
5522
-
5523
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
5524
- msgid "Random (very slow on large databases > 10K user)"
5525
- msgstr "Vilkårlig (meget langsom på store databaser > 10K brugere)"
5526
-
5527
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5528
- msgid "Roles to Display"
5529
- msgstr "Roller der skal vises"
5530
-
5531
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5532
- msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5533
- msgstr "Begræns brugeroversigter til kun at omfatte disse udvalgte roller<br/>Hvis ikke specificeret, så bruges alle eksisterende roller"
5534
-
5535
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5536
- msgid "Number of Users/Page"
5537
- msgstr "Antal brugere/side"
5538
-
5539
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5540
- msgid "Default Sorting Criteria"
5541
- msgstr "Standard sorteringskriterie"
5542
-
5543
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5544
- msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5545
- msgstr "Sæt standard sorteringskriteriet<br/>Denne kan ændres midlertidigt for hver ny session"
5546
-
5547
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5548
- msgid "Default Sorting Order"
5549
- msgstr "Standard sorteringsorden"
5550
-
5551
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5552
- msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5553
- msgstr "Sæt standard sorteringsorden<br/>Denne kan ændres midlertidigt for hver ny session"
5554
-
5555
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5556
- msgid "Avatar Size (All-userlisting)"
5557
- msgstr "Avatar størrelse (Flere-brugeroversigt)"
5558
-
5559
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5560
- msgid "Set the avatar size on the all-userlisting only"
5561
- msgstr "Sæt avatar størrelsen på kun flere-brugeroversigten "
5562
-
5563
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5564
- msgid "Avatar Size (Single-userlisting)"
5565
- msgstr "Avatar størrelse (enkelt-brugeroversigt)"
5566
-
5567
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5568
- msgid "Set the avatar size on the single-userlisting only"
5569
- msgstr "Sæt avatar størrelsen på kun enkelt-brugeroversigten"
5570
-
5571
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5572
- msgid "Visible only to logged in users?"
5573
- msgstr "Synlig kun for brugere, der er logget ind?"
5574
-
5575
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5576
- msgid "The userlisting will only be visible only to the logged in users"
5577
- msgstr "Brugeroversigten vil kun være synlig for brugere, der er logget ind"
5578
-
5579
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5580
- msgid "Visible to following Roles"
5581
- msgstr "Synlig for følgende roller"
5582
-
5583
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5584
- msgid "The userlisting will only be visible to the following roles"
5585
- msgstr "Brugeroversigten vil kun være synlig for følgende roller"
5586
-
5587
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2275
5588
- msgid "Userlisting Settings"
5589
- msgstr "Opsætning af brugeroversigt"
5590
-
5591
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5592
- msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5593
- msgstr "Du skal aktivere brugeroversigts funktionen inde på fanen \"Moduler\"!"
5594
-
5595
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5596
- msgid "You can find it in the Profile Builder menu."
5597
- msgstr "Du kan finde det i Profile Builder menuen."
5598
-
5599
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
5600
- msgid "No results found!"
5601
  msgstr "Ingen resultater fundet!"
1
+ # Translation of Profile Builder in Danish
2
+ # This file is distributed under the same license as the Profile Builder package.
3
+ msgid ""
4
+ msgstr ""
5
+ "PO-Revision-Date: 2017-05-08 09:42:03+0000\n"
6
+ "MIME-Version: 1.0\n"
7
+ "Content-Type: text/plain; charset=UTF-8\n"
8
+ "Content-Transfer-Encoding: 8bit\n"
9
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
10
+ "X-Generator: GlotPress/0.1\n"
11
+ "Project-Id-Version: Profile Builder\n"
12
+
13
+ #: profile-builder-2.0/admin/general-settings.php:154
14
+ msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
15
+ msgstr ""
16
+
17
+ #: profile-builder-2.0/admin/general-settings.php:146
18
+ msgid "\"Roles Editor\" Activated:"
19
+ msgstr ""
20
+
21
+ #: profile-builder-2.0/features/roles-editor/roles-editor.php:300
22
+ msgid "M j, Y @ G:i"
23
+ msgstr ""
24
+
25
+ #: profile-builder-2.0/front-end/recover.php:117
26
+ msgid "Please enter your email address."
27
+ msgstr ""
28
+
29
+ #: profile-builder-2.0/admin/manage-fields.php:127
30
+ msgid "Specify the format of the date when using Datepicker<br/>Valid options: mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, defaults to mm/dd/yy"
31
+ msgstr ""
32
+
33
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
34
+ msgid "Individual redirects defined in shortcodes; <strong><em>redirect_priority=\"top\"</em></strong> parameter can be added in any shortcode, then that shortcode redirect will have priority over all other redirects."
35
+ msgstr ""
36
+
37
+ #: profile-builder-2.0/admin/manage-fields.php:1217
38
+ msgid "If you're interested in displaying different fields in the registration and edit profile forms, please use the Multiple Registration & Edit Profile Forms Modules."
39
+ msgstr ""
40
+
41
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
42
+ msgid "Multiple Registration and Edit Profile form settings Redirects"
43
+ msgstr ""
44
+
45
+ #: profile-builder-2.0/admin/register-version.php:251
46
+ msgid "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %6$sDismiss%7$s</p>"
47
+ msgstr ""
48
+
49
+ #: profile-builder-2.0/admin/register-version.php:246
50
+ msgid "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please %1$sRenew Your Licence%2$s to continue receiving access to product downloads, automatic updates and support. %3$sRenew now and get 40&#37; off %4$s %5$sDismiss%6$s</p>"
51
+ msgstr ""
52
+
53
+ #: profile-builder-2.0/front-end/recover.php:159
54
+ msgid "You are already logged in. You can change your password on the edit profile form."
55
+ msgstr ""
56
+
57
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
58
+ msgid "Your site url will look like this:<br>"
59
+ msgstr ""
60
+
61
+ #: profile-builder-2.0/features/functions.php:909
62
+ msgid "<br><br>You can visit your site at "
63
+ msgstr ""
64
+
65
+ #: profile-builder-2.0/features/functions.php:896
66
+ msgid "<br><br>Also, you will be able to visit your site at "
67
+ msgstr ""
68
+
69
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
70
+ msgid "Privacy: I would like my site to appear in search engines, and in public listings around this network."
71
+ msgstr ""
72
+
73
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
74
+ msgid "Site Title"
75
+ msgstr ""
76
+
77
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
78
+ msgid "Site URL slug"
79
+ msgstr ""
80
+
81
+ #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
82
+ msgid "Yes, I'd like to create a new site"
83
+ msgstr ""
84
+
85
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
86
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:118
87
+ msgid "Blog URL"
88
+ msgstr ""
89
+
90
+ #: profile-builder-2.0/admin/admin-functions.php:44
91
+ msgid "Blog Details - only appears on the Registration page!"
92
+ msgstr ""
93
+
94
+ #: profile-builder-2.0/admin/manage-fields.php:222
95
+ msgid "Blog Details"
96
+ msgstr ""
97
+
98
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:239
99
+ msgid "Allow your users to have <strong>paid accounts with Profile Builder</strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
100
+ msgstr ""
101
+
102
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
103
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
104
+ msgstr ""
105
+
106
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
107
+ msgid "View Map"
108
+ msgstr ""
109
+
110
+ #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
111
+ #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
112
+ #: pb-add-on-woocommerce/index.php:493
113
+ msgid "Address line 2"
114
+ msgstr ""
115
+
116
+ #: pb-add-on-woocommerce/index.php:256
117
+ msgid "Billing Fields"
118
+ msgstr ""
119
+
120
+ #: pb-add-on-woocommerce/index.php:256
121
+ msgid "Select which WooCommerce Billing fields to display to the user ( drag and drop to re-order ) and which should be required"
122
+ msgstr ""
123
+
124
+ #: pb-add-on-woocommerce/index.php:257
125
+ msgid "Billing Fields Order"
126
+ msgstr ""
127
+
128
+ #: pb-add-on-woocommerce/index.php:257
129
+ msgid "Save the billing fields order from the billing fields checkboxes"
130
+ msgstr ""
131
+
132
+ #: pb-add-on-woocommerce/index.php:258
133
+ msgid "Billing Fields Name"
134
+ msgstr ""
135
+
136
+ #: pb-add-on-woocommerce/index.php:258
137
+ msgid "Save the billing fields names"
138
+ msgstr ""
139
+
140
+ #: pb-add-on-woocommerce/index.php:275
141
+ msgid "Shipping Fields"
142
+ msgstr ""
143
+
144
+ #: pb-add-on-woocommerce/index.php:275
145
+ msgid "Select which WooCommerce Shipping fields to display to the user ( drag and drop to re-order ) and which should be required"
146
+ msgstr ""
147
+
148
+ #: pb-add-on-woocommerce/index.php:276
149
+ msgid "Shipping Fields Order"
150
+ msgstr ""
151
+
152
+ #: pb-add-on-woocommerce/index.php:276
153
+ msgid "Save the shipping fields order from the billing fields checkboxes"
154
+ msgstr ""
155
+
156
+ #: pb-add-on-woocommerce/index.php:277
157
+ msgid "Shipping Fields Name"
158
+ msgstr ""
159
+
160
+ #: pb-add-on-woocommerce/index.php:277
161
+ msgid "Save the shipping fields names"
162
+ msgstr ""
163
+
164
+ #: pb-add-on-woocommerce/index.php:305
165
+ msgid "Field Name"
166
+ msgstr ""
167
+
168
+ #: pb-add-on-woocommerce/index.php:369
169
+ msgid "Click to edit "
170
+ msgstr ""
171
+
172
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
173
+ msgid "is not a valid phone number."
174
+ msgstr ""
175
+
176
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
177
+ msgid "is not a number."
178
+ msgstr ""
179
+
180
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
181
+ msgid "must be a multiplier of "
182
+ msgstr ""
183
+
184
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
185
+ msgid "must be a greater than or equal to "
186
+ msgstr ""
187
+
188
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
189
+ msgid "must be less than or equal to "
190
+ msgstr ""
191
+
192
+ #: profile-builder-2.0/admin/add-ons.php:103
193
+ msgid "Available in Hobbyist and Pro Versions"
194
+ msgstr ""
195
+
196
+ #: profile-builder-2.0/admin/add-ons.php:105
197
+ msgid "Available in All Versions"
198
+ msgstr ""
199
+
200
+ #: profile-builder-2.0/admin/add-ons.php:148
201
+ msgid "Learn More"
202
+ msgstr ""
203
+
204
+ #: profile-builder-2.0/admin/basic-info.php:99
205
+ msgid "Timepicker"
206
+ msgstr ""
207
+
208
+ #: profile-builder-2.0/admin/basic-info.php:100
209
+ msgid "Colorpicker"
210
+ msgstr ""
211
+
212
+ #: profile-builder-2.0/admin/basic-info.php:103
213
+ msgid "Currency Select"
214
+ msgstr ""
215
+
216
+ #: profile-builder-2.0/admin/basic-info.php:109
217
+ msgid "Number"
218
+ msgstr ""
219
+
220
+ #: profile-builder-2.0/admin/basic-info.php:114
221
+ msgid "Validation"
222
+ msgstr ""
223
+
224
+ #: profile-builder-2.0/admin/basic-info.php:115
225
+ msgid "Map"
226
+ msgstr ""
227
+
228
+ #: profile-builder-2.0/admin/basic-info.php:116
229
+ msgid "HTML"
230
+ msgstr ""
231
+
232
+ #: profile-builder-2.0/admin/basic-info.php:162
233
+ #: profile-builder-2.0/modules/modules.php:117
234
+ msgid "Repeater Fields"
235
+ msgstr ""
236
+
237
+ #: profile-builder-2.0/admin/basic-info.php:163
238
+ msgid "Set up a repeating group of fields on register and edit profile forms. Limit the number of repeated groups for each user role."
239
+ msgstr ""
240
+
241
+ #: profile-builder-2.0/admin/general-settings.php:59
242
+ msgid "This works with front-end forms only. Recommended to redirect WP default registration to a Profile Builder one using \"Custom Redirects\" module."
243
+ msgstr ""
244
+
245
+ #: profile-builder-2.0/admin/manage-fields.php:120
246
+ msgid "Use this in conjunction with WordPress functions to display the value in the page of your choosing<br/>Auto-completed but in some cases editable (in which case it must be unique)<br/>Changing this might take long in case of a very big user-count"
247
+ msgstr ""
248
+
249
+ #: profile-builder-2.0/admin/manage-fields.php:143
250
+ msgid "Show Currency Symbol"
251
+ msgstr ""
252
+
253
+ #: profile-builder-2.0/admin/manage-fields.php:143
254
+ msgid "Whether the currency symbol should be displayed after the currency name in the select option."
255
+ msgstr ""
256
+
257
+ #: profile-builder-2.0/admin/manage-fields.php:144
258
+ msgid "Show Post Type"
259
+ msgstr ""
260
+
261
+ #: profile-builder-2.0/admin/manage-fields.php:144
262
+ msgid "Posts from what post type will be displayed in the select."
263
+ msgstr ""
264
+
265
+ #: profile-builder-2.0/admin/manage-fields.php:145
266
+ msgid "Allowable Values"
267
+ msgstr ""
268
+
269
+ #: profile-builder-2.0/admin/manage-fields.php:145
270
+ msgid "Enter a comma separated list of possible values. Upon registration if the value provided by the user does not match one of these values, the user will not be registered."
271
+ msgstr ""
272
+
273
+ #: profile-builder-2.0/admin/manage-fields.php:146
274
+ msgid "Error Message"
275
+ msgstr ""
276
+
277
+ #: profile-builder-2.0/admin/manage-fields.php:146
278
+ msgid "Set a custom error message that will be displayed to the user."
279
+ msgstr ""
280
+
281
+ #: profile-builder-2.0/admin/manage-fields.php:147
282
+ msgid "Time Format"
283
+ msgstr ""
284
+
285
+ #: profile-builder-2.0/admin/manage-fields.php:147
286
+ msgid "Specify the time format."
287
+ msgstr ""
288
+
289
+ #: profile-builder-2.0/admin/manage-fields.php:148
290
+ msgid "Google Maps API Key"
291
+ msgstr ""
292
+
293
+ #: profile-builder-2.0/admin/manage-fields.php:148
294
+ msgid "Enter your Google Maps API key ( <a href=\"https://console.developers.google.com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</a> ). If more than one map fields are added to a form the API key from the first map displayed will be used."
295
+ msgstr ""
296
+
297
+ #: profile-builder-2.0/admin/manage-fields.php:149
298
+ msgid "Default Latitude"
299
+ msgstr ""
300
+
301
+ #: profile-builder-2.0/admin/manage-fields.php:149
302
+ msgid "The latitude at which the map should be displayed when no pins are attached."
303
+ msgstr ""
304
+
305
+ #: profile-builder-2.0/admin/manage-fields.php:150
306
+ msgid "Default Longitude"
307
+ msgstr ""
308
+
309
+ #: profile-builder-2.0/admin/manage-fields.php:150
310
+ msgid "The longitude at which the map should be displayed when no pins are attached."
311
+ msgstr ""
312
+
313
+ #: profile-builder-2.0/admin/manage-fields.php:151
314
+ msgid "Default Zoom Level"
315
+ msgstr ""
316
+
317
+ #: profile-builder-2.0/admin/manage-fields.php:151
318
+ msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
319
+ msgstr ""
320
+
321
+ #: profile-builder-2.0/admin/manage-fields.php:152
322
+ msgid "Map Height"
323
+ msgstr ""
324
+
325
+ #: profile-builder-2.0/admin/manage-fields.php:152
326
+ msgid "The height of the map."
327
+ msgstr ""
328
+
329
+ #: profile-builder-2.0/admin/manage-fields.php:154
330
+ msgid "HTML Content"
331
+ msgstr ""
332
+
333
+ #: profile-builder-2.0/admin/manage-fields.php:154
334
+ msgid "Add your HTML (or text) content"
335
+ msgstr ""
336
+
337
+ #: profile-builder-2.0/admin/manage-fields.php:155
338
+ msgid "Phone Format"
339
+ msgstr ""
340
+
341
+ #: profile-builder-2.0/admin/manage-fields.php:155
342
+ msgid "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and spaces."
343
+ msgstr ""
344
+
345
+ #: profile-builder-2.0/admin/manage-fields.php:155
346
+ msgid "Eg. (###) ###-####"
347
+ msgstr ""
348
+
349
+ #: profile-builder-2.0/admin/manage-fields.php:155
350
+ msgid "Empty field won't check for correct phone number."
351
+ msgstr ""
352
+
353
+ #: profile-builder-2.0/admin/manage-fields.php:156
354
+ msgid "Heading Tag"
355
+ msgstr ""
356
+
357
+ #: profile-builder-2.0/admin/manage-fields.php:156
358
+ msgid "Change heading field size on front-end forms"
359
+ msgstr ""
360
+
361
+ #: profile-builder-2.0/admin/manage-fields.php:157
362
+ msgid "Min Number Value"
363
+ msgstr ""
364
+
365
+ #: profile-builder-2.0/admin/manage-fields.php:157
366
+ msgid "Min allowed number value (0 to allow only positive numbers)"
367
+ msgstr ""
368
+
369
+ #: profile-builder-2.0/admin/manage-fields.php:157
370
+ msgid "Leave it empty for no min value"
371
+ msgstr ""
372
+
373
+ #: profile-builder-2.0/admin/manage-fields.php:158
374
+ msgid "Max Number Value"
375
+ msgstr ""
376
+
377
+ #: profile-builder-2.0/admin/manage-fields.php:158
378
+ msgid "Max allowed number value (0 to allow only negative numbers)"
379
+ msgstr ""
380
+
381
+ #: profile-builder-2.0/admin/manage-fields.php:158
382
+ msgid "Leave it empty for no max value"
383
+ msgstr ""
384
+
385
+ #: profile-builder-2.0/admin/manage-fields.php:159
386
+ msgid "Number Step Value"
387
+ msgstr ""
388
+
389
+ #: profile-builder-2.0/admin/manage-fields.php:159
390
+ msgid "Step value 1 to allow only integers, 0.1 to allow integers and numbers with 1 decimal"
391
+ msgstr ""
392
+
393
+ #: profile-builder-2.0/admin/manage-fields.php:159
394
+ msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
395
+ msgstr ""
396
+
397
+ #: profile-builder-2.0/admin/manage-fields.php:159
398
+ msgid "You can also use step value to specify the legal number intervals (eg. step value 2 will allow only -4, -2, 0, 2 and so on)"
399
+ msgstr ""
400
+
401
+ #: profile-builder-2.0/admin/manage-fields.php:159
402
+ msgid "Leave it empty for no restriction"
403
+ msgstr ""
404
+
405
+ #: profile-builder-2.0/admin/manage-fields.php:564
406
+ msgid "Albania Lek"
407
+ msgstr ""
408
+
409
+ #: profile-builder-2.0/admin/manage-fields.php:565
410
+ msgid "Afghanistan Afghani"
411
+ msgstr ""
412
+
413
+ #: profile-builder-2.0/admin/manage-fields.php:566
414
+ msgid "Argentina Peso"
415
+ msgstr ""
416
+
417
+ #: profile-builder-2.0/admin/manage-fields.php:567
418
+ msgid "Aruba Guilder"
419
+ msgstr ""
420
+
421
+ #: profile-builder-2.0/admin/manage-fields.php:568
422
+ msgid "Australia Dollar"
423
+ msgstr ""
424
+
425
+ #: profile-builder-2.0/admin/manage-fields.php:569
426
+ msgid "Azerbaijan New Manat"
427
+ msgstr ""
428
+
429
+ #: profile-builder-2.0/admin/manage-fields.php:570
430
+ msgid "Bahamas Dollar"
431
+ msgstr ""
432
+
433
+ #: profile-builder-2.0/admin/manage-fields.php:571
434
+ msgid "Barbados Dollar"
435
+ msgstr ""
436
+
437
+ #: profile-builder-2.0/admin/manage-fields.php:572
438
+ msgid "Bangladeshi taka"
439
+ msgstr ""
440
+
441
+ #: profile-builder-2.0/admin/manage-fields.php:573
442
+ msgid "Belarus Ruble"
443
+ msgstr ""
444
+
445
+ #: profile-builder-2.0/admin/manage-fields.php:574
446
+ msgid "Belize Dollar"
447
+ msgstr ""
448
+
449
+ #: profile-builder-2.0/admin/manage-fields.php:575
450
+ msgid "Bermuda Dollar"
451
+ msgstr ""
452
+
453
+ #: profile-builder-2.0/admin/manage-fields.php:576
454
+ msgid "Bolivia Boliviano"
455
+ msgstr ""
456
+
457
+ #: profile-builder-2.0/admin/manage-fields.php:577
458
+ msgid "Bosnia and Herzegovina Convertible Marka"
459
+ msgstr ""
460
+
461
+ #: profile-builder-2.0/admin/manage-fields.php:578
462
+ msgid "Botswana Pula"
463
+ msgstr ""
464
+
465
+ #: profile-builder-2.0/admin/manage-fields.php:579
466
+ msgid "Bulgaria Lev"
467
+ msgstr ""
468
+
469
+ #: profile-builder-2.0/admin/manage-fields.php:580
470
+ msgid "Brazil Real"
471
+ msgstr ""
472
+
473
+ #: profile-builder-2.0/admin/manage-fields.php:581
474
+ msgid "Brunei Darussalam Dollar"
475
+ msgstr ""
476
+
477
+ #: profile-builder-2.0/admin/manage-fields.php:582
478
+ msgid "Cambodia Riel"
479
+ msgstr ""
480
+
481
+ #: profile-builder-2.0/admin/manage-fields.php:583
482
+ msgid "Canada Dollar"
483
+ msgstr ""
484
+
485
+ #: profile-builder-2.0/admin/manage-fields.php:584
486
+ msgid "Cayman Islands Dollar"
487
+ msgstr ""
488
+
489
+ #: profile-builder-2.0/admin/manage-fields.php:585
490
+ msgid "Chile Peso"
491
+ msgstr ""
492
+
493
+ #: profile-builder-2.0/admin/manage-fields.php:586
494
+ msgid "China Yuan Renminbi"
495
+ msgstr ""
496
+
497
+ #: profile-builder-2.0/admin/manage-fields.php:587
498
+ msgid "Colombia Peso"
499
+ msgstr ""
500
+
501
+ #: profile-builder-2.0/admin/manage-fields.php:588
502
+ msgid "Costa Rica Colon"
503
+ msgstr ""
504
+
505
+ #: profile-builder-2.0/admin/manage-fields.php:589
506
+ msgid "Croatia Kuna"
507
+ msgstr ""
508
+
509
+ #: profile-builder-2.0/admin/manage-fields.php:590
510
+ msgid "Cuba Peso"
511
+ msgstr ""
512
+
513
+ #: profile-builder-2.0/admin/manage-fields.php:591
514
+ msgid "Czech Republic Koruna"
515
+ msgstr ""
516
+
517
+ #: profile-builder-2.0/admin/manage-fields.php:592
518
+ msgid "Denmark Krone"
519
+ msgstr ""
520
+
521
+ #: profile-builder-2.0/admin/manage-fields.php:593
522
+ msgid "Dominican Republic Peso"
523
+ msgstr ""
524
+
525
+ #: profile-builder-2.0/admin/manage-fields.php:594
526
+ msgid "East Caribbean Dollar"
527
+ msgstr ""
528
+
529
+ #: profile-builder-2.0/admin/manage-fields.php:595
530
+ msgid "Egypt Pound"
531
+ msgstr ""
532
+
533
+ #: profile-builder-2.0/admin/manage-fields.php:596
534
+ msgid "El Salvador Colon"
535
+ msgstr ""
536
+
537
+ #: profile-builder-2.0/admin/manage-fields.php:597
538
+ msgid "Estonia Kroon"
539
+ msgstr ""
540
+
541
+ #: profile-builder-2.0/admin/manage-fields.php:598
542
+ msgid "Euro"
543
+ msgstr ""
544
+
545
+ #: profile-builder-2.0/admin/manage-fields.php:599
546
+ msgid "Falkland Islands (Malvinas) Pound"
547
+ msgstr ""
548
+
549
+ #: profile-builder-2.0/admin/manage-fields.php:600
550
+ msgid "Fiji Dollar"
551
+ msgstr ""
552
+
553
+ #: profile-builder-2.0/admin/manage-fields.php:601
554
+ msgid "Ghana Cedis"
555
+ msgstr ""
556
+
557
+ #: profile-builder-2.0/admin/manage-fields.php:602
558
+ msgid "Gibraltar Pound"
559
+ msgstr ""
560
+
561
+ #: profile-builder-2.0/admin/manage-fields.php:603
562
+ msgid "Guatemala Quetzal"
563
+ msgstr ""
564
+
565
+ #: profile-builder-2.0/admin/manage-fields.php:604
566
+ msgid "Guernsey Pound"
567
+ msgstr ""
568
+
569
+ #: profile-builder-2.0/admin/manage-fields.php:605
570
+ msgid "Guyana Dollar"
571
+ msgstr ""
572
+
573
+ #: profile-builder-2.0/admin/manage-fields.php:606
574
+ msgid "Honduras Lempira"
575
+ msgstr ""
576
+
577
+ #: profile-builder-2.0/admin/manage-fields.php:607
578
+ msgid "Hong Kong Dollar"
579
+ msgstr ""
580
+
581
+ #: profile-builder-2.0/admin/manage-fields.php:608
582
+ msgid "Hungary Forint"
583
+ msgstr ""
584
+
585
+ #: profile-builder-2.0/admin/manage-fields.php:609
586
+ msgid "Iceland Krona"
587
+ msgstr ""
588
+
589
+ #: profile-builder-2.0/admin/manage-fields.php:610
590
+ msgid "India Rupee"
591
+ msgstr ""
592
+
593
+ #: profile-builder-2.0/admin/manage-fields.php:611
594
+ msgid "Indonesia Rupiah"
595
+ msgstr ""
596
+
597
+ #: profile-builder-2.0/admin/manage-fields.php:612
598
+ msgid "Iran Rial"
599
+ msgstr ""
600
+
601
+ #: profile-builder-2.0/admin/manage-fields.php:613
602
+ msgid "Isle of Man Pound"
603
+ msgstr ""
604
+
605
+ #: profile-builder-2.0/admin/manage-fields.php:614
606
+ msgid "Israel Shekel"
607
+ msgstr ""
608
+
609
+ #: profile-builder-2.0/admin/manage-fields.php:615
610
+ msgid "Jamaica Dollar"
611
+ msgstr ""
612
+
613
+ #: profile-builder-2.0/admin/manage-fields.php:616
614
+ msgid "Japan Yen"
615
+ msgstr ""
616
+
617
+ #: profile-builder-2.0/admin/manage-fields.php:617
618
+ msgid "Jersey Pound"
619
+ msgstr ""
620
+
621
+ #: profile-builder-2.0/admin/manage-fields.php:618
622
+ msgid "Kazakhstan Tenge"
623
+ msgstr ""
624
+
625
+ #: profile-builder-2.0/admin/manage-fields.php:619
626
+ msgid "Korea (North) Won"
627
+ msgstr ""
628
+
629
+ #: profile-builder-2.0/admin/manage-fields.php:620
630
+ msgid "Korea (South) Won"
631
+ msgstr ""
632
+
633
+ #: profile-builder-2.0/admin/manage-fields.php:621
634
+ msgid "Kyrgyzstan Som"
635
+ msgstr ""
636
+
637
+ #: profile-builder-2.0/admin/manage-fields.php:622
638
+ msgid "Laos Kip"
639
+ msgstr ""
640
+
641
+ #: profile-builder-2.0/admin/manage-fields.php:623
642
+ msgid "Latvia Lat"
643
+ msgstr ""
644
+
645
+ #: profile-builder-2.0/admin/manage-fields.php:624
646
+ msgid "Lebanon Pound"
647
+ msgstr ""
648
+
649
+ #: profile-builder-2.0/admin/manage-fields.php:625
650
+ msgid "Liberia Dollar"
651
+ msgstr ""
652
+
653
+ #: profile-builder-2.0/admin/manage-fields.php:626
654
+ msgid "Lithuania Litas"
655
+ msgstr ""
656
+
657
+ #: profile-builder-2.0/admin/manage-fields.php:627
658
+ msgid "Macedonia Denar"
659
+ msgstr ""
660
+
661
+ #: profile-builder-2.0/admin/manage-fields.php:628
662
+ msgid "Malaysia Ringgit"
663
+ msgstr ""
664
+
665
+ #: profile-builder-2.0/admin/manage-fields.php:629
666
+ msgid "Mauritius Rupee"
667
+ msgstr ""
668
+
669
+ #: profile-builder-2.0/admin/manage-fields.php:630
670
+ msgid "Mexico Peso"
671
+ msgstr ""
672
+
673
+ #: profile-builder-2.0/admin/manage-fields.php:631
674
+ msgid "Mongolia Tughrik"
675
+ msgstr ""
676
+
677
+ #: profile-builder-2.0/admin/manage-fields.php:632
678
+ msgid "Mozambique Metical"
679
+ msgstr ""
680
+
681
+ #: profile-builder-2.0/admin/manage-fields.php:633
682
+ msgid "Namibia Dollar"
683
+ msgstr ""
684
+
685
+ #: profile-builder-2.0/admin/manage-fields.php:634
686
+ msgid "Nepal Rupee"
687
+ msgstr ""
688
+
689
+ #: profile-builder-2.0/admin/manage-fields.php:635
690
+ msgid "Netherlands Antilles Guilder"
691
+ msgstr ""
692
+
693
+ #: profile-builder-2.0/admin/manage-fields.php:636
694
+ msgid "New Zealand Dollar"
695
+ msgstr ""
696
+
697
+ #: profile-builder-2.0/admin/manage-fields.php:637
698
+ msgid "Nicaragua Cordoba"
699
+ msgstr ""
700
+
701
+ #: profile-builder-2.0/admin/manage-fields.php:638
702
+ msgid "Nigeria Naira"
703
+ msgstr ""
704
+
705
+ #: profile-builder-2.0/admin/manage-fields.php:639
706
+ msgid "Norway Krone"
707
+ msgstr ""
708
+
709
+ #: profile-builder-2.0/admin/manage-fields.php:640
710
+ msgid "Oman Rial"
711
+ msgstr ""
712
+
713
+ #: profile-builder-2.0/admin/manage-fields.php:641
714
+ msgid "Pakistan Rupee"
715
+ msgstr ""
716
+
717
+ #: profile-builder-2.0/admin/manage-fields.php:642
718
+ msgid "Panama Balboa"
719
+ msgstr ""
720
+
721
+ #: profile-builder-2.0/admin/manage-fields.php:643
722
+ msgid "Paraguay Guarani"
723
+ msgstr ""
724
+
725
+ #: profile-builder-2.0/admin/manage-fields.php:644
726
+ msgid "Peru Nuevo Sol"
727
+ msgstr ""
728
+
729
+ #: profile-builder-2.0/admin/manage-fields.php:645
730
+ msgid "Philippines Peso"
731
+ msgstr ""
732
+
733
+ #: profile-builder-2.0/admin/manage-fields.php:646
734
+ msgid "Poland Zloty"
735
+ msgstr ""
736
+
737
+ #: profile-builder-2.0/admin/manage-fields.php:647
738
+ msgid "Qatar Riyal"
739
+ msgstr ""
740
+
741
+ #: profile-builder-2.0/admin/manage-fields.php:648
742
+ msgid "Romania New Leu"
743
+ msgstr ""
744
+
745
+ #: profile-builder-2.0/admin/manage-fields.php:649
746
+ msgid "Russia Ruble"
747
+ msgstr ""
748
+
749
+ #: profile-builder-2.0/admin/manage-fields.php:650
750
+ msgid "Saint Helena Pound"
751
+ msgstr ""
752
+
753
+ #: profile-builder-2.0/admin/manage-fields.php:651
754
+ msgid "Saudi Arabia Riyal"
755
+ msgstr ""
756
+
757
+ #: profile-builder-2.0/admin/manage-fields.php:652
758
+ msgid "Serbia Dinar"
759
+ msgstr ""
760
+
761
+ #: profile-builder-2.0/admin/manage-fields.php:653
762
+ msgid "Seychelles Rupee"
763
+ msgstr ""
764
+
765
+ #: profile-builder-2.0/admin/manage-fields.php:654
766
+ msgid "Singapore Dollar"
767
+ msgstr ""
768
+
769
+ #: profile-builder-2.0/admin/manage-fields.php:655
770
+ msgid "Solomon Islands Dollar"
771
+ msgstr ""
772
+
773
+ #: profile-builder-2.0/admin/manage-fields.php:656
774
+ msgid "Somalia Shilling"
775
+ msgstr ""
776
+
777
+ #: profile-builder-2.0/admin/manage-fields.php:657
778
+ msgid "South Africa Rand"
779
+ msgstr ""
780
+
781
+ #: profile-builder-2.0/admin/manage-fields.php:658
782
+ msgid "Sri Lanka Rupee"
783
+ msgstr ""
784
+
785
+ #: profile-builder-2.0/admin/manage-fields.php:659
786
+ msgid "Sweden Krona"
787
+ msgstr ""
788
+
789
+ #: profile-builder-2.0/admin/manage-fields.php:660
790
+ msgid "Switzerland Franc"
791
+ msgstr ""
792
+
793
+ #: profile-builder-2.0/admin/manage-fields.php:661
794
+ msgid "Suriname Dollar"
795
+ msgstr ""
796
+
797
+ #: profile-builder-2.0/admin/manage-fields.php:662
798
+ msgid "Syria Pound"
799
+ msgstr ""
800
+
801
+ #: profile-builder-2.0/admin/manage-fields.php:663
802
+ msgid "Taiwan New Dollar"
803
+ msgstr ""
804
+
805
+ #: profile-builder-2.0/admin/manage-fields.php:664
806
+ msgid "Thailand Baht"
807
+ msgstr ""
808
+
809
+ #: profile-builder-2.0/admin/manage-fields.php:665
810
+ msgid "Trinidad and Tobago Dollar"
811
+ msgstr ""
812
+
813
+ #: profile-builder-2.0/admin/manage-fields.php:666
814
+ #: profile-builder-2.0/admin/manage-fields.php:667
815
+ msgid "Turkey Lira"
816
+ msgstr ""
817
+
818
+ #: profile-builder-2.0/admin/manage-fields.php:668
819
+ msgid "Tuvalu Dollar"
820
+ msgstr ""
821
+
822
+ #: profile-builder-2.0/admin/manage-fields.php:669
823
+ msgid "Ukraine Hryvna"
824
+ msgstr ""
825
+
826
+ #: profile-builder-2.0/admin/manage-fields.php:670
827
+ msgid "United Kingdom Pound"
828
+ msgstr ""
829
+
830
+ #: profile-builder-2.0/admin/manage-fields.php:671
831
+ msgid "Uganda Shilling"
832
+ msgstr ""
833
+
834
+ #: profile-builder-2.0/admin/manage-fields.php:672
835
+ msgid "US Dollar"
836
+ msgstr ""
837
+
838
+ #: profile-builder-2.0/admin/manage-fields.php:673
839
+ msgid "Uruguay Peso"
840
+ msgstr ""
841
+
842
+ #: profile-builder-2.0/admin/manage-fields.php:674
843
+ msgid "Uzbekistan Som"
844
+ msgstr ""
845
+
846
+ #: profile-builder-2.0/admin/manage-fields.php:675
847
+ msgid "Venezuela Bolivar"
848
+ msgstr ""
849
+
850
+ #: profile-builder-2.0/admin/manage-fields.php:676
851
+ msgid "Viet Nam Dong"
852
+ msgstr ""
853
+
854
+ #: profile-builder-2.0/admin/manage-fields.php:677
855
+ msgid "Yemen Rial"
856
+ msgstr ""
857
+
858
+ #: profile-builder-2.0/admin/manage-fields.php:678
859
+ msgid "Zimbabwe Dollar"
860
+ msgstr ""
861
+
862
+ #: profile-builder-2.0/admin/manage-fields.php:1097
863
+ msgid "The meta-name can only contain lowercase letters, numbers, _ , - and no spaces.\n"
864
+ msgstr ""
865
+
866
+ #: profile-builder-2.0/admin/manage-fields.php:1314
867
+ msgid "Search Location"
868
+ msgstr ""
869
+
870
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
871
+ msgid "You are not allowed to do this."
872
+ msgstr ""
873
+
874
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
875
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
876
+ msgid "Search Users"
877
+ msgstr ""
878
+
879
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
880
+ msgid "Conditional Logic"
881
+ msgstr ""
882
+
883
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
884
+ msgid "Conditional Rules"
885
+ msgstr ""
886
+
887
+ #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
888
+ msgid "This field has conditional logic enabled."
889
+ msgstr ""
890
+
891
+ #: profile-builder-2.0/features/functions.php:685
892
+ msgid "Incorrect phone number"
893
+ msgstr ""
894
+
895
+ #: profile-builder-2.0/front-end/class-formbuilder.php:124
896
+ msgid "The role of the created user set to the default role. Only an administrator can register a user with the role assigned to this form."
897
+ msgstr ""
898
+
899
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
900
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
901
+ msgid "Please add the Google Maps API key for this field."
902
+ msgstr ""
903
+
904
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
905
+ msgid "Something went wrong. Please try again."
906
+ msgstr ""
907
+
908
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
909
+ msgid "Please enter numbers only"
910
+ msgstr ""
911
+
912
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
913
+ msgid "Value must be a multiplier of %1$s"
914
+ msgstr ""
915
+
916
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
917
+ msgid "Value must be greater than or equal to %1$s"
918
+ msgstr ""
919
+
920
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
921
+ msgid "Value must be less than or equal to %1$s"
922
+ msgstr ""
923
+
924
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
925
+ msgid "Required phone number format: "
926
+ msgstr ""
927
+
928
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
929
+ msgid "Bolivia, __( Plurinational State of"
930
+ msgstr ""
931
+
932
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
933
+ msgid "Bonaire, __( Sint Eustatius and Saba"
934
+ msgstr ""
935
+
936
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
937
+ msgid "Brunei Darussalam"
938
+ msgstr ""
939
+
940
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
941
+ msgid "Cabo Verde"
942
+ msgstr ""
943
+
944
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
945
+ msgid "Cocos (Keeling) Islands"
946
+ msgstr ""
947
+
948
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
949
+ msgid "Congo"
950
+ msgstr ""
951
+
952
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
953
+ msgid "Congo, __( the Democratic Republic of the"
954
+ msgstr ""
955
+
956
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
957
+ msgid "Cote dIvoire"
958
+ msgstr ""
959
+
960
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
961
+ msgid "Falkland Islands (Malvinas)"
962
+ msgstr ""
963
+
964
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
965
+ msgid "Holy See (Vatican City State)"
966
+ msgstr ""
967
+
968
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
969
+ msgid "Iran, __( Islamic Republic of"
970
+ msgstr ""
971
+
972
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
973
+ msgid "Korea, __( Democratic Peoples Republic of"
974
+ msgstr ""
975
+
976
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
977
+ msgid "Korea, __( Republic of"
978
+ msgstr ""
979
+
980
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
981
+ msgid "Lao Peoples Democratic Republic"
982
+ msgstr ""
983
+
984
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
985
+ msgid "Macedonia, __( the former Yugoslav Republic of"
986
+ msgstr ""
987
+
988
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
989
+ msgid "Micronesia, __( Federated States of"
990
+ msgstr ""
991
+
992
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
993
+ msgid "Moldova, __( Republic of"
994
+ msgstr ""
995
+
996
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
997
+ msgid "Palestine, __( State of"
998
+ msgstr ""
999
+
1000
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1001
+ msgid "Russian Federation"
1002
+ msgstr ""
1003
+
1004
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1005
+ msgid "Saint Helena, __( Ascension and Tristan da Cunha"
1006
+ msgstr ""
1007
+
1008
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1009
+ msgid "Saint Martin (French part)"
1010
+ msgstr ""
1011
+
1012
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1013
+ msgid "Sint Maarten (Dutch part)"
1014
+ msgstr ""
1015
+
1016
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1017
+ msgid "Syrian Arab Republic"
1018
+ msgstr ""
1019
+
1020
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1021
+ msgid "Taiwan, __( Province of China"
1022
+ msgstr ""
1023
+
1024
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1025
+ msgid "Tanzania, __( United Republic of"
1026
+ msgstr ""
1027
+
1028
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1029
+ msgid "Timor-Leste"
1030
+ msgstr ""
1031
+
1032
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1033
+ msgid "Venezuela, __( Bolivarian Republic of"
1034
+ msgstr ""
1035
+
1036
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1037
+ msgid "Viet Nam"
1038
+ msgstr ""
1039
+
1040
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1041
+ msgid "Virgin Islands, __( British"
1042
+ msgstr ""
1043
+
1044
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1045
+ msgid "Virgin Islands, __( U.S."
1046
+ msgstr ""
1047
+
1048
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
1049
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:186
1050
+ msgid "User Fields Tags"
1051
+ msgstr ""
1052
+
1053
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479
1054
+ msgid "The users selected password at signup"
1055
+ msgstr ""
1056
+
1057
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
1058
+ msgid "[{{site_name}}] Notice of Email Change"
1059
+ msgstr ""
1060
+
1061
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
1062
+ msgid "Changed Email Address Notification"
1063
+ msgstr ""
1064
+
1065
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1066
+ msgid "Limit"
1067
+ msgstr ""
1068
+
1069
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1070
+ msgid "Enable limit to the number of fields to be generated by users in front end forms "
1071
+ msgstr ""
1072
+
1073
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1074
+ msgid "General Limit"
1075
+ msgstr ""
1076
+
1077
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1078
+ msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
1079
+ msgstr ""
1080
+
1081
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1082
+ msgid "Limit reached message"
1083
+ msgstr ""
1084
+
1085
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1086
+ msgid "The maximum number of fields has been reached."
1087
+ msgstr ""
1088
+
1089
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1090
+ msgid "The popup message to display when the limit of repeater groups is reached."
1091
+ msgstr ""
1092
+
1093
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1094
+ msgid "Limit per Role"
1095
+ msgstr ""
1096
+
1097
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1098
+ msgid "Leave 0 for unlimited."
1099
+ msgstr ""
1100
+
1101
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1102
+ msgid "Repeated field group"
1103
+ msgstr ""
1104
+
1105
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1106
+ msgid "Manage field or group of fields that will be repeatable."
1107
+ msgstr ""
1108
+
1109
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1110
+ msgid "Edit field group"
1111
+ msgstr ""
1112
+
1113
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
1114
+ msgid "Repeatable fields saved!"
1115
+ msgstr ""
1116
+
1117
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
1118
+ #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
1119
+ msgid "Please enter a unique field title.\n"
1120
+ msgstr ""
1121
+
1122
+ #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
1123
+ msgid "Are you sure you want to delete this?"
1124
+ msgstr ""
1125
+
1126
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:192
1127
+ msgid "Sort Tags"
1128
+ msgstr ""
1129
+
1130
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:201
1131
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2308
1132
+ msgid "Faceted Menus"
1133
+ msgstr ""
1134
+
1135
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:202
1136
+ msgid "User Count"
1137
+ msgstr ""
1138
+
1139
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1553
1140
+ msgid "Show All"
1141
+ msgstr ""
1142
+
1143
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1144
+ msgid "No options available"
1145
+ msgstr ""
1146
+
1147
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
1148
+ msgid "Remove All Filters"
1149
+ msgstr ""
1150
+
1151
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1152
+ msgid "Label"
1153
+ msgstr ""
1154
+
1155
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1156
+ msgid "Choose the facet name that appears on the frontend"
1157
+ msgstr ""
1158
+
1159
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1160
+ msgid "Facet Type"
1161
+ msgstr ""
1162
+
1163
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1164
+ msgid "Choose the facet menu type"
1165
+ msgstr ""
1166
+
1167
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1168
+ msgid "Facet Meta"
1169
+ msgstr ""
1170
+
1171
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1172
+ msgid "Choose the meta field for the facet menu"
1173
+ msgstr ""
1174
+
1175
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1176
+ msgid "Behaviour"
1177
+ msgstr ""
1178
+
1179
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1180
+ msgid "Narrow the results"
1181
+ msgstr ""
1182
+
1183
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1184
+ msgid "Expand the results"
1185
+ msgstr ""
1186
+
1187
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1188
+ msgid "Choose how multiple selections affect the results"
1189
+ msgstr ""
1190
+
1191
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1192
+ msgid "Visible choices"
1193
+ msgstr ""
1194
+
1195
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1196
+ msgid "Show a toggle link after this many choices. Leave blank for all"
1197
+ msgstr ""
1198
+
1199
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1200
+ msgid "Search Fields"
1201
+ msgstr ""
1202
+
1203
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1204
+ msgid "Choose the fields in which the Search Field will look in"
1205
+ msgstr ""
1206
+
1207
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2330
1208
+ msgid "Search Settings"
1209
+ msgstr ""
1210
+
1211
+ #: pb-add-on-woocommerce/billing-fields.php:8
1212
+ #: pb-add-on-woocommerce/shipping-fields.php:8
1213
+ msgid "Company Name"
1214
+ msgstr "Firmanavn"
1215
+
1216
+ #: pb-add-on-woocommerce/billing-fields.php:9
1217
+ #: pb-add-on-woocommerce/shipping-fields.php:9
1218
+ msgid "Address"
1219
+ msgstr "Adresse"
1220
+
1221
+ #: pb-add-on-woocommerce/billing-fields.php:5
1222
+ #: pb-add-on-woocommerce/shipping-fields.php:5
1223
+ msgid "Country"
1224
+ msgstr "Land"
1225
+
1226
+ #: pb-add-on-woocommerce/billing-fields.php:11
1227
+ #: pb-add-on-woocommerce/shipping-fields.php:11
1228
+ msgid "Town / City"
1229
+ msgstr ""
1230
+
1231
+ #: pb-add-on-woocommerce/billing-fields.php:12
1232
+ #: pb-add-on-woocommerce/shipping-fields.php:12
1233
+ msgid "State / County"
1234
+ msgstr "Stat"
1235
+
1236
+ #: pb-add-on-woocommerce/billing-fields.php:13
1237
+ #: pb-add-on-woocommerce/shipping-fields.php:13
1238
+ msgid "Postcode / Zip"
1239
+ msgstr "Postnr"
1240
+
1241
+ #: pb-add-on-woocommerce/billing-fields.php:14
1242
+ msgid "Email Address"
1243
+ msgstr "Email"
1244
+
1245
+ #: pb-add-on-woocommerce/billing-fields.php:15
1246
+ msgid "Phone"
1247
+ msgstr "Telefon"
1248
+
1249
+ #: pb-add-on-woocommerce/billing-fields.php:278
1250
+ msgid "Ship to a different address?"
1251
+ msgstr "Send til anden adresse"
1252
+
1253
+ #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1254
+ msgid "Billing Address"
1255
+ msgstr "Fakturerings adresse"
1256
+
1257
+ #: pb-add-on-woocommerce/index.php:169
1258
+ msgid "Displays customer billing fields in front-end. "
1259
+ msgstr "Se kunde faktureringsfelter i front-end"
1260
+
1261
+ #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1262
+ msgid "Shipping Address"
1263
+ msgstr "Leveringsadresse"
1264
+
1265
+ #: pb-add-on-woocommerce/index.php:173
1266
+ msgid "Displays customer shipping fields in front-end. "
1267
+ msgstr "Se kunde leveringsfelter i front-end"
1268
+
1269
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1270
+ msgid "Display on WooCommerce Checkout"
1271
+ msgstr "Se på WooCommerce betal siden"
1272
+
1273
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1274
+ msgid "Whether the field should be added to the WooCommerce checkout form or not"
1275
+ msgstr ""
1276
+
1277
+ #: pb-add-on-woocommerce/index.php:541
1278
+ msgid "WooCommerce needs to be installed and activated for Profile Builder - WooCommerce Sync Add-on to work!"
1279
+ msgstr "WooCommerce skal installeres ag aktiveret for at Profile Builder - WooCommerce Sync Add-on virker!"
1280
+
1281
+ #: pb-add-on-woocommerce/woosync-page.php:23
1282
+ #: pb-add-on-woocommerce/woosync-page.php:70
1283
+ msgid "WooCommerce Sync"
1284
+ msgstr "WooCommerce Sync"
1285
+
1286
+ #: pb-add-on-woocommerce/woosync-page.php:76
1287
+ msgid "Choose Register form to display on My Account page:"
1288
+ msgstr "Choose Register form to display on My Account page:"
1289
+
1290
+ #: pb-add-on-woocommerce/woosync-page.php:81
1291
+ msgid "Default Register"
1292
+ msgstr "Default Register"
1293
+
1294
+ #: pb-add-on-woocommerce/woosync-page.php:103
1295
+ msgid "Select which Profile Builder Register form to display on My Account page from WooCommerce. <br/> This will also add the Profile Builder Login form to MyAccount page."
1296
+ msgstr ""
1297
+
1298
+ #: pb-add-on-woocommerce/woosync-page.php:110
1299
+ msgid "Choose Edit Profile form to display on My Account page:"
1300
+ msgstr "Choose Edit Profile form to display on My Account page:"
1301
+
1302
+ #: pb-add-on-woocommerce/woosync-page.php:115
1303
+ msgid "Default Edit Profile"
1304
+ msgstr "Standard editerings profil"
1305
+
1306
+ #: pb-add-on-woocommerce/woosync-page.php:137
1307
+ msgid "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1308
+ msgstr "Select which Profile Builder Edit-profile form to display on My Account page from WooCommerce."
1309
+
1310
+ #: profile-builder-2.0/admin/add-ons.php:190
1311
+ msgid "Recommended Plugins"
1312
+ msgstr "Anbefalede plugins"
1313
+
1314
+ #: profile-builder-2.0/admin/add-ons.php:219
1315
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1316
+ msgid "Free"
1317
+ msgstr "Fri"
1318
+
1319
+ #: profile-builder-2.0/admin/add-ons.php:221
1320
+ msgid "Accept user payments, create subscription plans and restrict content on your membership site."
1321
+ msgstr "Accept user payments, create subscription plans and restrict content on your membership site."
1322
+
1323
+ #: profile-builder-2.0/admin/add-ons.php:222
1324
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1325
+ msgid "More Details"
1326
+ msgstr "Flere detaljer"
1327
+
1328
+ #: profile-builder-2.0/admin/add-ons.php:240
1329
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1330
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1331
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1332
+ msgid "Plugin is <strong>inactive</strong>"
1333
+ msgstr "Plugin er <strong>inaktiv</strong>"
1334
+
1335
+ #: profile-builder-2.0/admin/add-ons.php:242
1336
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1337
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1338
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1339
+ msgid "Plugin is <strong>active</strong>"
1340
+ msgstr "Plugin er <strong>aktiv</strong>"
1341
+
1342
+ #: profile-builder-2.0/admin/add-ons.php:256
1343
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1344
+ msgid "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1345
+ msgstr "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
1346
+
1347
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1348
+ msgid "Paid Accounts"
1349
+ msgstr "Betalt konto"
1350
+
1351
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1352
+ msgid "Paid Member Subscriptions - a free WordPress plugin"
1353
+ msgstr "Paid Member Subscriptions - a free WordPress plugin"
1354
+
1355
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1356
+ msgid "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1357
+ msgstr "With the new Subscriptions Field in Profile Builder, your registration forms will allow your users to sign up for paid accounts."
1358
+
1359
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1360
+ msgid "Paid & Free Subscriptions"
1361
+ msgstr "Betalt og fri tilmelding"
1362
+
1363
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1364
+ msgid "Restrict Content"
1365
+ msgstr "Beskyt indhold"
1366
+
1367
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1368
+ msgid "Member Management"
1369
+ msgstr "Medlemsstyring"
1370
+
1371
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1372
+ msgid "Email Templates"
1373
+ msgstr "Email skabeloner"
1374
+
1375
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1376
+ msgid "Account Management"
1377
+ msgstr "Kontostyring"
1378
+
1379
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1380
+ msgid "Subscription Management"
1381
+ msgstr "Tilmeldingsstyring"
1382
+
1383
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1384
+ msgid "Payment Management"
1385
+ msgstr "Betalingsstyring"
1386
+
1387
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1388
+ msgid "Plugin is Active"
1389
+ msgstr "Plugin er aktiv"
1390
+
1391
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1392
+ msgid "Plugin has been activated"
1393
+ msgstr "Plugin er aktiveret"
1394
+
1395
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1396
+ msgid "Plugin has been deactivated."
1397
+ msgstr "Plugin er blevet deaktiveret"
1398
+
1399
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1400
+ msgid "Accept user payments, create subscription plans and restrict content on your website."
1401
+ msgstr "Accepter bruger betaling opret tilmeldings planer og beskyt indhold på din webside."
1402
+
1403
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1404
+ msgid "Step by Step Quick Setup"
1405
+ msgstr "Step by Step Quick Setup"
1406
+
1407
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
1408
+ msgid "To activate your user, please click the following link:<br><br>%s%s%s<br><br>After you activate it you will receive yet *another email* with your login."
1409
+ msgstr ""
1410
+
1411
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1412
+ msgid "After Login"
1413
+ msgstr "Efter logind"
1414
+
1415
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1416
+ msgid "After Logout"
1417
+ msgstr "Efter logud"
1418
+
1419
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1420
+ msgid "After Registration"
1421
+ msgstr "Efter tilmelding"
1422
+
1423
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1424
+ msgid "After Edit Profile"
1425
+ msgstr "Efter brugerprofil opdatering"
1426
+
1427
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1428
+ msgid "After Successful Email Confirmation"
1429
+ msgstr "Efter email bekræftelse"
1430
+
1431
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1432
+ msgid "After Successful Password Reset"
1433
+ msgstr "Efter psssword reset"
1434
+
1435
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1436
+ msgid "Dashboard (redirect users from accessing the dashboard)"
1437
+ msgstr "Dashboard (redirect users from accessing the dashboard)"
1438
+
1439
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1440
+ msgid "User ID"
1441
+ msgstr "Bruger ID"
1442
+
1443
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1444
+ msgid "User ID or Username"
1445
+ msgstr "Bruger ID eller Brugernavn"
1446
+
1447
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1448
+ msgid "User ID / Username"
1449
+ msgstr "Bruger ID / Brugernavn"
1450
+
1451
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1452
+ msgid "Please select and enter the ID or username of your user."
1453
+ msgstr "Vælg og intast ID eller brugernavn på din bruger"
1454
+
1455
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1456
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1457
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1458
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1459
+ msgid "Redirect Type"
1460
+ msgstr "Redirect Type"
1461
+
1462
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1463
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1464
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1465
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1466
+ msgid "Redirect URL"
1467
+ msgstr "Redirect URL"
1468
+
1469
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1470
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1471
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1472
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1473
+ msgid "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1474
+ msgstr "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}}, {{user_nicename}}, {{http_referer}}"
1475
+
1476
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1477
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1478
+ msgid "Individual User Redirects"
1479
+ msgstr "Individual User Redirects"
1480
+
1481
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1482
+ msgid "... Choose"
1483
+ msgstr "... Vælg"
1484
+
1485
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1486
+ msgid "Select a user role."
1487
+ msgstr "Vælg brugerrolle"
1488
+
1489
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1490
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1491
+ msgid "User Role based Redirects"
1492
+ msgstr "Rollebaseret bruger redirects"
1493
+
1494
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1495
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1496
+ msgid "Global Redirects"
1497
+ msgstr "Global Redirects"
1498
+
1499
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1500
+ msgid "Login ( wp_login.php )"
1501
+ msgstr "Logind ( wp_login.php )"
1502
+
1503
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1504
+ msgid "Register ( wp-login.php?action=register )"
1505
+ msgstr "Tilmeld ( wp-login.php?action=register )"
1506
+
1507
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1508
+ msgid "Lost Password ( wp-login.php?action=lostpassword )"
1509
+ msgstr "Mistet kodeord ( wp-login.php?action=lostpassword )"
1510
+
1511
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1512
+ msgid "Author Archive ( http://sitename.com/author/admin )"
1513
+ msgstr "Forfatter arkiv ( http://sitename.com/author/admin )"
1514
+
1515
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1516
+ msgid "Redirect Default WordPress Forms and Pages"
1517
+ msgstr "Redirect Default WordPress Forms and Pages"
1518
+
1519
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1520
+ msgid "How does this work?"
1521
+ msgstr "Hvordan virker dette ?"
1522
+
1523
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1524
+ msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1525
+ msgstr "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1526
+
1527
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1528
+ msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1529
+ msgstr "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1530
+
1531
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1532
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1533
+ msgid "<pre>Redirect</pre><pre>URL</pre>"
1534
+ msgstr "<pre>Redirect</pre><pre>URL</pre>"
1535
+
1536
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1537
+ msgid "These redirects happen after a successful action, like registration or after a successful login."
1538
+ msgstr "These redirects happen after a successful action, like registration or after a successful login."
1539
+
1540
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1541
+ msgid "Which redirect happens depends on the following priority:"
1542
+ msgstr "Which redirect happens depends on the following priority:"
1543
+
1544
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1545
+ msgid "Redirect Default WordPress forms and pages"
1546
+ msgstr "Redirect Default WordPress forms and pages"
1547
+
1548
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
1549
+ msgid "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1550
+ msgstr "With these you can redirect various WordPress forms and pages to pages created with profile builder."
1551
+
1552
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1553
+ msgid "Available tags for dynamic URLs"
1554
+ msgstr "Available tags for dynamic URLs"
1555
+
1556
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
1557
+ msgid "You use the following tags in your URLs to redirect users to various pages."
1558
+ msgstr "You use the following tags in your URLs to redirect users to various pages."
1559
+
1560
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1561
+ msgid "generates a url of the current website homepage."
1562
+ msgstr "generates a url of the current website homepage."
1563
+
1564
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1565
+ msgid "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1566
+ msgstr "in WordPress the <a target='_blank' href='https://codex.wordpress.org/Function_Reference/site_url'>site url</a> can be different then the home url"
1567
+
1568
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1569
+ msgid "the ID of the user"
1570
+ msgstr "Bruger ID "
1571
+
1572
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1573
+ msgid "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1574
+ msgstr "the URL sanitized version of the username, the user nicename can be safely used in URLs since it can't contain special characters or spaces."
1575
+
1576
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
1577
+ msgid "the URL of the previously visited page"
1578
+ msgstr "URL på sidst besøgte side"
1579
+
1580
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
1581
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
1582
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
1583
+ msgid "You can't add duplicate redirects!"
1584
+ msgstr "Du kan ikke oprette duplicate redirects!"
1585
+
1586
+ #: profile-builder-2.0/admin/admin-functions.php:41
1587
+ msgid "Display name publicly as - only appears on the Edit Profile page!"
1588
+ msgstr "Display name publicly as - only appears on the Edit Profile page!"
1589
+
1590
+ #: profile-builder-2.0/admin/basic-info.php:37
1591
+ msgid "Friction-less login using %s shortcode or a widget."
1592
+ msgstr "Friction-less login using %s shortcode or a widget."
1593
+
1594
+ #: profile-builder-2.0/admin/basic-info.php:41
1595
+ msgid "Beautiful registration forms fully customizable using the %s shortcode."
1596
+ msgstr "Beautiful registration forms fully customizable using the %s shortcode."
1597
+
1598
+ #: profile-builder-2.0/admin/basic-info.php:45
1599
+ msgid "Straight forward edit profile forms using %s shortcode."
1600
+ msgstr "Straight forward edit profile forms using %s shortcode."
1601
+
1602
+ #: profile-builder-2.0/admin/basic-info.php:58
1603
+ msgid "Allow users to recover their password in the front-end using the %s."
1604
+ msgstr "Allow users to recover their password in the front-end using the %s."
1605
+
1606
+ #: profile-builder-2.0/admin/basic-info.php:140
1607
+ msgid "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1608
+ msgstr "To create a page containing the users registered to this current site/blog, insert the following shortcode in a page of your chosing: %s."
1609
+
1610
+ #: profile-builder-2.0/admin/general-settings.php:115
1611
+ msgid "\"Admin Approval\" on User Role:"
1612
+ msgstr "Admin godkendelse på denne brugerrolle"
1613
+
1614
+ #: profile-builder-2.0/admin/general-settings.php:134
1615
+ msgid "Select on what user roles to activate Admin Approval."
1616
+ msgstr "Select on what user roles to activate Admin Approval."
1617
+
1618
+ #: profile-builder-2.0/admin/manage-fields.php:133
1619
+ msgid "Display on PB forms"
1620
+ msgstr "Se på PB forms"
1621
+
1622
+ #: profile-builder-2.0/admin/manage-fields.php:133
1623
+ msgid "PB Login"
1624
+ msgstr "PB Login"
1625
+
1626
+ #: profile-builder-2.0/admin/manage-fields.php:133
1627
+ msgid "PB Register"
1628
+ msgstr "PB Register"
1629
+
1630
+ #: profile-builder-2.0/admin/manage-fields.php:133
1631
+ msgid "PB Recover Password"
1632
+ msgstr "PB Recover Password"
1633
+
1634
+ #: profile-builder-2.0/admin/manage-fields.php:133
1635
+ msgid "Select on which Profile Builder forms to display reCAPTCHA"
1636
+ msgstr "Select on which Profile Builder forms to display reCAPTCHA"
1637
+
1638
+ #: profile-builder-2.0/admin/manage-fields.php:134
1639
+ msgid "Display on default WP forms"
1640
+ msgstr "Display on default WP forms"
1641
+
1642
+ #: profile-builder-2.0/admin/manage-fields.php:134
1643
+ msgid "Default WP Login"
1644
+ msgstr "Default WP Login"
1645
+
1646
+ #: profile-builder-2.0/admin/manage-fields.php:134
1647
+ msgid "Default WP Register"
1648
+ msgstr "Default WP Register"
1649
+
1650
+ #: profile-builder-2.0/admin/manage-fields.php:134
1651
+ msgid "Default WP Recover Password"
1652
+ msgstr "Default WP Recover Password"
1653
+
1654
+ #: profile-builder-2.0/admin/manage-fields.php:134
1655
+ msgid "Select on which default WP forms to display reCAPTCHA"
1656
+ msgstr "Vælg på hvilne standard WP forms de vil se reCAPTCHA"
1657
+
1658
+ #: profile-builder-2.0/admin/manage-fields.php:140
1659
+ #: profile-builder-2.0/admin/manage-fields.php:141
1660
+ #: profile-builder-2.0/admin/manage-fields.php:142
1661
+ msgid "Default option of the field"
1662
+ msgstr "Standard værdi på feltet"
1663
+
1664
+ #: profile-builder-2.0/admin/manage-fields.php:282
1665
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1666
+ msgid "Afghanistan"
1667
+ msgstr "Afghanistan"
1668
+
1669
+ #: profile-builder-2.0/admin/manage-fields.php:283
1670
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1671
+ msgid "Aland Islands"
1672
+ msgstr "Aland Islands"
1673
+
1674
+ #: profile-builder-2.0/admin/manage-fields.php:284
1675
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1676
+ msgid "Albania"
1677
+ msgstr "Albania"
1678
+
1679
+ #: profile-builder-2.0/admin/manage-fields.php:285
1680
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1681
+ msgid "Algeria"
1682
+ msgstr "Algeria"
1683
+
1684
+ #: profile-builder-2.0/admin/manage-fields.php:286
1685
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1686
+ msgid "American Samoa"
1687
+ msgstr "American Samoa"
1688
+
1689
+ #: profile-builder-2.0/admin/manage-fields.php:287
1690
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1691
+ msgid "Andorra"
1692
+ msgstr "Andorra"
1693
+
1694
+ #: profile-builder-2.0/admin/manage-fields.php:288
1695
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1696
+ msgid "Angola"
1697
+ msgstr "Angola"
1698
+
1699
+ #: profile-builder-2.0/admin/manage-fields.php:289
1700
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1701
+ msgid "Anguilla"
1702
+ msgstr "Anguilla"
1703
+
1704
+ #: profile-builder-2.0/admin/manage-fields.php:290
1705
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1706
+ msgid "Antarctica"
1707
+ msgstr "Antarctica"
1708
+
1709
+ #: profile-builder-2.0/admin/manage-fields.php:291
1710
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1711
+ msgid "Antigua and Barbuda"
1712
+ msgstr "Antigua and Barbuda"
1713
+
1714
+ #: profile-builder-2.0/admin/manage-fields.php:292
1715
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1716
+ msgid "Argentina"
1717
+ msgstr "Argentina"
1718
+
1719
+ #: profile-builder-2.0/admin/manage-fields.php:293
1720
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1721
+ msgid "Armenia"
1722
+ msgstr "Armenia"
1723
+
1724
+ #: profile-builder-2.0/admin/manage-fields.php:294
1725
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1726
+ msgid "Aruba"
1727
+ msgstr "Aruba"
1728
+
1729
+ #: profile-builder-2.0/admin/manage-fields.php:295
1730
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1731
+ msgid "Australia"
1732
+ msgstr "Australia"
1733
+
1734
+ #: profile-builder-2.0/admin/manage-fields.php:296
1735
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1736
+ msgid "Austria"
1737
+ msgstr "Austria"
1738
+
1739
+ #: profile-builder-2.0/admin/manage-fields.php:297
1740
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1741
+ msgid "Azerbaijan"
1742
+ msgstr "Azerbaijan"
1743
+
1744
+ #: profile-builder-2.0/admin/manage-fields.php:298
1745
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1746
+ msgid "Bahamas"
1747
+ msgstr "Bahamas"
1748
+
1749
+ #: profile-builder-2.0/admin/manage-fields.php:299
1750
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1751
+ msgid "Bahrain"
1752
+ msgstr "Bahrain"
1753
+
1754
+ #: profile-builder-2.0/admin/manage-fields.php:300
1755
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1756
+ msgid "Bangladesh"
1757
+ msgstr "Bangladesh"
1758
+
1759
+ #: profile-builder-2.0/admin/manage-fields.php:301
1760
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1761
+ msgid "Barbados"
1762
+ msgstr "Barbados"
1763
+
1764
+ #: profile-builder-2.0/admin/manage-fields.php:302
1765
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1766
+ msgid "Belarus"
1767
+ msgstr "Belarus"
1768
+
1769
+ #: profile-builder-2.0/admin/manage-fields.php:303
1770
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1771
+ msgid "Belgium"
1772
+ msgstr "Belgium"
1773
+
1774
+ #: profile-builder-2.0/admin/manage-fields.php:304
1775
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1776
+ msgid "Belize"
1777
+ msgstr "Belize"
1778
+
1779
+ #: profile-builder-2.0/admin/manage-fields.php:305
1780
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1781
+ msgid "Benin"
1782
+ msgstr "Benin"
1783
+
1784
+ #: profile-builder-2.0/admin/manage-fields.php:306
1785
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1786
+ msgid "Bermuda"
1787
+ msgstr "Bermuda"
1788
+
1789
+ #: profile-builder-2.0/admin/manage-fields.php:307
1790
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1791
+ msgid "Bhutan"
1792
+ msgstr "Bhutan"
1793
+
1794
+ #: profile-builder-2.0/admin/manage-fields.php:308
1795
+ msgid "Bolivia"
1796
+ msgstr "Bolivia"
1797
+
1798
+ #: profile-builder-2.0/admin/manage-fields.php:309
1799
+ msgid "Bonaire, Saint Eustatius and Saba"
1800
+ msgstr "Bonaire, Saint Eustatius and Saba"
1801
+
1802
+ #: profile-builder-2.0/admin/manage-fields.php:310
1803
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1804
+ msgid "Bosnia and Herzegovina"
1805
+ msgstr "Bosnia and Herzegovina"
1806
+
1807
+ #: profile-builder-2.0/admin/manage-fields.php:311
1808
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1809
+ msgid "Botswana"
1810
+ msgstr "Botswana"
1811
+
1812
+ #: profile-builder-2.0/admin/manage-fields.php:312
1813
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1814
+ msgid "Bouvet Island"
1815
+ msgstr "Bouvet Island"
1816
+
1817
+ #: profile-builder-2.0/admin/manage-fields.php:313
1818
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1819
+ msgid "Brazil"
1820
+ msgstr "Brazil"
1821
+
1822
+ #: profile-builder-2.0/admin/manage-fields.php:314
1823
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1824
+ msgid "British Indian Ocean Territory"
1825
+ msgstr "British Indian Ocean Territory"
1826
+
1827
+ #: profile-builder-2.0/admin/manage-fields.php:315
1828
+ msgid "British Virgin Islands"
1829
+ msgstr "British Virgin Islands"
1830
+
1831
+ #: profile-builder-2.0/admin/manage-fields.php:316
1832
+ msgid "Brunei"
1833
+ msgstr "Brunei"
1834
+
1835
+ #: profile-builder-2.0/admin/manage-fields.php:317
1836
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1837
+ msgid "Bulgaria"
1838
+ msgstr "Bulgaria"
1839
+
1840
+ #: profile-builder-2.0/admin/manage-fields.php:318
1841
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1842
+ msgid "Burkina Faso"
1843
+ msgstr "Burkina Faso"
1844
+
1845
+ #: profile-builder-2.0/admin/manage-fields.php:319
1846
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1847
+ msgid "Burundi"
1848
+ msgstr "Burundi"
1849
+
1850
+ #: profile-builder-2.0/admin/manage-fields.php:320
1851
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1852
+ msgid "Cambodia"
1853
+ msgstr "Cambodia"
1854
+
1855
+ #: profile-builder-2.0/admin/manage-fields.php:321
1856
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1857
+ msgid "Cameroon"
1858
+ msgstr "Cameroon"
1859
+
1860
+ #: profile-builder-2.0/admin/manage-fields.php:322
1861
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1862
+ msgid "Canada"
1863
+ msgstr "Canada"
1864
+
1865
+ #: profile-builder-2.0/admin/manage-fields.php:323
1866
+ msgid "Cape Verde"
1867
+ msgstr "Cape Verde"
1868
+
1869
+ #: profile-builder-2.0/admin/manage-fields.php:324
1870
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1871
+ msgid "Cayman Islands"
1872
+ msgstr "Cayman Islands"
1873
+
1874
+ #: profile-builder-2.0/admin/manage-fields.php:325
1875
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1876
+ msgid "Central African Republic"
1877
+ msgstr "Central African Republic"
1878
+
1879
+ #: profile-builder-2.0/admin/manage-fields.php:326
1880
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1881
+ msgid "Chad"
1882
+ msgstr "Chad"
1883
+
1884
+ #: profile-builder-2.0/admin/manage-fields.php:327
1885
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1886
+ msgid "Chile"
1887
+ msgstr "Chile"
1888
+
1889
+ #: profile-builder-2.0/admin/manage-fields.php:328
1890
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1891
+ msgid "China"
1892
+ msgstr "China"
1893
+
1894
+ #: profile-builder-2.0/admin/manage-fields.php:329
1895
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1896
+ msgid "Christmas Island"
1897
+ msgstr "Christmas Island"
1898
+
1899
+ #: profile-builder-2.0/admin/manage-fields.php:330
1900
+ msgid "Cocos Islands"
1901
+ msgstr "Cocos Islands"
1902
+
1903
+ #: profile-builder-2.0/admin/manage-fields.php:331
1904
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1905
+ msgid "Colombia"
1906
+ msgstr "Colombia"
1907
+
1908
+ #: profile-builder-2.0/admin/manage-fields.php:332
1909
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1910
+ msgid "Comoros"
1911
+ msgstr "Comoros"
1912
+
1913
+ #: profile-builder-2.0/admin/manage-fields.php:333
1914
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1915
+ msgid "Cook Islands"
1916
+ msgstr "Cook Islands"
1917
+
1918
+ #: profile-builder-2.0/admin/manage-fields.php:334
1919
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1920
+ msgid "Costa Rica"
1921
+ msgstr "Costa Rica"
1922
+
1923
+ #: profile-builder-2.0/admin/manage-fields.php:335
1924
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1925
+ msgid "Croatia"
1926
+ msgstr "Croatia"
1927
+
1928
+ #: profile-builder-2.0/admin/manage-fields.php:336
1929
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1930
+ msgid "Cuba"
1931
+ msgstr "Cuba"
1932
+
1933
+ #: profile-builder-2.0/admin/manage-fields.php:337
1934
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1935
+ msgid "Curacao"
1936
+ msgstr "Curacao"
1937
+
1938
+ #: profile-builder-2.0/admin/manage-fields.php:338
1939
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1940
+ msgid "Cyprus"
1941
+ msgstr "Cyprus"
1942
+
1943
+ #: profile-builder-2.0/admin/manage-fields.php:339
1944
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1945
+ msgid "Czech Republic"
1946
+ msgstr "Czech Republic"
1947
+
1948
+ #: profile-builder-2.0/admin/manage-fields.php:340
1949
+ msgid "Democratic Republic of the Congo"
1950
+ msgstr "Democratic Republic of the Congo"
1951
+
1952
+ #: profile-builder-2.0/admin/manage-fields.php:341
1953
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1954
+ msgid "Denmark"
1955
+ msgstr "Denmark"
1956
+
1957
+ #: profile-builder-2.0/admin/manage-fields.php:342
1958
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1959
+ msgid "Djibouti"
1960
+ msgstr "Djibouti"
1961
+
1962
+ #: profile-builder-2.0/admin/manage-fields.php:343
1963
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1964
+ msgid "Dominica"
1965
+ msgstr "Dominica"
1966
+
1967
+ #: profile-builder-2.0/admin/manage-fields.php:344
1968
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1969
+ msgid "Dominican Republic"
1970
+ msgstr "Dominican Republic"
1971
+
1972
+ #: profile-builder-2.0/admin/manage-fields.php:345
1973
+ msgid "East Timor"
1974
+ msgstr "East Timor"
1975
+
1976
+ #: profile-builder-2.0/admin/manage-fields.php:346
1977
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1978
+ msgid "Ecuador"
1979
+ msgstr "Ecuador"
1980
+
1981
+ #: profile-builder-2.0/admin/manage-fields.php:347
1982
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1983
+ msgid "Egypt"
1984
+ msgstr "Egypt"
1985
+
1986
+ #: profile-builder-2.0/admin/manage-fields.php:348
1987
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1988
+ msgid "El Salvador"
1989
+ msgstr "El Salvador"
1990
+
1991
+ #: profile-builder-2.0/admin/manage-fields.php:349
1992
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1993
+ msgid "Equatorial Guinea"
1994
+ msgstr "Equatorial Guinea"
1995
+
1996
+ #: profile-builder-2.0/admin/manage-fields.php:350
1997
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1998
+ msgid "Eritrea"
1999
+ msgstr "Eritrea"
2000
+
2001
+ #: profile-builder-2.0/admin/manage-fields.php:351
2002
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2003
+ msgid "Estonia"
2004
+ msgstr "Estonia"
2005
+
2006
+ #: profile-builder-2.0/admin/manage-fields.php:352
2007
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2008
+ msgid "Ethiopia"
2009
+ msgstr "Ethiopia"
2010
+
2011
+ #: profile-builder-2.0/admin/manage-fields.php:353
2012
+ msgid "Falkland Islands"
2013
+ msgstr "Falkland Islands"
2014
+
2015
+ #: profile-builder-2.0/admin/manage-fields.php:354
2016
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2017
+ msgid "Faroe Islands"
2018
+ msgstr "Faroe Islands"
2019
+
2020
+ #: profile-builder-2.0/admin/manage-fields.php:355
2021
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2022
+ msgid "Fiji"
2023
+ msgstr "Fiji"
2024
+
2025
+ #: profile-builder-2.0/admin/manage-fields.php:356
2026
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2027
+ msgid "Finland"
2028
+ msgstr "Finland"
2029
+
2030
+ #: profile-builder-2.0/admin/manage-fields.php:357
2031
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2032
+ msgid "France"
2033
+ msgstr "France"
2034
+
2035
+ #: profile-builder-2.0/admin/manage-fields.php:358
2036
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2037
+ msgid "French Guiana"
2038
+ msgstr "French Guiana"
2039
+
2040
+ #: profile-builder-2.0/admin/manage-fields.php:359
2041
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2042
+ msgid "French Polynesia"
2043
+ msgstr "French Polynesia"
2044
+
2045
+ #: profile-builder-2.0/admin/manage-fields.php:360
2046
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2047
+ msgid "French Southern Territories"
2048
+ msgstr "French Southern Territories"
2049
+
2050
+ #: profile-builder-2.0/admin/manage-fields.php:361
2051
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2052
+ msgid "Gabon"
2053
+ msgstr "Gabon"
2054
+
2055
+ #: profile-builder-2.0/admin/manage-fields.php:362
2056
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2057
+ msgid "Gambia"
2058
+ msgstr "Gambia"
2059
+
2060
+ #: profile-builder-2.0/admin/manage-fields.php:363
2061
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2062
+ msgid "Georgia"
2063
+ msgstr "Georgia"
2064
+
2065
+ #: profile-builder-2.0/admin/manage-fields.php:364
2066
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2067
+ msgid "Germany"
2068
+ msgstr "Germany"
2069
+
2070
+ #: profile-builder-2.0/admin/manage-fields.php:365
2071
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2072
+ msgid "Ghana"
2073
+ msgstr "Ghana"
2074
+
2075
+ #: profile-builder-2.0/admin/manage-fields.php:366
2076
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
+ msgid "Gibraltar"
2078
+ msgstr "Gibraltar"
2079
+
2080
+ #: profile-builder-2.0/admin/manage-fields.php:367
2081
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
+ msgid "Greece"
2083
+ msgstr "Greece"
2084
+
2085
+ #: profile-builder-2.0/admin/manage-fields.php:368
2086
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
+ msgid "Greenland"
2088
+ msgstr "Greenland"
2089
+
2090
+ #: profile-builder-2.0/admin/manage-fields.php:369
2091
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
+ msgid "Grenada"
2093
+ msgstr "Grenada"
2094
+
2095
+ #: profile-builder-2.0/admin/manage-fields.php:370
2096
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2097
+ msgid "Guadeloupe"
2098
+ msgstr "Guadeloupe"
2099
+
2100
+ #: profile-builder-2.0/admin/manage-fields.php:371
2101
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2102
+ msgid "Guam"
2103
+ msgstr "Guam"
2104
+
2105
+ #: profile-builder-2.0/admin/manage-fields.php:372
2106
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2107
+ msgid "Guatemala"
2108
+ msgstr "Guatemala"
2109
+
2110
+ #: profile-builder-2.0/admin/manage-fields.php:373
2111
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2112
+ msgid "Guernsey"
2113
+ msgstr "Guernsey"
2114
+
2115
+ #: profile-builder-2.0/admin/manage-fields.php:374
2116
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2117
+ msgid "Guinea"
2118
+ msgstr "Guinea"
2119
+
2120
+ #: profile-builder-2.0/admin/manage-fields.php:375
2121
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2122
+ msgid "Guinea-Bissau"
2123
+ msgstr "Guinea-Bissau"
2124
+
2125
+ #: profile-builder-2.0/admin/manage-fields.php:376
2126
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2127
+ msgid "Guyana"
2128
+ msgstr "Guyana"
2129
+
2130
+ #: profile-builder-2.0/admin/manage-fields.php:377
2131
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2132
+ msgid "Haiti"
2133
+ msgstr "Haiti"
2134
+
2135
+ #: profile-builder-2.0/admin/manage-fields.php:378
2136
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2137
+ msgid "Heard Island and McDonald Islands"
2138
+ msgstr "Heard Island and McDonald Islands"
2139
+
2140
+ #: profile-builder-2.0/admin/manage-fields.php:379
2141
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2142
+ msgid "Honduras"
2143
+ msgstr "Honduras"
2144
+
2145
+ #: profile-builder-2.0/admin/manage-fields.php:380
2146
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2147
+ msgid "Hong Kong"
2148
+ msgstr "Hong Kong"
2149
+
2150
+ #: profile-builder-2.0/admin/manage-fields.php:381
2151
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2152
+ msgid "Hungary"
2153
+ msgstr "Hungary"
2154
+
2155
+ #: profile-builder-2.0/admin/manage-fields.php:382
2156
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2157
+ msgid "Iceland"
2158
+ msgstr "Iceland"
2159
+
2160
+ #: profile-builder-2.0/admin/manage-fields.php:383
2161
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2162
+ msgid "India"
2163
+ msgstr "India"
2164
+
2165
+ #: profile-builder-2.0/admin/manage-fields.php:384
2166
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2167
+ msgid "Indonesia"
2168
+ msgstr "Indonesia"
2169
+
2170
+ #: profile-builder-2.0/admin/manage-fields.php:385
2171
+ msgid "Iran"
2172
+ msgstr "Iran"
2173
+
2174
+ #: profile-builder-2.0/admin/manage-fields.php:386
2175
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2176
+ msgid "Iraq"
2177
+ msgstr "Iraq"
2178
+
2179
+ #: profile-builder-2.0/admin/manage-fields.php:387
2180
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2181
+ msgid "Ireland"
2182
+ msgstr "Ireland"
2183
+
2184
+ #: profile-builder-2.0/admin/manage-fields.php:388
2185
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2186
+ msgid "Isle of Man"
2187
+ msgstr "Isle of Man"
2188
+
2189
+ #: profile-builder-2.0/admin/manage-fields.php:389
2190
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2191
+ msgid "Israel"
2192
+ msgstr "Israel"
2193
+
2194
+ #: profile-builder-2.0/admin/manage-fields.php:390
2195
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2196
+ msgid "Italy"
2197
+ msgstr "Italy"
2198
+
2199
+ #: profile-builder-2.0/admin/manage-fields.php:391
2200
+ msgid "Ivory Coast"
2201
+ msgstr "Ivory Coast"
2202
+
2203
+ #: profile-builder-2.0/admin/manage-fields.php:392
2204
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2205
+ msgid "Jamaica"
2206
+ msgstr "Jamaica"
2207
+
2208
+ #: profile-builder-2.0/admin/manage-fields.php:393
2209
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2210
+ msgid "Japan"
2211
+ msgstr "Japan"
2212
+
2213
+ #: profile-builder-2.0/admin/manage-fields.php:394
2214
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2215
+ msgid "Jersey"
2216
+ msgstr "Jersey"
2217
+
2218
+ #: profile-builder-2.0/admin/manage-fields.php:395
2219
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2220
+ msgid "Jordan"
2221
+ msgstr "Jordan"
2222
+
2223
+ #: profile-builder-2.0/admin/manage-fields.php:396
2224
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2225
+ msgid "Kazakhstan"
2226
+ msgstr "Kazakhstan"
2227
+
2228
+ #: profile-builder-2.0/admin/manage-fields.php:397
2229
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2230
+ msgid "Kenya"
2231
+ msgstr "Kenya"
2232
+
2233
+ #: profile-builder-2.0/admin/manage-fields.php:398
2234
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2235
+ msgid "Kiribati"
2236
+ msgstr "Kiribati"
2237
+
2238
+ #: profile-builder-2.0/admin/manage-fields.php:399
2239
+ msgid "Kosovo"
2240
+ msgstr "Kosovo"
2241
+
2242
+ #: profile-builder-2.0/admin/manage-fields.php:400
2243
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2244
+ msgid "Kuwait"
2245
+ msgstr "Kuwait"
2246
+
2247
+ #: profile-builder-2.0/admin/manage-fields.php:401
2248
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2249
+ msgid "Kyrgyzstan"
2250
+ msgstr "Kyrgyzstan"
2251
+
2252
+ #: profile-builder-2.0/admin/manage-fields.php:402
2253
+ msgid "Laos"
2254
+ msgstr "Laos"
2255
+
2256
+ #: profile-builder-2.0/admin/manage-fields.php:403
2257
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2258
+ msgid "Latvia"
2259
+ msgstr "Latvia"
2260
+
2261
+ #: profile-builder-2.0/admin/manage-fields.php:404
2262
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2263
+ msgid "Lebanon"
2264
+ msgstr "Lebanon"
2265
+
2266
+ #: profile-builder-2.0/admin/manage-fields.php:405
2267
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2268
+ msgid "Lesotho"
2269
+ msgstr "Lesotho"
2270
+
2271
+ #: profile-builder-2.0/admin/manage-fields.php:406
2272
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2273
+ msgid "Liberia"
2274
+ msgstr "Liberia"
2275
+
2276
+ #: profile-builder-2.0/admin/manage-fields.php:407
2277
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2278
+ msgid "Libya"
2279
+ msgstr "Libya"
2280
+
2281
+ #: profile-builder-2.0/admin/manage-fields.php:408
2282
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2283
+ msgid "Liechtenstein"
2284
+ msgstr "Liechtenstein"
2285
+
2286
+ #: profile-builder-2.0/admin/manage-fields.php:409
2287
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2288
+ msgid "Lithuania"
2289
+ msgstr "Lithuania"
2290
+
2291
+ #: profile-builder-2.0/admin/manage-fields.php:410
2292
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2293
+ msgid "Luxembourg"
2294
+ msgstr "Luxembourg"
2295
+
2296
+ #: profile-builder-2.0/admin/manage-fields.php:411
2297
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2298
+ msgid "Macao"
2299
+ msgstr "Macao"
2300
+
2301
+ #: profile-builder-2.0/admin/manage-fields.php:412
2302
+ msgid "Macedonia"
2303
+ msgstr "Macedonia"
2304
+
2305
+ #: profile-builder-2.0/admin/manage-fields.php:413
2306
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2307
+ msgid "Madagascar"
2308
+ msgstr "Madagascar"
2309
+
2310
+ #: profile-builder-2.0/admin/manage-fields.php:414
2311
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2312
+ msgid "Malawi"
2313
+ msgstr "Malawi"
2314
+
2315
+ #: profile-builder-2.0/admin/manage-fields.php:415
2316
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2317
+ msgid "Malaysia"
2318
+ msgstr "Malaysia"
2319
+
2320
+ #: profile-builder-2.0/admin/manage-fields.php:416
2321
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2322
+ msgid "Maldives"
2323
+ msgstr "Maldives"
2324
+
2325
+ #: profile-builder-2.0/admin/manage-fields.php:417
2326
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2327
+ msgid "Mali"
2328
+ msgstr "Mali"
2329
+
2330
+ #: profile-builder-2.0/admin/manage-fields.php:418
2331
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2332
+ msgid "Malta"
2333
+ msgstr "Malta"
2334
+
2335
+ #: profile-builder-2.0/admin/manage-fields.php:419
2336
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2337
+ msgid "Marshall Islands"
2338
+ msgstr "Marshall Islands"
2339
+
2340
+ #: profile-builder-2.0/admin/manage-fields.php:420
2341
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2342
+ msgid "Martinique"
2343
+ msgstr "Martinique"
2344
+
2345
+ #: profile-builder-2.0/admin/manage-fields.php:421
2346
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2347
+ msgid "Mauritania"
2348
+ msgstr "Mauritania"
2349
+
2350
+ #: profile-builder-2.0/admin/manage-fields.php:422
2351
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2352
+ msgid "Mauritius"
2353
+ msgstr "Mauritius"
2354
+
2355
+ #: profile-builder-2.0/admin/manage-fields.php:423
2356
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2357
+ msgid "Mayotte"
2358
+ msgstr "Mayotte"
2359
+
2360
+ #: profile-builder-2.0/admin/manage-fields.php:424
2361
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2362
+ msgid "Mexico"
2363
+ msgstr "Mexico"
2364
+
2365
+ #: profile-builder-2.0/admin/manage-fields.php:425
2366
+ msgid "Micronesia"
2367
+ msgstr "Micronesia"
2368
+
2369
+ #: profile-builder-2.0/admin/manage-fields.php:426
2370
+ msgid "Moldova"
2371
+ msgstr "Moldova"
2372
+
2373
+ #: profile-builder-2.0/admin/manage-fields.php:427
2374
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2375
+ msgid "Monaco"
2376
+ msgstr "Monaco"
2377
+
2378
+ #: profile-builder-2.0/admin/manage-fields.php:428
2379
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2380
+ msgid "Mongolia"
2381
+ msgstr "Mongolia"
2382
+
2383
+ #: profile-builder-2.0/admin/manage-fields.php:429
2384
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
+ msgid "Montenegro"
2386
+ msgstr "Montenegro"
2387
+
2388
+ #: profile-builder-2.0/admin/manage-fields.php:430
2389
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2390
+ msgid "Montserrat"
2391
+ msgstr "Montserrat"
2392
+
2393
+ #: profile-builder-2.0/admin/manage-fields.php:431
2394
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2395
+ msgid "Morocco"
2396
+ msgstr "Morocco"
2397
+
2398
+ #: profile-builder-2.0/admin/manage-fields.php:432
2399
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2400
+ msgid "Mozambique"
2401
+ msgstr "Mozambique"
2402
+
2403
+ #: profile-builder-2.0/admin/manage-fields.php:433
2404
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2405
+ msgid "Myanmar"
2406
+ msgstr "Myanmar"
2407
+
2408
+ #: profile-builder-2.0/admin/manage-fields.php:434
2409
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2410
+ msgid "Namibia"
2411
+ msgstr "Namibia"
2412
+
2413
+ #: profile-builder-2.0/admin/manage-fields.php:435
2414
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2415
+ msgid "Nauru"
2416
+ msgstr "Nauru"
2417
+
2418
+ #: profile-builder-2.0/admin/manage-fields.php:436
2419
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2420
+ msgid "Nepal"
2421
+ msgstr "Nepal"
2422
+
2423
+ #: profile-builder-2.0/admin/manage-fields.php:437
2424
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2425
+ msgid "Netherlands"
2426
+ msgstr "Netherlands"
2427
+
2428
+ #: profile-builder-2.0/admin/manage-fields.php:438
2429
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2430
+ msgid "New Caledonia"
2431
+ msgstr "New Caledonia"
2432
+
2433
+ #: profile-builder-2.0/admin/manage-fields.php:439
2434
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2435
+ msgid "New Zealand"
2436
+ msgstr "New Zealand"
2437
+
2438
+ #: profile-builder-2.0/admin/manage-fields.php:440
2439
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2440
+ msgid "Nicaragua"
2441
+ msgstr "Nicaragua"
2442
+
2443
+ #: profile-builder-2.0/admin/manage-fields.php:441
2444
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2445
+ msgid "Niger"
2446
+ msgstr "Niger"
2447
+
2448
+ #: profile-builder-2.0/admin/manage-fields.php:442
2449
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2450
+ msgid "Nigeria"
2451
+ msgstr "Nigeria"
2452
+
2453
+ #: profile-builder-2.0/admin/manage-fields.php:443
2454
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2455
+ msgid "Niue"
2456
+ msgstr "Niue"
2457
+
2458
+ #: profile-builder-2.0/admin/manage-fields.php:444
2459
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2460
+ msgid "Norfolk Island"
2461
+ msgstr "Norfolk Island"
2462
+
2463
+ #: profile-builder-2.0/admin/manage-fields.php:445
2464
+ msgid "North Korea"
2465
+ msgstr "North Korea"
2466
+
2467
+ #: profile-builder-2.0/admin/manage-fields.php:446
2468
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2469
+ msgid "Northern Mariana Islands"
2470
+ msgstr "Northern Mariana Islands"
2471
+
2472
+ #: profile-builder-2.0/admin/manage-fields.php:447
2473
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2474
+ msgid "Norway"
2475
+ msgstr "Norway"
2476
+
2477
+ #: profile-builder-2.0/admin/manage-fields.php:448
2478
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2479
+ msgid "Oman"
2480
+ msgstr "Oman"
2481
+
2482
+ #: profile-builder-2.0/admin/manage-fields.php:449
2483
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2484
+ msgid "Pakistan"
2485
+ msgstr "Pakistan"
2486
+
2487
+ #: profile-builder-2.0/admin/manage-fields.php:450
2488
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2489
+ msgid "Palau"
2490
+ msgstr "Palau"
2491
+
2492
+ #: profile-builder-2.0/admin/manage-fields.php:451
2493
+ msgid "Palestinian Territory"
2494
+ msgstr "Palestinian Territory"
2495
+
2496
+ #: profile-builder-2.0/admin/manage-fields.php:452
2497
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2498
+ msgid "Panama"
2499
+ msgstr "Panama"
2500
+
2501
+ #: profile-builder-2.0/admin/manage-fields.php:453
2502
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2503
+ msgid "Papua New Guinea"
2504
+ msgstr "Papua New Guinea"
2505
+
2506
+ #: profile-builder-2.0/admin/manage-fields.php:454
2507
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2508
+ msgid "Paraguay"
2509
+ msgstr "Paraguay"
2510
+
2511
+ #: profile-builder-2.0/admin/manage-fields.php:455
2512
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2513
+ msgid "Peru"
2514
+ msgstr "Peru"
2515
+
2516
+ #: profile-builder-2.0/admin/manage-fields.php:456
2517
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2518
+ msgid "Philippines"
2519
+ msgstr "Philippines"
2520
+
2521
+ #: profile-builder-2.0/admin/manage-fields.php:457
2522
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2523
+ msgid "Pitcairn"
2524
+ msgstr "Pitcairn"
2525
+
2526
+ #: profile-builder-2.0/admin/manage-fields.php:458
2527
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2528
+ msgid "Poland"
2529
+ msgstr "Poland"
2530
+
2531
+ #: profile-builder-2.0/admin/manage-fields.php:459
2532
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2533
+ msgid "Portugal"
2534
+ msgstr "Portugal"
2535
+
2536
+ #: profile-builder-2.0/admin/manage-fields.php:460
2537
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2538
+ msgid "Puerto Rico"
2539
+ msgstr "Puerto Rico"
2540
+
2541
+ #: profile-builder-2.0/admin/manage-fields.php:461
2542
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2543
+ msgid "Qatar"
2544
+ msgstr "Qatar"
2545
+
2546
+ #: profile-builder-2.0/admin/manage-fields.php:462
2547
+ msgid "Republic of the Congo"
2548
+ msgstr "Republic of the Congo"
2549
+
2550
+ #: profile-builder-2.0/admin/manage-fields.php:463
2551
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2552
+ msgid "Reunion"
2553
+ msgstr "Reunion"
2554
+
2555
+ #: profile-builder-2.0/admin/manage-fields.php:464
2556
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2557
+ msgid "Romania"
2558
+ msgstr "Romania"
2559
+
2560
+ #: profile-builder-2.0/admin/manage-fields.php:465
2561
+ msgid "Russia"
2562
+ msgstr "Russia"
2563
+
2564
+ #: profile-builder-2.0/admin/manage-fields.php:466
2565
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2566
+ msgid "Rwanda"
2567
+ msgstr "Rwanda"
2568
+
2569
+ #: profile-builder-2.0/admin/manage-fields.php:467
2570
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2571
+ msgid "Saint Barthelemy"
2572
+ msgstr "Saint Barthelemy"
2573
+
2574
+ #: profile-builder-2.0/admin/manage-fields.php:468
2575
+ msgid "Saint Helena"
2576
+ msgstr "Saint Helena"
2577
+
2578
+ #: profile-builder-2.0/admin/manage-fields.php:469
2579
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2580
+ msgid "Saint Kitts and Nevis"
2581
+ msgstr "Saint Kitts and Nevis"
2582
+
2583
+ #: profile-builder-2.0/admin/manage-fields.php:470
2584
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2585
+ msgid "Saint Lucia"
2586
+ msgstr "Saint Lucia"
2587
+
2588
+ #: profile-builder-2.0/admin/manage-fields.php:471
2589
+ msgid "Saint Martin"
2590
+ msgstr "Saint Martin"
2591
+
2592
+ #: profile-builder-2.0/admin/manage-fields.php:472
2593
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2594
+ msgid "Saint Pierre and Miquelon"
2595
+ msgstr "Saint Pierre and Miquelon"
2596
+
2597
+ #: profile-builder-2.0/admin/manage-fields.php:473
2598
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2599
+ msgid "Saint Vincent and the Grenadines"
2600
+ msgstr "Saint Vincent and the Grenadines"
2601
+
2602
+ #: profile-builder-2.0/admin/manage-fields.php:474
2603
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2604
+ msgid "Samoa"
2605
+ msgstr "Samoa"
2606
+
2607
+ #: profile-builder-2.0/admin/manage-fields.php:475
2608
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2609
+ msgid "San Marino"
2610
+ msgstr "San Marino"
2611
+
2612
+ #: profile-builder-2.0/admin/manage-fields.php:476
2613
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2614
+ msgid "Sao Tome and Principe"
2615
+ msgstr "Sao Tome and Principe"
2616
+
2617
+ #: profile-builder-2.0/admin/manage-fields.php:477
2618
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2619
+ msgid "Saudi Arabia"
2620
+ msgstr "Saudi Arabia"
2621
+
2622
+ #: profile-builder-2.0/admin/manage-fields.php:478
2623
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2624
+ msgid "Senegal"
2625
+ msgstr "Senegal"
2626
+
2627
+ #: profile-builder-2.0/admin/manage-fields.php:479
2628
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2629
+ msgid "Serbia"
2630
+ msgstr "Serbia"
2631
+
2632
+ #: profile-builder-2.0/admin/manage-fields.php:480
2633
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2634
+ msgid "Seychelles"
2635
+ msgstr "Seychelles"
2636
+
2637
+ #: profile-builder-2.0/admin/manage-fields.php:481
2638
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2639
+ msgid "Sierra Leone"
2640
+ msgstr "Sierra Leone"
2641
+
2642
+ #: profile-builder-2.0/admin/manage-fields.php:482
2643
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2644
+ msgid "Singapore"
2645
+ msgstr "Singapore"
2646
+
2647
+ #: profile-builder-2.0/admin/manage-fields.php:483
2648
+ msgid "Sint Maarten"
2649
+ msgstr "Sint Maarten"
2650
+
2651
+ #: profile-builder-2.0/admin/manage-fields.php:484
2652
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2653
+ msgid "Slovakia"
2654
+ msgstr "Slovakia"
2655
+
2656
+ #: profile-builder-2.0/admin/manage-fields.php:485
2657
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2658
+ msgid "Slovenia"
2659
+ msgstr "Slovenia"
2660
+
2661
+ #: profile-builder-2.0/admin/manage-fields.php:486
2662
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2663
+ msgid "Solomon Islands"
2664
+ msgstr "Solomon Islands"
2665
+
2666
+ #: profile-builder-2.0/admin/manage-fields.php:487
2667
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2668
+ msgid "Somalia"
2669
+ msgstr "Somalia"
2670
+
2671
+ #: profile-builder-2.0/admin/manage-fields.php:488
2672
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2673
+ msgid "South Africa"
2674
+ msgstr "South Africa"
2675
+
2676
+ #: profile-builder-2.0/admin/manage-fields.php:489
2677
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2678
+ msgid "South Georgia and the South Sandwich Islands"
2679
+ msgstr "South Georgia and the South Sandwich Islands"
2680
+
2681
+ #: profile-builder-2.0/admin/manage-fields.php:490
2682
+ msgid "South Korea"
2683
+ msgstr "South Korea"
2684
+
2685
+ #: profile-builder-2.0/admin/manage-fields.php:491
2686
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2687
+ msgid "South Sudan"
2688
+ msgstr "South Sudan"
2689
+
2690
+ #: profile-builder-2.0/admin/manage-fields.php:492
2691
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2692
+ msgid "Spain"
2693
+ msgstr "Spain"
2694
+
2695
+ #: profile-builder-2.0/admin/manage-fields.php:493
2696
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2697
+ msgid "Sri Lanka"
2698
+ msgstr "Sri Lanka"
2699
+
2700
+ #: profile-builder-2.0/admin/manage-fields.php:494
2701
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2702
+ msgid "Sudan"
2703
+ msgstr "Sudan"
2704
+
2705
+ #: profile-builder-2.0/admin/manage-fields.php:495
2706
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2707
+ msgid "Suriname"
2708
+ msgstr "Suriname"
2709
+
2710
+ #: profile-builder-2.0/admin/manage-fields.php:496
2711
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2712
+ msgid "Svalbard and Jan Mayen"
2713
+ msgstr "Svalbard and Jan Mayen"
2714
+
2715
+ #: profile-builder-2.0/admin/manage-fields.php:497
2716
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2717
+ msgid "Swaziland"
2718
+ msgstr "Swaziland"
2719
+
2720
+ #: profile-builder-2.0/admin/manage-fields.php:498
2721
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2722
+ msgid "Sweden"
2723
+ msgstr "Sweden"
2724
+
2725
+ #: profile-builder-2.0/admin/manage-fields.php:499
2726
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2727
+ msgid "Switzerland"
2728
+ msgstr "Switzerland"
2729
+
2730
+ #: profile-builder-2.0/admin/manage-fields.php:500
2731
+ msgid "Syria"
2732
+ msgstr "Syria"
2733
+
2734
+ #: profile-builder-2.0/admin/manage-fields.php:501
2735
+ msgid "Taiwan"
2736
+ msgstr "Taiwan"
2737
+
2738
+ #: profile-builder-2.0/admin/manage-fields.php:502
2739
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2740
+ msgid "Tajikistan"
2741
+ msgstr "Tajikistan"
2742
+
2743
+ #: profile-builder-2.0/admin/manage-fields.php:503
2744
+ msgid "Tanzania"
2745
+ msgstr "Tanzania"
2746
+
2747
+ #: profile-builder-2.0/admin/manage-fields.php:504
2748
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2749
+ msgid "Thailand"
2750
+ msgstr "Thailand"
2751
+
2752
+ #: profile-builder-2.0/admin/manage-fields.php:505
2753
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2754
+ msgid "Togo"
2755
+ msgstr "Togo"
2756
+
2757
+ #: profile-builder-2.0/admin/manage-fields.php:506
2758
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2759
+ msgid "Tokelau"
2760
+ msgstr "Tokelau"
2761
+
2762
+ #: profile-builder-2.0/admin/manage-fields.php:507
2763
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2764
+ msgid "Tonga"
2765
+ msgstr "Tonga"
2766
+
2767
+ #: profile-builder-2.0/admin/manage-fields.php:508
2768
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2769
+ msgid "Trinidad and Tobago"
2770
+ msgstr "Trinidad and Tobago"
2771
+
2772
+ #: profile-builder-2.0/admin/manage-fields.php:509
2773
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2774
+ msgid "Tunisia"
2775
+ msgstr "Tunisia"
2776
+
2777
+ #: profile-builder-2.0/admin/manage-fields.php:510
2778
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2779
+ msgid "Turkey"
2780
+ msgstr "Turkey"
2781
+
2782
+ #: profile-builder-2.0/admin/manage-fields.php:511
2783
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2784
+ msgid "Turkmenistan"
2785
+ msgstr "Turkmenistan"
2786
+
2787
+ #: profile-builder-2.0/admin/manage-fields.php:512
2788
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2789
+ msgid "Turks and Caicos Islands"
2790
+ msgstr "Turks and Caicos Islands"
2791
+
2792
+ #: profile-builder-2.0/admin/manage-fields.php:513
2793
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2794
+ msgid "Tuvalu"
2795
+ msgstr "Tuvalu"
2796
+
2797
+ #: profile-builder-2.0/admin/manage-fields.php:514
2798
+ msgid "U.S. Virgin Islands"
2799
+ msgstr "U.S. Virgin Islands"
2800
+
2801
+ #: profile-builder-2.0/admin/manage-fields.php:515
2802
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2803
+ msgid "Uganda"
2804
+ msgstr "Uganda"
2805
+
2806
+ #: profile-builder-2.0/admin/manage-fields.php:516
2807
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2808
+ msgid "Ukraine"
2809
+ msgstr "Ukraine"
2810
+
2811
+ #: profile-builder-2.0/admin/manage-fields.php:517
2812
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2813
+ msgid "United Arab Emirates"
2814
+ msgstr "United Arab Emirates"
2815
+
2816
+ #: profile-builder-2.0/admin/manage-fields.php:518
2817
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2818
+ msgid "United Kingdom"
2819
+ msgstr "United Kingdom"
2820
+
2821
+ #: profile-builder-2.0/admin/manage-fields.php:519
2822
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2823
+ msgid "United States"
2824
+ msgstr "United States"
2825
+
2826
+ #: profile-builder-2.0/admin/manage-fields.php:520
2827
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2828
+ msgid "United States Minor Outlying Islands"
2829
+ msgstr "United States Minor Outlying Islands"
2830
+
2831
+ #: profile-builder-2.0/admin/manage-fields.php:521
2832
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2833
+ msgid "Uruguay"
2834
+ msgstr "Uruguay"
2835
+
2836
+ #: profile-builder-2.0/admin/manage-fields.php:522
2837
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2838
+ msgid "Uzbekistan"
2839
+ msgstr "Uzbekistan"
2840
+
2841
+ #: profile-builder-2.0/admin/manage-fields.php:523
2842
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2843
+ msgid "Vanuatu"
2844
+ msgstr "Vanuatu"
2845
+
2846
+ #: profile-builder-2.0/admin/manage-fields.php:524
2847
+ msgid "Vatican"
2848
+ msgstr "Vatican"
2849
+
2850
+ #: profile-builder-2.0/admin/manage-fields.php:525
2851
+ msgid "Venezuela"
2852
+ msgstr "Venezuela"
2853
+
2854
+ #: profile-builder-2.0/admin/manage-fields.php:526
2855
+ msgid "Vietnam"
2856
+ msgstr "Vietnam"
2857
+
2858
+ #: profile-builder-2.0/admin/manage-fields.php:527
2859
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2860
+ msgid "Wallis and Futuna"
2861
+ msgstr "Wallis and Futuna"
2862
+
2863
+ #: profile-builder-2.0/admin/manage-fields.php:528
2864
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2865
+ msgid "Western Sahara"
2866
+ msgstr "Western Sahara"
2867
+
2868
+ #: profile-builder-2.0/admin/manage-fields.php:529
2869
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2870
+ msgid "Yemen"
2871
+ msgstr "Yemen"
2872
+
2873
+ #: profile-builder-2.0/admin/manage-fields.php:530
2874
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2875
+ msgid "Zambia"
2876
+ msgstr "Zambia"
2877
+
2878
+ #: profile-builder-2.0/admin/manage-fields.php:531
2879
+ #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2880
+ msgid "Zimbabwe"
2881
+ msgstr "Zimbabwe"
2882
+
2883
+ #: profile-builder-2.0/admin/manage-fields.php:1219
2884
+ msgid "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2885
+ msgstr "With Profile Builder Pro v2 you can display different fields in the registration and edit profile forms, using the Multiple Registration & Edit Profile Forms module."
2886
+
2887
+ #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
2888
+ msgid "Your account has to be confirmed by an administrator before you can log in."
2889
+ msgstr "Di konto skal godekendes af en administrator før du kan logge ind"
2890
+
2891
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
2892
+ msgid "Your account has been successfully created!"
2893
+ msgstr "Din konto er oprettet!"
2894
+
2895
+ #: profile-builder-2.0/features/functions.php:678
2896
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
2897
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
2898
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2899
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
2900
+ msgid "Please enter a (valid) reCAPTCHA value"
2901
+ msgstr "Indtast en valid reCAPTCHA værdi"
2902
+
2903
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
2904
+ msgid "Click the BACK button on your browser, and try again."
2905
+ msgstr "Tryk på BACK knappen i din browser, og prøv igen."
2906
+
2907
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
2908
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
2909
+ msgid "Sorry, you cannot upload this file type for this field."
2910
+ msgstr "Beklager, du kan ikke uploade denne fil type."
2911
+
2912
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
2913
+ msgid "An error occurred, please try again later."
2914
+ msgstr "Der opstaod en fejl, prøv venligst igen senere."
2915
+
2916
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:282
2917
+ msgid "More"
2918
+ msgstr "Mere"
2919
+
2920
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:376
2921
+ msgid "You do not have permission to view this user list."
2922
+ msgstr "Du har ikke lov til at se denne bruger liste."
2923
+
2924
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:389
2925
+ msgid "You do not have the required user role to view this user list."
2926
+ msgstr "Du er ikke oprettet med en rigtige brugerrolle for at se denne liste"
2927
+
2928
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
2929
+ msgid "Ascending"
2930
+ msgstr "Stigende"
2931
+
2932
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
2933
+ msgid "Descending"
2934
+ msgstr "Faldende"
2935
+
2936
+ #: profile-builder-2.0/admin/add-ons.php:148
2937
+ #: profile-builder-2.0/admin/add-ons.php:248
2938
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:134
2939
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:213
2940
+ msgid "Download Now"
2941
+ msgstr "Download nu"
2942
+
2943
+ #: profile-builder-2.0/admin/admin-functions.php:200
2944
+ msgid "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate us on WordPress.org</a>. More happy users means more features, less bugs and better support for everyone. "
2945
+ msgstr "Hvis du kan lide at bruge <strong> %1$s </strong> please <a href=\"%2$s\" target=\"_blank\">rate os på WordPress.org</a>. Flere tilfredse brugere betyder flere features, færre fejl og bedre support til alle."
2946
+
2947
+ #: profile-builder-2.0/admin/manage-fields.php:82
2948
+ msgid "Choose one of the supported field types"
2949
+ msgstr "Vælg en af de supporterede felttyper"
2950
+
2951
+ #: profile-builder-2.0/admin/manage-fields.php:84
2952
+ msgid ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO versions</a>."
2953
+ msgstr ".Ekstra felttyper er tilgængelig i <a href=\"%s\">Hobbyist or PRO versions</a>."
2954
+
2955
+ #: profile-builder-2.0/admin/manage-fields.php:131
2956
+ msgid "Site Key"
2957
+ msgstr "Site nøgle (Key)"
2958
+
2959
+ #: profile-builder-2.0/admin/manage-fields.php:131
2960
+ msgid "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2961
+ msgstr "Site nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2962
+
2963
+ #: profile-builder-2.0/admin/manage-fields.php:132
2964
+ msgid "Secret Key"
2965
+ msgstr "Hemmelig nøgle (Key)"
2966
+
2967
+ #: profile-builder-2.0/admin/manage-fields.php:132
2968
+ msgid "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2969
+ msgstr "Den hemmelige nøgle (Key) fra Google, <a href=\"http://www.google.com/recaptcha\" target=\"_blank\">www.google.com/recaptcha</a>"
2970
+
2971
+ #: profile-builder-2.0/admin/manage-fields.php:1023
2972
+ msgid "You must enter the site key\n"
2973
+ msgstr "Du skal enter site nøglen (Key)\n"
2974
+
2975
+ #: profile-builder-2.0/admin/manage-fields.php:1025
2976
+ msgid "You must enter the secret key\n"
2977
+ msgstr "Du skal enter den hemmelige nøgle (Key)\n"
2978
+
2979
+ #: profile-builder-2.0/admin/add-ons.php:10
2980
+ #: profile-builder-2.0/admin/add-ons.php:32
2981
+ msgid "Add-Ons"
2982
+ msgstr "Tilføjelser"
2983
+
2984
+ #: profile-builder-2.0/admin/add-ons.php:34
2985
+ #: profile-builder-2.0/admin/add-ons.php:129
2986
+ #: profile-builder-2.0/admin/add-ons.php:231
2987
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:78
2988
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:114
2989
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:193
2990
+ msgid "Activate"
2991
+ msgstr "Aktivér"
2992
+
2993
+ #: profile-builder-2.0/admin/add-ons.php:36
2994
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:80
2995
+ msgid "Downloading and installing..."
2996
+ msgstr "Dowloader og installerer...."
2997
+
2998
+ #: profile-builder-2.0/admin/add-ons.php:37
2999
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:81
3000
+ msgid "Installation complete"
3001
+ msgstr "Installationen gennemført"
3002
+
3003
+ #: profile-builder-2.0/admin/add-ons.php:39
3004
+ msgid "Add-On is Active"
3005
+ msgstr "Tilføjelser er aktive"
3006
+
3007
+ #: profile-builder-2.0/admin/add-ons.php:40
3008
+ msgid "Add-On has been activated"
3009
+ msgstr "Tilføjelser er blevet aktiveret"
3010
+
3011
+ #: profile-builder-2.0/admin/add-ons.php:41
3012
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:85
3013
+ msgid "Retry Install"
3014
+ msgstr "Geninstallér"
3015
+
3016
+ #: profile-builder-2.0/admin/add-ons.php:43
3017
+ #: profile-builder-2.0/admin/add-ons.php:140
3018
+ msgid "Add-On is <strong>active</strong>"
3019
+ msgstr "Tilføjelser (add-on) er <strong>active</strong>"
3020
+
3021
+ #: profile-builder-2.0/admin/add-ons.php:44
3022
+ #: profile-builder-2.0/admin/add-ons.php:138
3023
+ msgid "Add-On is <strong>inactive</strong>"
3024
+ msgstr "Tilføjelser (add-on) er <strong>inactive</strong>"
3025
+
3026
+ #: profile-builder-2.0/admin/add-ons.php:46
3027
+ #: profile-builder-2.0/admin/add-ons.php:133
3028
+ #: profile-builder-2.0/admin/add-ons.php:235
3029
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:90
3030
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:118
3031
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:197
3032
+ msgid "Deactivate"
3033
+ msgstr "Deaktivér"
3034
+
3035
+ #: profile-builder-2.0/admin/add-ons.php:47
3036
+ msgid "Add-On has been deactivated."
3037
+ msgstr "Tilføjelser er blevet deaktiveret"
3038
+
3039
+ #: profile-builder-2.0/admin/add-ons.php:59
3040
+ msgid "Something went wrong, we could not connect to the server. Please try again later."
3041
+ msgstr "Et eller andet gik galt, vi kunne ikke forbinde til serveren. Venligst prøv igen senere."
3042
+
3043
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3044
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3045
+ msgid "Install Now"
3046
+ msgstr "Installér nu"
3047
+
3048
+ #: profile-builder-2.0/admin/add-ons.php:153
3049
+ #: profile-builder-2.0/admin/add-ons.php:251
3050
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:141
3051
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:220
3052
+ msgid "Compatible with your version of Profile Builder."
3053
+ msgstr "Kompatibel med din version af Profile Builder."
3054
+
3055
+ #: profile-builder-2.0/admin/add-ons.php:162
3056
+ msgid "Upgrade Profile Builder"
3057
+ msgstr "Opgradér Profile Builder"
3058
+
3059
+ #: profile-builder-2.0/admin/add-ons.php:163
3060
+ msgid "Not compatible with Profile Builder"
3061
+ msgstr "Ikke kompatibel med Profile Builder"
3062
+
3063
+ #: profile-builder-2.0/admin/add-ons.php:171
3064
+ msgid "Not compatible with your version of Profile Builder."
3065
+ msgstr "Ikke kompatibel med din version af Profile Builder"
3066
+
3067
+ #: profile-builder-2.0/admin/add-ons.php:172
3068
+ msgid "Minimum required Profile Builder version:"
3069
+ msgstr "Minimum krævet version af Profile Builder:"
3070
+
3071
+ #: profile-builder-2.0/admin/add-ons.php:177
3072
+ msgid "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install manually</a>."
3073
+ msgstr "Kunne ikke installere tilføjelse (add-on). Prøv igen eller <a href=\"%s\" target=\"_blank\">install manually</a>."
3074
+
3075
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3076
+ msgid "You must enter a valid email address."
3077
+ msgstr "Du skal indtaste en gyldig e-mail adresse."
3078
+
3079
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3080
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3081
+ msgid "This username is invalid because it uses illegal characters."
3082
+ msgstr "Dette brugernavn er ugyldigt, idet det indeholde karaterer / tegn som ikke er tilladte."
3083
+
3084
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3085
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3086
+ msgid "Please enter a valid username."
3087
+ msgstr "Venligst indtast et gyldigt brugernavn."
3088
+
3089
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
3090
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
3091
+ msgid "Only administrators can see this field on edit profile forms."
3092
+ msgstr "Kun administratorer kan se dette felt på rediger profilformularer."
3093
+
3094
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
3095
+ msgid "As an administrator you cannot change your role."
3096
+ msgstr "Som administrator kan du ikke ændre din rolle."
3097
+
3098
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3099
+ msgid ""
3100
+ "\n"
3101
+ "<p>{{username}} has requested a password change via the password reset feature.</p>\n"
3102
+ "<p>His/her new password is: {{password}}</p>\n"
3103
+ msgstr ""
3104
+ "\n"
3105
+ "<p>{{username}} har foretaget en ændring af adgangskoden via genskab adgangskode.</p>\n"
3106
+ "\n"
3107
+ "<p>Hans/hendes nye adgangskode er: {{password}}</p>\n"
3108
+ "\n"
3109
+
3110
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3111
+ msgid "Admin Notification for User Password Reset"
3112
+ msgstr "Admin meddelelse for genskabning af bruger adgangskode"
3113
+
3114
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
3115
+ msgid "Reset Key"
3116
+ msgstr "Genskab nøgle"
3117
+
3118
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
3119
+ msgid "Reset Url"
3120
+ msgstr "Genskab URL"
3121
+
3122
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
3123
+ msgid "Reset Link"
3124
+ msgstr "Genskab link"
3125
+
3126
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3127
+ msgid ""
3128
+ "\n"
3129
+ "<p>Someone requested that the password be reset for the following account: {{site_name}}<br/>\n"
3130
+ "Username: {{username}}</p>\n"
3131
+ "<p>If this was a mistake, just ignore this email and nothing will happen.</p>\n"
3132
+ "<p>To reset your password, visit the following address:<br/>\n"
3133
+ "{{{reset_link}}}</p>\n"
3134
+ msgstr ""
3135
+ "\n"
3136
+ "<p>Nogen har foretaget en genskabning af adgangskoden for følgende konto: {{site_name}}<br/>\n"
3137
+ "Brugernavn: {{username}}</p>\n"
3138
+ "<p>Hvis dette var en fejl skal du blot se bort fra denne email og intet vil ske.</p>\n"
3139
+ "<p>For at genskabe din adgangskode gå ind på følgende adresse:<br/>\n"
3140
+ "{{{reset_link}}}</p>\n"
3141
+
3142
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3143
+ msgid "[{{site_name}}] Password Reset"
3144
+ msgstr "[{{site_name}}] Nulstil adgangskode "
3145
+
3146
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3147
+ msgid "Password Reset Email"
3148
+ msgstr "E-mail vedr. nulstilling af adgangskode"
3149
+
3150
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3151
+ msgid ""
3152
+ "\n"
3153
+ "<p>You have successfully reset your password to: {{password}}</p>\n"
3154
+ msgstr ""
3155
+ "\n"
3156
+ "<p>Du har med succes nulstillet din adgangskode til: {{password}}</p>\n"
3157
+ "\n"
3158
+
3159
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3160
+ msgid "[{{site_name}}] Password Reset Successfully"
3161
+ msgstr "[{{site_name}}] Adgangskode nulstillet succesfuldt"
3162
+
3163
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3164
+ msgid "Password Reset Success Email"
3165
+ msgstr "E-mail vedr. adgangskode nulstillet succesfuldt"
3166
+
3167
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3168
+ msgid "User Nicename"
3169
+ msgstr "Bruger kaldenavn"
3170
+
3171
+ #: pb-add-on-woocommerce/woosync-page.php:80
3172
+ #: pb-add-on-woocommerce/woosync-page.php:114
3173
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:499
3174
+ msgid "None"
3175
+ msgstr "Ingen"
3176
+
3177
+ #: profile-builder-2.0/admin/admin-functions.php:132
3178
+ msgid "<strong>ERROR</strong>: The password must have the minimum length of %s characters"
3179
+ msgstr "<strong>FEJL</strong>: Adgangskoden skal bestå af mindst %s characters"
3180
+
3181
+ #: profile-builder-2.0/admin/admin-functions.php:148
3182
+ msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3183
+ msgstr "<strong>FEJL</strong>: Adgangskodens styrke skal være mindst: %s"
3184
+
3185
+ #: profile-builder-2.0/admin/general-settings.php:179
3186
+ msgid "Username and Email"
3187
+ msgstr "Brugernavn og e-mail"
3188
+
3189
+ #: profile-builder-2.0/admin/general-settings.php:184
3190
+ msgid "\"Username and Email\" - users can Log In with both Username and Email."
3191
+ msgstr "\"Brugernavn og e-mail\" - brugere kan logge ind med såvel brugernavn som e-mail."
3192
+
3193
+ #: profile-builder-2.0/admin/general-settings.php:185
3194
+ msgid "\"Username\" - users can Log In only with Username."
3195
+ msgstr "\"Brugernavn\" - brugere kan kun logge ind med brugernavn."
3196
+
3197
+ #: profile-builder-2.0/admin/general-settings.php:186
3198
+ msgid "\"Email\" - users can Log In only with Email."
3199
+ msgstr "\"E-mail\" - brugere kan kun logge ind med e-mail."
3200
+
3201
+ #: profile-builder-2.0/admin/manage-fields.php:124
3202
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3203
+ msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default: .jpg,.jpeg,.gif,.png (.*)"
3204
+
3205
+ #: profile-builder-2.0/admin/manage-fields.php:125
3206
+ msgid "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,.ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file extensions (.*)"
3207
+ msgstr "Specificer hvilke filformater (extensions) du ønsker at afgrænse til i uploads<br/>Eks: .ext1,.ext2,.ext3<br/>Hvis ikke specificeret er default alle WordPress tilladte filformater (.*)"
3208
+
3209
+ #: profile-builder-2.0/admin/manage-fields.php:135
3210
+ msgid "User Roles"
3211
+ msgstr "Brugerroller"
3212
+
3213
+ #: profile-builder-2.0/admin/manage-fields.php:135
3214
+ msgid "Select which user roles to show to the user ( drag and drop to re-order )"
3215
+ msgstr "Vælg hvilke brugerroller der skal vises for brugerne (\"træk\" og \"slip\" for at om-organiserer)"
3216
+
3217
+ #: profile-builder-2.0/admin/manage-fields.php:136
3218
+ msgid "User Roles Order"
3219
+ msgstr "Brugerroller orden"
3220
+
3221
+ #: profile-builder-2.0/admin/manage-fields.php:136
3222
+ msgid "Save the user role order from the user roles checkboxes"
3223
+ msgstr "Gem brugerrolle ordenen fra brugerrollernes tjekbokse"
3224
+
3225
+ #: profile-builder-2.0/admin/manage-fields.php:1128
3226
+ msgid "Please select at least one user role\n"
3227
+ msgstr "Vælg venligst mindst en brugerrolle\n"
3228
+
3229
+ #: profile-builder-2.0/admin/register-version.php:22
3230
+ msgid "Profile Builder Register"
3231
+ msgstr "Registrer Profile Builder"
3232
+
3233
+ #: profile-builder-2.0/admin/register-version.php:81
3234
+ msgid "The serial number is about to expire soon!"
3235
+ msgstr "Serienummeret udløber snart!"
3236
+
3237
+ #: profile-builder-2.0/admin/register-version.php:81
3238
+ msgid " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3239
+ msgstr "Dit serienummer er ved at udløbe, venligst %1$s forny din licens%2$s."
3240
+
3241
+ #: profile-builder-2.0/admin/register-version.php:83
3242
+ msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3243
+ msgstr " Dit serienummer er udløbet, venligst %1$s forny din licens%2$s."
3244
+
3245
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3246
+ msgid "Add Entry"
3247
+ msgstr "Tilføj post"
3248
+
3249
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3250
+ msgid "show"
3251
+ msgstr "vis"
3252
+
3253
+ #: profile-builder-2.0/features/functions.php:736
3254
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sNetwork Settings%2$s, and under Registration Settings make sure to check “User accounts may be registered”. %3$sDismiss%4$s"
3255
+ msgstr "For at tillade brugere at registrere sig på din hjemmeside via Profile Builder, skal du først aktivere brugerregistrering. Gå til %1$sNetwork Settings%2$s, og under registreringsopsætningen sørg for at sætte markering ved “Brugerkonti må registreres.” %3$sDismiss%4$s"
3256
+
3257
+ #: profile-builder-2.0/front-end/class-formbuilder.php:659
3258
+ msgid "User to edit:"
3259
+ msgstr "Bruger der skal redigeres:"
3260
+
3261
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3262
+ #: profile-builder-2.0/front-end/recover.php:262
3263
+ msgid "The password must have the minimum length of %s characters"
3264
+ msgstr "Adgangskoden skal have en minimumslængde på %s karakterer"
3265
+
3266
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3267
+ #: profile-builder-2.0/front-end/recover.php:266
3268
+ msgid "The password must have a minimum strength of %s"
3269
+ msgstr "Adgangskoden skal minimum have en styrke på %s"
3270
+
3271
+ #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
3272
+ msgid "You cannot register this user role"
3273
+ msgstr "Du kan ikke registrere denne brugerrolle"
3274
+
3275
+ #: profile-builder-2.0/front-end/login.php:153
3276
+ msgid "username or email"
3277
+ msgstr "brugernavn eller e-mail"
3278
+
3279
+ #: profile-builder-2.0/front-end/login.php:222
3280
+ msgid "Username or Email"
3281
+ msgstr "Brugernavn eller e-mail"
3282
+
3283
+ #: profile-builder-2.0/front-end/logout.php:15
3284
+ msgid "You are currently logged in as %s. "
3285
+ msgstr "Du er i øjeblikket logget ind som %s."
3286
+
3287
+ #: profile-builder-2.0/front-end/logout.php:15
3288
+ msgid "Log out &raquo;"
3289
+ msgstr "Log ud &raquo;"
3290
+
3291
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3292
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3293
+ msgid "User Role"
3294
+ msgstr "Brugerrolle"
3295
+
3296
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
3297
+ msgid "View all extra shortcode parameters"
3298
+ msgstr "Se alle ekstra \"shortcode\" parametre"
3299
+
3300
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3301
+ msgid "displays only the users that you specified the user_id for"
3302
+ msgstr "vis kun de brugere som du specificerede 'user_id' for"
3303
+
3304
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3305
+ msgid "displays all users except the ones you specified the user_id for"
3306
+ msgstr "vis alle brugere undtagen dem som du specificerede 'user_id' for"
3307
+
3308
+ #: profile-builder-2.0/features/functions.php:566
3309
+ msgid "Minimum length of %d characters"
3310
+ msgstr "Minimum længde på %d karakterer"
3311
+
3312
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
3313
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
3314
+ msgid "This message is only visible by administrators"
3315
+ msgstr "Denne meddelelse er kun synlig for administratorer"
3316
+
3317
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:413
3318
+ msgid "User not found"
3319
+ msgstr "Bruger ikke fundet"
3320
+
3321
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3322
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3323
+ msgid "Valid tags {{reply_to}} and {{site_name}}"
3324
+ msgstr "Gyldige tags {{reply_to}} og{{site_name}}"
3325
+
3326
+ #: profile-builder-2.0/admin/admin-bar.php:48
3327
+ msgid "Choose which user roles view the admin bar in the front-end of the website."
3328
+ msgstr "Vælg hvilke brugerroller der skal se kontrolpanelet på sitets 'front-end'."
3329
+
3330
+ #: profile-builder-2.0/admin/manage-fields.php:129
3331
+ msgid "Enter a comma separated list of values<br/>This can be anything, as it is hidden from the user, but should not contain special characters or apostrophes"
3332
+ msgstr "Indsæt en komma separeret liste med værdier<br/>Det kan være hvad som helst, idet værdierne er skjulte for brugeren. Men listen må ikke indeholde specielle karakterer eller apostroffer."
3333
+
3334
+ #: profile-builder-2.0/admin/manage-fields.php:1055
3335
+ msgid "The meta-name cannot be empty\n"
3336
+ msgstr "'Meta-name' kan ikke være tom\n"
3337
+
3338
+ #: profile-builder-2.0/admin/register-version.php:69
3339
+ msgid "Now that you acquired a copy of %s, you should take the time and register it with the serial number you received"
3340
+ msgstr "Nu du har erhvervet en kopi af %s bør du tage dig tid til at registrere det med serienummeret som du modtog."
3341
+
3342
+ #: profile-builder-2.0/admin/register-version.php:243
3343
+ msgid "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing. <br/>Please %1$sregister your copy%2$s to receive access to automatic updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3344
+ msgstr "<p>Din<strong>Profile Builder</strong> serienummer er ugyldigt eller mangler. <br/>Venligst %1$sregistrer din kopi%2$s for at få adgang til automatiske opdateringer og support.Har du brug for en licensnøgle? %3$sPurchase one now%4$s</p>"
3345
+
3346
+ #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3347
+ #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3348
+ #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3349
+ #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3350
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
3351
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
3352
+ msgid "...Choose"
3353
+ msgstr "...Vælg"
3354
+
3355
+ #: profile-builder-2.0/features/class-list-table.php:526
3356
+ #: profile-builder-2.0/features/class-list-table.php:942
3357
+ msgid "1 item"
3358
+ msgstr "1 emne"
3359
+
3360
+ #: profile-builder-2.0/features/functions.php:552
3361
+ msgid "Very Weak"
3362
+ msgstr "Meget svag"
3363
+
3364
+ #: profile-builder-2.0/features/functions.php:640
3365
+ msgid "This field is required"
3366
+ msgstr "Dette felt er obligatorisk"
3367
+
3368
+ #: profile-builder-2.0/features/functions.php:704
3369
+ msgid "Cancel"
3370
+ msgstr "Annuller"
3371
+
3372
+ #: profile-builder-2.0/features/functions.php:740
3373
+ msgid "To allow users to register for your website via Profile Builder, you first must enable user registration. Go to %1$sSettings -> General%2$s tab, and under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3374
+ msgstr "For at tillade bruger at registrere sig på dit site via Profile Builder, skal du først aktiverer brugerregistrering. Gå til %1$sIndstillinger -> Generel%2$s fane, og under Medlemskab sørge for at markere “Alle kan registrere sig\". %3$sAfvis%4$s"
3375
+
3376
+ #: profile-builder-2.0/front-end/login.php:144
3377
+ msgid "Invalid username."
3378
+ msgstr "Ugyldigt brugernavn"
3379
+
3380
+ #: profile-builder-2.0/front-end/login.php:149
3381
+ #: profile-builder-2.0/front-end/login.php:153
3382
+ msgid "username"
3383
+ msgstr "brugernavn"
3384
+
3385
+ #: profile-builder-2.0/front-end/login.php:149
3386
+ msgid "email"
3387
+ msgstr "e-mail"
3388
+
3389
+ #: profile-builder-2.0/front-end/login.php:256
3390
+ msgid "Lost your password?"
3391
+ msgstr "Mistet din adgangskode?"
3392
+
3393
+ #: profile-builder-2.0/index.php:34
3394
+ msgid " is also activated. You need to deactivate it before activating this version of the plugin."
3395
+ msgstr "er også aktiveret. Du skal deaktivere det før aktivering af plugin'et."
3396
+
3397
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3398
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3399
+ msgid "Must be a valid email address or the tag {{reply_to}} which defaults to the administrator email"
3400
+ msgstr "Skal være en gyldig e-mail adresse eller {{reply_to}} som default for administrator e-mailen"
3401
+
3402
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3403
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3404
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
3405
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
3406
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
3407
+ msgid "Your selected password at signup"
3408
+ msgstr "Din valgte adgangskode ved oprettelse"
3409
+
3410
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3411
+ msgid "These settings are also replicated in the \"Admin Email Customizer\" settings-page upon save."
3412
+ msgstr "Disse indstillinger gemmes ligeledes på indstillingssiden på 'Admin Email Customizer', når de gemmes."
3413
+
3414
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
3415
+ msgid "This form is empty."
3416
+ msgstr "Denne formular er tom."
3417
+
3418
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3419
+ msgid "Delete all items"
3420
+ msgstr "Slet alle emner"
3421
+
3422
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3423
+ msgid "Delete all"
3424
+ msgstr "Slet alt"
3425
+
3426
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1621
3427
+ msgid "Choose..."
3428
+ msgstr "Vælg..."
3429
+
3430
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
3431
+ msgid "Set the number of users to be displayed on every paginated part of the all-userlisting"
3432
+ msgstr "Angiv antallet af brugere som vises på hver side af den samlede brugeroversigt"
3433
+
3434
+ #: profile-builder-2.0/admin/admin-bar.php:10
3435
+ msgid "Show/Hide the Admin Bar on the Front-End"
3436
+ msgstr "Vis/Skjul 'Admin menu' på 'Front-end'"
3437
+
3438
+ #: profile-builder-2.0/admin/admin-bar.php:10
3439
+ #: profile-builder-2.0/admin/admin-bar.php:47
3440
+ msgid "Admin Bar Settings"
3441
+ msgstr "Admin menu indstillinger "
3442
+
3443
+ #: profile-builder-2.0/admin/admin-bar.php:57
3444
+ msgid "User-Role"
3445
+ msgstr "Brugerrolle"
3446
+
3447
+ #: profile-builder-2.0/admin/admin-bar.php:58
3448
+ msgid "Visibility"
3449
+ msgstr "Synlighed"
3450
+
3451
+ #: profile-builder-2.0/admin/admin-bar.php:73
3452
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3453
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3454
+ msgid "Default"
3455
+ msgstr "Default"
3456
+
3457
+ #: profile-builder-2.0/admin/admin-bar.php:74
3458
+ msgid "Show"
3459
+ msgstr "Vis"
3460
+
3461
+ #: profile-builder-2.0/admin/admin-bar.php:75
3462
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1554
3463
+ msgid "Hide"
3464
+ msgstr "Skjul"
3465
+
3466
+ #: pb-add-on-woocommerce/woosync-page.php:147
3467
+ #: profile-builder-2.0/admin/admin-bar.php:86
3468
+ #: profile-builder-2.0/admin/general-settings.php:224
3469
+ #: profile-builder-2.0/admin/register-version.php:95
3470
+ #: profile-builder-2.0/features/functions.php:697
3471
+ #: profile-builder-2.0/modules/modules.php:127
3472
+ msgid "Save Changes"
3473
+ msgstr "Gem ændringer"
3474
+
3475
+ #: profile-builder-2.0/admin/admin-functions.php:37
3476
+ msgid "Login is set to be done using the E-mail. This field will NOT appear in the front-end! ( you can change these settings under the \"%s\" tab )"
3477
+ msgstr "Login er indstillet til at blive foretaget ved hjælp af e-mail. Dette felt vil IKKE fremgå af 'front-end'! (du kan ændre disse indstillinger på \"%s\" fanen)"
3478
+
3479
+ #: profile-builder-2.0/admin/admin-functions.php:37
3480
+ #: profile-builder-2.0/admin/general-settings.php:10
3481
+ #: profile-builder-2.0/admin/general-settings.php:35
3482
+ msgid "General Settings"
3483
+ msgstr "Generelle indstillinger"
3484
+
3485
+ #: profile-builder-2.0/admin/admin-functions.php:137
3486
+ #: profile-builder-2.0/admin/general-settings.php:210
3487
+ msgid "Very weak"
3488
+ msgstr "Meget svag"
3489
+
3490
+ #: profile-builder-2.0/admin/admin-functions.php:137
3491
+ #: profile-builder-2.0/admin/general-settings.php:211
3492
+ #: profile-builder-2.0/features/functions.php:552
3493
+ msgid "Weak"
3494
+ msgstr "Svag"
3495
+
3496
+ #: profile-builder-2.0/admin/admin-functions.php:137
3497
+ #: profile-builder-2.0/admin/general-settings.php:212
3498
+ #: profile-builder-2.0/features/functions.php:552
3499
+ msgid "Medium"
3500
+ msgstr "Middel"
3501
+
3502
+ #: profile-builder-2.0/admin/admin-functions.php:137
3503
+ #: profile-builder-2.0/admin/general-settings.php:213
3504
+ #: profile-builder-2.0/features/functions.php:552
3505
+ msgid "Strong"
3506
+ msgstr "Stærk"
3507
+
3508
+ #: profile-builder-2.0/admin/admin-functions.php:187
3509
+ msgid "Add Field"
3510
+ msgstr "Tilføj felt"
3511
+
3512
+ #: profile-builder-2.0/admin/admin-functions.php:189
3513
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
3514
+ msgid "Save Settings"
3515
+ msgstr "Gem indstillinger"
3516
+
3517
+ #: profile-builder-2.0/admin/basic-info.php:10
3518
+ msgid "Basic Information"
3519
+ msgstr "Basis information"
3520
+
3521
+ #: profile-builder-2.0/admin/basic-info.php:29
3522
+ msgid "Version %s"
3523
+ msgstr "Version %s"
3524
+
3525
+ #: profile-builder-2.0/admin/basic-info.php:30
3526
+ msgid "<strong>Profile Builder </strong>"
3527
+ msgstr "<strong>Profile Builder </strong>"
3528
+
3529
+ #: profile-builder-2.0/admin/basic-info.php:31
3530
+ msgid "The best way to add front-end registration, edit profile and login forms."
3531
+ msgstr "Den bedste måde at tilføje 'front-end' registrering, redigere profile og login formularer på."
3532
+
3533
+ #: profile-builder-2.0/admin/basic-info.php:33
3534
+ msgid "For Modern User Interaction"
3535
+ msgstr "Til 'Modern User Interaction'"
3536
+
3537
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
3538
+ #: profile-builder-2.0/admin/basic-info.php:36
3539
+ #: profile-builder-2.0/features/login-widget/login-widget.php:59
3540
+ msgid "Login"
3541
+ msgstr "Log ind"
3542
+
3543
+ #: profile-builder-2.0/admin/basic-info.php:40
3544
+ msgid "Registration"
3545
+ msgstr "Registrering"
3546
+
3547
+ #: profile-builder-2.0/admin/basic-info.php:44
3548
+ msgid "Edit Profile"
3549
+ msgstr "Rediger profil"
3550
+
3551
+ #: profile-builder-2.0/admin/basic-info.php:51
3552
+ msgid "Extra Features"
3553
+ msgstr "Ekstra funktioner"
3554
+
3555
+ #: profile-builder-2.0/admin/basic-info.php:52
3556
+ msgid "Features that give you more control over your users, increased security and help you fight user registration spam."
3557
+ msgstr "Funktioner som giver dig mere kontrol over dine brugere, forbedret sikkerhed og hjælper dig med at bekæmpe spam ved brugerregistrering."
3558
+
3559
+ #: profile-builder-2.0/admin/basic-info.php:53
3560
+ msgid "Enable extra features"
3561
+ msgstr "Aktiver ekstra funktioner"
3562
+
3563
+ #: profile-builder-2.0/admin/basic-info.php:57
3564
+ msgid "Recover Password"
3565
+ msgstr "Genskab adgangskode"
3566
+
3567
+ #: profile-builder-2.0/admin/basic-info.php:61
3568
+ msgid "Admin Approval (*)"
3569
+ msgstr "Admin godkendelse (*)"
3570
+
3571
+ #: profile-builder-2.0/admin/basic-info.php:62
3572
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI."
3573
+ msgstr "Du bestemmer hvem der er bruger på dit site. Få besked via e-mail eller godkende flere brugere ad gangen fra WordPress UI."
3574
+
3575
+ #: profile-builder-2.0/admin/basic-info.php:65
3576
+ msgid "Email Confirmation"
3577
+ msgstr "E-mail bekræftelse"
3578
+
3579
+ #: profile-builder-2.0/admin/basic-info.php:66
3580
+ msgid "Make sure users sign up with genuine emails. On registration users will receive a notification to confirm their email address."
3581
+ msgstr "Sørg for at brugere registrerer med en ægte e-mail adresse. Ved registrering vil brugerne modtage en e-mail, hvori de skal bekræfte deres e-mail adresse."
3582
+
3583
+ #: profile-builder-2.0/admin/basic-info.php:69
3584
+ msgid "Minimum Password Length and Strength Meter"
3585
+ msgstr "Minimum længde og styrke på adgangskode"
3586
+
3587
+ #: profile-builder-2.0/admin/basic-info.php:70
3588
+ msgid "Eliminate weak passwords altogether by setting a minimum password length and enforcing a certain password strength."
3589
+ msgstr "Undgå svage adgangskoder ved at sætte et krav om min. længde samt sætte et krav om en vis styrke på adgangskoden."
3590
+
3591
+ #: profile-builder-2.0/admin/basic-info.php:73
3592
+ msgid "Login with Email or Username"
3593
+ msgstr "Log ind med e-mail eller brugernavn"
3594
+
3595
+ #: profile-builder-2.0/admin/basic-info.php:74
3596
+ msgid "Allow users to log in with their email or username when accessing your site."
3597
+ msgstr "Tillad brugere at logge ind med deres e-mail eller brugernavn når de logger ind på dit site."
3598
+
3599
+ #: profile-builder-2.0/admin/basic-info.php:87
3600
+ msgid "Customize Your Forms The Way You Want (*)"
3601
+ msgstr "Tilpas dine formularer som du ønsker det (*)"
3602
+
3603
+ #: profile-builder-2.0/admin/basic-info.php:88
3604
+ msgid "With Extra Profile Fields you can create the exact registration form your project needs."
3605
+ msgstr "Med ekstra profil felter kan du lave nøjagtigt den registreringsformular, som dit projekt har brug for. "
3606
+
3607
+ #: profile-builder-2.0/admin/basic-info.php:90
3608
+ msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
3609
+ msgstr "Ekstra profilfelter er tilgængelig i Hobbyist og PRO versionerne"
3610
+
3611
+ #: profile-builder-2.0/admin/basic-info.php:92
3612
+ msgid "Get started with extra fields"
3613
+ msgstr "Kom i gang med ekstra felter"
3614
+
3615
+ #: profile-builder-2.0/admin/basic-info.php:95
3616
+ msgid "Avatar Upload"
3617
+ msgstr "Avatar upload"
3618
+
3619
+ #: profile-builder-2.0/admin/basic-info.php:96
3620
+ msgid "Generic Uploads"
3621
+ msgstr "Generisk upload"
3622
+
3623
+ #: profile-builder-2.0/admin/basic-info.php:97
3624
+ msgid "Agree To Terms Checkbox"
3625
+ msgstr "Accept af betingelser tjekboks"
3626
+
3627
+ #: profile-builder-2.0/admin/basic-info.php:98
3628
+ msgid "Datepicker"
3629
+ msgstr "Datovælger"
3630
+
3631
+ #: profile-builder-2.0/admin/basic-info.php:101
3632
+ msgid "reCAPTCHA"
3633
+ msgstr "reCAPTCHA"
3634
+
3635
+ #: profile-builder-2.0/admin/basic-info.php:102
3636
+ msgid "Country Select"
3637
+ msgstr "Landevalg"
3638
+
3639
+ #: profile-builder-2.0/admin/basic-info.php:104
3640
+ msgid "Timezone Select"
3641
+ msgstr "Tidszone valg"
3642
+
3643
+ #: profile-builder-2.0/admin/basic-info.php:108
3644
+ msgid "Input / Hidden Input"
3645
+ msgstr "Input / Skjult input"
3646
+
3647
+ #: profile-builder-2.0/admin/basic-info.php:110
3648
+ msgid "Checkbox"
3649
+ msgstr "Tjekboks"
3650
+
3651
+ #: profile-builder-2.0/admin/basic-info.php:111
3652
+ msgid "Select"
3653
+ msgstr "Vælg"
3654
+
3655
+ #: profile-builder-2.0/admin/basic-info.php:112
3656
+ msgid "Radio Buttons"
3657
+ msgstr "'Radio' knapper"
3658
+
3659
+ #: profile-builder-2.0/admin/basic-info.php:113
3660
+ msgid "Textarea"
3661
+ msgstr "Tekstområde"
3662
+
3663
+ #: profile-builder-2.0/admin/basic-info.php:125
3664
+ msgid "Powerful Modules (**)"
3665
+ msgstr "Stærke moduler (**)"
3666
+
3667
+ #: profile-builder-2.0/admin/basic-info.php:126
3668
+ msgid "Everything you will need to manage your users is probably already available using the Pro Modules."
3669
+ msgstr "Alt hvad du behøver for at håndtere dine brugere er formentlig allerede tilgængeligt ved at bruge Pro Moduler."
3670
+
3671
+ #: profile-builder-2.0/admin/basic-info.php:128
3672
+ msgid "Enable your modules"
3673
+ msgstr "Aktiver dine moduler"
3674
+
3675
+ #: profile-builder-2.0/admin/basic-info.php:131
3676
+ msgid "Find out more about PRO Modules"
3677
+ msgstr "Fin ud af mere om PRO Moduler"
3678
+
3679
+ #: profile-builder-2.0/admin/basic-info.php:136
3680
+ #: profile-builder-2.0/modules/modules.php:89
3681
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:11
3682
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:12
3683
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:17
3684
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:23
3685
+ msgid "User Listing"
3686
+ msgstr "Brugeroversigt"
3687
+
3688
+ #: profile-builder-2.0/admin/basic-info.php:138
3689
+ msgid "Easy to edit templates for listing your website users as well as creating single user pages. Shortcode based, offering many options to customize your listings."
3690
+ msgstr "Brugervenlige skabeloner gør det muligt at liste dit websites bruger ligesom du kan skabe enkelt bruger sider. Og så er det 'Shortcode' baseret, som gør det muligt for dig at tilpasse dine lister/oversigter. "
3691
+
3692
+ #: profile-builder-2.0/admin/basic-info.php:144
3693
+ msgid "Email Customizer"
3694
+ msgstr "E-mail opsætning"
3695
+
3696
+ #: profile-builder-2.0/admin/basic-info.php:145
3697
+ msgid "Personalize all emails sent to your users or admins. On registration, email confirmation, admin approval / un-approval."
3698
+ msgstr "Personaliser alle e-mails sendt til dine brugere eller administratorer. Ved registrering, e-mail bekræftelse, administrator godkendelse / afvisning."
3699
+
3700
+ #: profile-builder-2.0/admin/basic-info.php:148
3701
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
3702
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
3703
+ #: profile-builder-2.0/modules/modules.php:110
3704
+ msgid "Custom Redirects"
3705
+ msgstr "Brugertilpassede omdirigeringer ('redirects')"
3706
+
3707
+ #: profile-builder-2.0/admin/basic-info.php:149
3708
+ msgid "Keep your users out of the WordPress dashboard, redirect them to the front-page after login or registration, everything is just a few clicks away."
3709
+ msgstr "Hold dine brugere ud af Wordpress' kontrolpanel ('dashboard'), omdiriger dem til forsiden efter login eller registrering. Alt dette er kun nogle få klik væk."
3710
+
3711
+ #: profile-builder-2.0/admin/basic-info.php:154
3712
+ #: profile-builder-2.0/modules/modules.php:75
3713
+ msgid "Multiple Registration Forms"
3714
+ msgstr "Forskellige registreringsformularer"
3715
+
3716
+ #: profile-builder-2.0/admin/basic-info.php:155
3717
+ msgid "Set up multiple registration forms with different fields for certain user roles. Capture different information from different types of users."
3718
+ msgstr "Opsæt forskellige registreringsformularer med forskellige felter tilpasset bestemte brugeroller. Indsaml forskelligt information fra forskellige brugertyper."
3719
+
3720
+ #: profile-builder-2.0/admin/basic-info.php:158
3721
+ #: profile-builder-2.0/modules/modules.php:82
3722
+ msgid "Multiple Edit-profile Forms"
3723
+ msgstr "Forskellige profil redigerings formularer"
3724
+
3725
+ #: profile-builder-2.0/admin/basic-info.php:159
3726
+ msgid "Allow different user roles to edit their specific information. Set up multiple edit-profile forms with different fields for certain user roles."
3727
+ msgstr "Tillad forskellige brugerroller at redigere deres specifikke information. Opsæt forskellige profil redigerings formularer med forskellige felter tilpasset bestemte brugerroller."
3728
+
3729
+ #: profile-builder-2.0/admin/basic-info.php:187
3730
+ msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
3731
+ msgstr " * kun tilgængelig %1$sHobbyist and Pro versionerne%2$s."
3732
+
3733
+ #: profile-builder-2.0/admin/basic-info.php:188
3734
+ msgid "** only available in the %1$sPro version%2$s."
3735
+ msgstr "** kun tilgængelig i %1$sPro version%2$s."
3736
+
3737
+ #: profile-builder-2.0/admin/general-settings.php:39
3738
+ msgid "Load Profile Builder's own CSS file in the front-end:"
3739
+ msgstr "Brug Profile Builders egen CSS fil i 'front-end':"
3740
+
3741
+ #: profile-builder-2.0/admin/general-settings.php:42
3742
+ #: profile-builder-2.0/admin/general-settings.php:55
3743
+ #: profile-builder-2.0/admin/general-settings.php:104
3744
+ #: profile-builder-2.0/admin/general-settings.php:151
3745
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3746
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3747
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3748
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
3749
+ msgid "Yes"
3750
+ msgstr "Ja"
3751
+
3752
+ #: profile-builder-2.0/admin/general-settings.php:44
3753
+ msgid "You can find the default file here: %1$s"
3754
+ msgstr "Du kan finde default filen her: %1$s"
3755
+
3756
+ #: profile-builder-2.0/admin/general-settings.php:51
3757
+ msgid "\"Email Confirmation\" Activated:"
3758
+ msgstr "\"E-mail bekræftelse\" aktiveret:"
3759
+
3760
+ #: profile-builder-2.0/admin/general-settings.php:56
3761
+ #: profile-builder-2.0/admin/general-settings.php:105
3762
+ #: profile-builder-2.0/admin/general-settings.php:150
3763
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
3764
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
3765
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
3766
+ msgid "No"
3767
+ msgstr "Nej"
3768
+
3769
+ #: profile-builder-2.0/admin/general-settings.php:61
3770
+ msgid "You can find a list of unconfirmed email addresses %1$sUsers > All Users > Email Confirmation%2$s."
3771
+ msgstr "Du kan finde en liste over ubekræftede e-mail adresser %1$sUsers > All Users > Email Confirmation%2$s."
3772
+
3773
+ #: profile-builder-2.0/admin/general-settings.php:69
3774
+ msgid "\"Email Confirmation\" Landing Page:"
3775
+ msgstr "\"E-mail bekræftelse\" landings side:"
3776
+
3777
+ #: profile-builder-2.0/admin/general-settings.php:74
3778
+ msgid "Existing Pages"
3779
+ msgstr "Eksisterende sider"
3780
+
3781
+ #: profile-builder-2.0/admin/general-settings.php:89
3782
+ msgid "Specify the page where the users will be directed when confirming the email account. This page can differ from the register page(s) and can be changed at any time. If none selected, a simple confirmation page will be displayed for the user."
3783
+ msgstr "Angiv siden hvortil brugere bliver omdirigeret til når de bekræfter e-mail kontoen. Denne side kan være forskellig fra registrerings siden (siderne) og kan altid ændres. Hvis ingen er valgt vises der en simpel bekræftelsesside for brugeren."
3784
+
3785
+ #: profile-builder-2.0/admin/general-settings.php:100
3786
+ msgid "\"Admin Approval\" Activated:"
3787
+ msgstr "\"Administrator godkendelse\" aktiveret:"
3788
+
3789
+ #: profile-builder-2.0/admin/general-settings.php:108
3790
+ msgid "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
3791
+ msgstr "Du kan finde en liste med brugere på %1$sUsers > All Users > Admin Approval%2$s."
3792
+
3793
+ #: profile-builder-2.0/admin/general-settings.php:165
3794
+ msgid "\"Admin Approval\" Feature:"
3795
+ msgstr "\"Administrator godkendelse\" funktion:"
3796
+
3797
+ #: profile-builder-2.0/admin/general-settings.php:168
3798
+ msgid "You decide who is a user on your website. Get notified via email or approve multiple users at once from the WordPress UI. Enable Admin Approval by upgrading to %1$sHobbyist or PRO versions%2$s."
3799
+ msgstr "Du bestemmer hvem der er bruger på dit website. Bliv informeret via e-mail eller godkend flere brugere samlet ('bulk') via WordPress UI. Aktiver 'Administrator godkendelse' ved at opgradere til %1$sHobbyist or PRO versions%2$s."
3800
+
3801
+ #: profile-builder-2.0/admin/general-settings.php:175
3802
+ msgid "Allow Users to Log in With:"
3803
+ msgstr "Tillad brugere at logge ind med:"
3804
+
3805
+ #: profile-builder-2.0/admin/general-settings.php:180
3806
+ #: profile-builder-2.0/admin/manage-fields.php:201
3807
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
3808
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
3809
+ #: profile-builder-2.0/front-end/login.php:85
3810
+ #: profile-builder-2.0/front-end/login.php:99
3811
+ #: profile-builder-2.0/front-end/login.php:218
3812
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
3813
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
3814
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:102
3815
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:277
3816
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:730
3817
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2219
3818
+ msgid "Username"
3819
+ msgstr "Brugernavn"
3820
+
3821
+ #: profile-builder-2.0/admin/general-settings.php:181
3822
+ #: profile-builder-2.0/front-end/login.php:215
3823
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
3824
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:736
3825
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2220
3826
+ msgid "Email"
3827
+ msgstr "E-mail"
3828
+
3829
+ #: profile-builder-2.0/admin/general-settings.php:193
3830
+ msgid "Minimum Password Length:"
3831
+ msgstr "Min. længde på adgangskode:"
3832
+
3833
+ #: profile-builder-2.0/admin/general-settings.php:198
3834
+ msgid "Enter the minimum characters the password should have. Leave empty for no minimum limit"
3835
+ msgstr "Angiv minimum antallet af karakterer som adgangskoden skal bestå af. Lad feltet være tomt for ikke at have minimumsbegrænsning."
3836
+
3837
+ #: profile-builder-2.0/admin/general-settings.php:205
3838
+ msgid "Minimum Password Strength:"
3839
+ msgstr "Minimum styrke på adgangskode:"
3840
+
3841
+ #: profile-builder-2.0/admin/general-settings.php:209
3842
+ msgid "Disabled"
3843
+ msgstr "Deaktiver"
3844
+
3845
+ #: profile-builder-2.0/admin/manage-fields.php:12
3846
+ msgid "Manage Fields"
3847
+ msgstr "Håndter felter"
3848
+
3849
+ #: profile-builder-2.0/admin/manage-fields.php:13
3850
+ msgid "Manage Default and Extra Fields"
3851
+ msgstr "Håndter standard ('default') og ekstra felter"
3852
+
3853
+ #: profile-builder-2.0/admin/manage-fields.php:118
3854
+ msgid "Field Title"
3855
+ msgstr "Felt titel"
3856
+
3857
+ #: profile-builder-2.0/admin/manage-fields.php:118
3858
+ msgid "Title of the field"
3859
+ msgstr "Feltets titel"
3860
+
3861
+ #: profile-builder-2.0/admin/manage-fields.php:119
3862
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
3863
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
3864
+ msgid "Field"
3865
+ msgstr "Felt"
3866
+
3867
+ #: profile-builder-2.0/admin/manage-fields.php:120
3868
+ msgid "Meta-name"
3869
+ msgstr "Meta-navn"
3870
+
3871
+ #: profile-builder-2.0/admin/manage-fields.php:121
3872
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
3873
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
3874
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
3875
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
3876
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3877
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3878
+ msgid "ID"
3879
+ msgstr "ID"
3880
+
3881
+ #: profile-builder-2.0/admin/manage-fields.php:121
3882
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
3883
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
3884
+ msgid "A unique, auto-generated ID for this particular field<br/>You can use this in conjuction with filters to target this element if needed<br/>Can't be edited"
3885
+ msgstr "En unik autogenereret ID for dette bestemte felt<br/>Du kan bruge dette sammen med filtre for at målrette dette element, hvis nødvendigt.<br/>Kan ikke redigeres "
3886
+
3887
+ #: profile-builder-2.0/admin/manage-fields.php:122
3888
+ msgid "Description"
3889
+ msgstr "Beskrivelse"
3890
+
3891
+ #: profile-builder-2.0/admin/manage-fields.php:122
3892
+ msgid "Enter a (detailed) description of the option for end users to read<br/>Optional"
3893
+ msgstr "Angiv en (detaljeret) beskrivelse til slutbrugerne af muligheden<br/>Valgfri"
3894
+
3895
+ #: profile-builder-2.0/admin/manage-fields.php:123
3896
+ msgid "Row Count"
3897
+ msgstr "Række antal"
3898
+
3899
+ #: profile-builder-2.0/admin/manage-fields.php:123
3900
+ msgid "Specify the number of rows for a 'Textarea' field<br/>If not specified, defaults to 5"
3901
+ msgstr "Angiv antallet af rækker i feltet 'Textarea'<br/>Hvis ikke angivet er default 5 rækker"
3902
+
3903
+ #: profile-builder-2.0/admin/manage-fields.php:124
3904
+ msgid "Allowed Image Extensions"
3905
+ msgstr "Tilladte billedformater ('extensions')"
3906
+
3907
+ #: profile-builder-2.0/admin/manage-fields.php:125
3908
+ msgid "Allowed Upload Extensions"
3909
+ msgstr "Tilladte upload formater ('extensions')"
3910
+
3911
+ #: profile-builder-2.0/admin/manage-fields.php:126
3912
+ msgid "Avatar Size"
3913
+ msgstr "Avatar størrelse"
3914
+
3915
+ #: profile-builder-2.0/admin/manage-fields.php:126
3916
+ msgid "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not specified, defaults to 100"
3917
+ msgstr "Angiv en værdi (mellem 20 og 200) for størrelsen af 'Avatar'<br/>Hvis ikke angivet er default sat til 100"
3918
+
3919
+ #: profile-builder-2.0/admin/manage-fields.php:127
3920
+ msgid "Date-format"
3921
+ msgstr "Datoformat"
3922
+
3923
+ #: profile-builder-2.0/admin/manage-fields.php:128
3924
+ msgid "Terms of Agreement"
3925
+ msgstr "Aftalebetingelser"
3926
+
3927
+ #: profile-builder-2.0/admin/manage-fields.php:128
3928
+ msgid "Enter a detailed description of the temrs of agreement for the user to read.<br/>Links can be inserted by using standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3929
+ msgstr "Angiv en detaljeret beskrivelse til brugerne af aftalebetingelserne.<br/>Link kan indsætte ved at anvende standard HTML syntax: &lt;a href=\"custom_url\"&gt;custom_text&lt;/a&gt;"
3930
+
3931
+ #: profile-builder-2.0/admin/manage-fields.php:129
3932
+ msgid "Options"
3933
+ msgstr "Valgmuligheder"
3934
+
3935
+ #: profile-builder-2.0/admin/manage-fields.php:130
3936
+ msgid "Labels"
3937
+ msgstr "Labels"
3938
+
3939
+ #: profile-builder-2.0/admin/manage-fields.php:130
3940
+ msgid "Enter a comma separated list of labels<br/>Visible for the user"
3941
+ msgstr "Angiv et komme separeret liste med labels<br/>Synlig for brugeren"
3942
+
3943
+ #: profile-builder-2.0/admin/manage-fields.php:137
3944
+ msgid "Default Value"
3945
+ msgstr "Standard værdi"
3946
+
3947
+ #: profile-builder-2.0/admin/manage-fields.php:137
3948
+ msgid "Default value of the field"
3949
+ msgstr "Feltets standardværdi"
3950
+
3951
+ #: profile-builder-2.0/admin/manage-fields.php:138
3952
+ #: profile-builder-2.0/admin/manage-fields.php:140
3953
+ #: profile-builder-2.0/admin/manage-fields.php:141
3954
+ #: profile-builder-2.0/admin/manage-fields.php:142
3955
+ msgid "Default Option"
3956
+ msgstr "Standard indstillingsvalg"
3957
+
3958
+ #: profile-builder-2.0/admin/manage-fields.php:138
3959
+ msgid "Specify the option which should be selected by default"
3960
+ msgstr "Angiv indstillingen som skal vælges som standard"
3961
+
3962
+ #: profile-builder-2.0/admin/manage-fields.php:139
3963
+ msgid "Default Option(s)"
3964
+ msgstr "Standard indstillingsvalg (flere)"
3965
+
3966
+ #: profile-builder-2.0/admin/manage-fields.php:139
3967
+ msgid "Specify the option which should be checked by default<br/>If there are multiple values, separate them with a ',' (comma)"
3968
+ msgstr "Angiv indstillingen som skal vælges som standard<br/>Hvis der er flere valgmuligheder, separer dem med ',' (et komma)"
3969
+
3970
+ #: profile-builder-2.0/admin/manage-fields.php:153
3971
+ msgid "Default Content"
3972
+ msgstr "Standard indhold"
3973
+
3974
+ #: profile-builder-2.0/admin/manage-fields.php:153
3975
+ msgid "Default value of the textarea"
3976
+ msgstr "Standard værdi for tekstområdet ('textarea')"
3977
+
3978
+ #: pb-add-on-woocommerce/index.php:306
3979
+ #: profile-builder-2.0/admin/manage-fields.php:160
3980
+ msgid "Required"
3981
+ msgstr "Krævet"
3982
+
3983
+ #: profile-builder-2.0/admin/manage-fields.php:160
3984
+ msgid "Whether the field is required or not"
3985
+ msgstr "Om feltet er krævet eller ikke"
3986
+
3987
+ #: profile-builder-2.0/admin/manage-fields.php:161
3988
+ msgid "Overwrite Existing"
3989
+ msgstr "Overskriv eksisterende"
3990
+
3991
+ #: profile-builder-2.0/admin/manage-fields.php:161
3992
+ msgid "Selecting 'Yes' will add the field to the list, but will overwrite any other field in the database that has the same meta-name<br/>Use this at your own risk"
3993
+ msgstr "Ved at vælge 'Ja' tilføjes feltet til listen, men vil overskrive ethvert andet felt i databasen som har det samme meta-navn<br/>Brug dette på eget ansvar"
3994
+
3995
+ #: profile-builder-2.0/admin/manage-fields.php:167
3996
+ msgid "Field Properties"
3997
+ msgstr "Felt indstillinger"
3998
+
3999
+ #: profile-builder-2.0/admin/manage-fields.php:181
4000
+ msgid "Registration & Edit Profile"
4001
+ msgstr "Registrering & ændre profil"
4002
+
4003
+ #: profile-builder-2.0/admin/manage-fields.php:200
4004
+ msgid "Name"
4005
+ msgstr "Navn"
4006
+
4007
+ #: profile-builder-2.0/admin/manage-fields.php:201
4008
+ msgid "Usernames cannot be changed."
4009
+ msgstr "Brugernavn kan ikke ændres"
4010
+
4011
+ #: pb-add-on-woocommerce/billing-fields.php:6
4012
+ #: pb-add-on-woocommerce/shipping-fields.php:6
4013
+ #: profile-builder-2.0/admin/manage-fields.php:202
4014
+ msgid "First Name"
4015
+ msgstr "Fornavn"
4016
+
4017
+ #: pb-add-on-woocommerce/billing-fields.php:7
4018
+ #: pb-add-on-woocommerce/shipping-fields.php:7
4019
+ #: profile-builder-2.0/admin/manage-fields.php:203
4020
+ msgid "Last Name"
4021
+ msgstr "Efternavn"
4022
+
4023
+ #: profile-builder-2.0/admin/manage-fields.php:204
4024
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:769
4025
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2227
4026
+ msgid "Nickname"
4027
+ msgstr "Kælenavn"
4028
+
4029
+ #: profile-builder-2.0/admin/manage-fields.php:205
4030
+ msgid "Display name publicly as"
4031
+ msgstr "Vis navn offentligt som"
4032
+
4033
+ #: profile-builder-2.0/admin/manage-fields.php:206
4034
+ msgid "Contact Info"
4035
+ msgstr "Kontakt info"
4036
+
4037
+ #: profile-builder-2.0/admin/manage-fields.php:207
4038
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
4039
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
4040
+ #: profile-builder-2.0/front-end/recover.php:118
4041
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:108
4042
+ msgid "E-mail"
4043
+ msgstr "E-mail"
4044
+
4045
+ #: profile-builder-2.0/admin/manage-fields.php:208
4046
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
4047
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:111
4048
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:751
4049
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2221
4050
+ msgid "Website"
4051
+ msgstr "Website"
4052
+
4053
+ #: profile-builder-2.0/admin/manage-fields.php:212
4054
+ msgid "AIM"
4055
+ msgstr "AIM"
4056
+
4057
+ #: profile-builder-2.0/admin/manage-fields.php:213
4058
+ msgid "Yahoo IM"
4059
+ msgstr "Yahoo IM"
4060
+
4061
+ #: profile-builder-2.0/admin/manage-fields.php:214
4062
+ msgid "Jabber / Google Talk"
4063
+ msgstr "Jabber / Google Talk"
4064
+
4065
+ #: profile-builder-2.0/admin/manage-fields.php:217
4066
+ msgid "About Yourself"
4067
+ msgstr "Om dig selv"
4068
+
4069
+ #: profile-builder-2.0/admin/manage-fields.php:218
4070
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:114
4071
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:754
4072
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2222
4073
+ msgid "Biographical Info"
4074
+ msgstr "Biografi info"
4075
+
4076
+ #: profile-builder-2.0/admin/manage-fields.php:218
4077
+ msgid "Share a little biographical information to fill out your profile. This may be shown publicly."
4078
+ msgstr "Del en lille biografisk information for at fylde din profil ud. Dette kan blive vist offentligt."
4079
+
4080
+ #: profile-builder-2.0/admin/manage-fields.php:219
4081
+ #: profile-builder-2.0/front-end/recover.php:73
4082
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
4083
+ msgid "Password"
4084
+ msgstr "Kodeord"
4085
+
4086
+ #: profile-builder-2.0/admin/manage-fields.php:219
4087
+ msgid "Type your password."
4088
+ msgstr "Skriv din kodeord."
4089
+
4090
+ #: profile-builder-2.0/admin/manage-fields.php:220
4091
+ #: profile-builder-2.0/front-end/recover.php:74
4092
+ msgid "Repeat Password"
4093
+ msgstr "Gentag dit kodeord"
4094
+
4095
+ #: profile-builder-2.0/admin/manage-fields.php:220
4096
+ msgid "Type your password again. "
4097
+ msgstr "Skriv dit kodeord igen."
4098
+
4099
+ #: profile-builder-2.0/admin/manage-fields.php:980
4100
+ #: profile-builder-2.0/admin/manage-fields.php:1137
4101
+ msgid "You must select a field\n"
4102
+ msgstr "Du skal vælge et felt\n"
4103
+
4104
+ #: profile-builder-2.0/admin/manage-fields.php:990
4105
+ msgid "Please choose a different field type as this one already exists in your form (must be unique)\n"
4106
+ msgstr "Vælg venligst en anden felttype, da denne allerede eksistere i din formular. (skal være unik)\n"
4107
+
4108
+ #: profile-builder-2.0/admin/manage-fields.php:1001
4109
+ msgid "The entered avatar size is not between 20 and 200\n"
4110
+ msgstr "Den indsatte avatar størrelse er ikke mellem 20 og 200\n"
4111
+
4112
+ #: profile-builder-2.0/admin/manage-fields.php:1004
4113
+ msgid "The entered avatar size is not numerical\n"
4114
+ msgstr "Det indtastede rækkenummer er ikke nummereret\n"
4115
+
4116
+ #: profile-builder-2.0/admin/manage-fields.php:1012
4117
+ msgid "The entered row number is not numerical\n"
4118
+ msgstr "Det indsatte række nummer er ikke nummeret\n"
4119
+
4120
+ #: profile-builder-2.0/admin/manage-fields.php:1015
4121
+ msgid "You must enter a value for the row number\n"
4122
+ msgstr "Du skal indtaste en værdi for rækkenummeret\n"
4123
+
4124
+ #: profile-builder-2.0/admin/manage-fields.php:1036
4125
+ msgid "The entered value for the Datepicker is not a valid date-format\n"
4126
+ msgstr "Den indsatte værdi for datovælgeren er ikke korret datoformat\n"
4127
+
4128
+ #: profile-builder-2.0/admin/manage-fields.php:1039
4129
+ msgid "You must enter a value for the date-format\n"
4130
+ msgstr "Du skal indskrive en værdi for datoformatet\n"
4131
+
4132
+ #: profile-builder-2.0/admin/manage-fields.php:1067
4133
+ #: profile-builder-2.0/admin/manage-fields.php:1075
4134
+ #: profile-builder-2.0/admin/manage-fields.php:1086
4135
+ msgid "That meta-name is already in use\n"
4136
+ msgstr "Det meta-navn er allerede i brug\n"
4137
+
4138
+ #: profile-builder-2.0/admin/manage-fields.php:1117
4139
+ msgid "The following option(s) did not coincide with the ones in the options list: %s\n"
4140
+ msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s\n"
4141
+
4142
+ #: profile-builder-2.0/admin/manage-fields.php:1121
4143
+ msgid "The following option did not coincide with the ones in the options list: %s\n"
4144
+ msgstr "Følgende indstillinger stemte ikke overens med dem i indstillingslisten: %s \n"
4145
+
4146
+ #: profile-builder-2.0/admin/manage-fields.php:1144
4147
+ msgid "That field is already added in this form\n"
4148
+ msgstr "Det felt er allerede tilføjet denne formular\n"
4149
+
4150
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4151
+ msgid "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-required\">Required</pre>"
4152
+ msgstr "<pre>titel</pre><pre>Type</pre><pre>Meta navn</pre><pre class=\"wppb-mb-head-required\">nødvendigt</pre>"
4153
+
4154
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4155
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4156
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4157
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
4158
+ #: profile-builder-2.0/features/functions.php:718
4159
+ #: profile-builder-2.0/features/functions.php:725
4160
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4161
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4162
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4163
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4164
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
4165
+ msgid "Edit"
4166
+ msgstr "Rediger"
4167
+
4168
+ #: profile-builder-2.0/admin/manage-fields.php:1193
4169
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4170
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4171
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4172
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
4173
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4174
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
4175
+ #: profile-builder-2.0/features/functions.php:711
4176
+ #: profile-builder-2.0/features/functions.php:725
4177
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4178
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4179
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4180
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4181
+ msgid "Delete"
4182
+ msgstr "Slet"
4183
+
4184
+ #: profile-builder-2.0/admin/manage-fields.php:1208
4185
+ msgid "Use these shortcodes on the pages you want the forms to be displayed:"
4186
+ msgstr "Benyt disse shortcodes på siden du vil have vist formularerne:"
4187
+
4188
+ #: profile-builder-2.0/admin/register-version.php:14
4189
+ msgid "Register Your Version"
4190
+ msgstr "Registrer din version"
4191
+
4192
+ #: profile-builder-2.0/admin/register-version.php:14
4193
+ msgid "Register Version"
4194
+ msgstr "Registrer version"
4195
+
4196
+ #: profile-builder-2.0/admin/register-version.php:70
4197
+ msgid "If you register this version of Profile Builder, you'll receive information regarding upgrades, patches, and technical support."
4198
+ msgstr "Hvis du registrere denne version af Profile Builder, så vil du modtage information vedrørende opgraderinger, patches og teknisk support."
4199
+
4200
+ #: profile-builder-2.0/admin/register-version.php:72
4201
+ msgid " Serial Number:"
4202
+ msgstr "Serie Nummer:"
4203
+
4204
+ #: profile-builder-2.0/admin/register-version.php:77
4205
+ msgid "The serial number was successfully validated!"
4206
+ msgstr "Serienummeret blev godkendt!"
4207
+
4208
+ #: profile-builder-2.0/admin/register-version.php:79
4209
+ msgid "The serial number entered couldn't be validated!"
4210
+ msgstr "Serienummeret som du har indsat er ikke korrekt!"
4211
+
4212
+ #: profile-builder-2.0/admin/register-version.php:83
4213
+ msgid "The serial number couldn't be validated because it expired!"
4214
+ msgstr "Serienummeret kunne ikke godkendes da det er udløbet!"
4215
+
4216
+ #: profile-builder-2.0/admin/register-version.php:85
4217
+ msgid "The serial number couldn't be validated because process timed out. This is possible due to the server being down. Please try again later!"
4218
+ msgstr "Serienummeret kunne ikke valideres på grund af process time-out. Dette skyldes formentlig at serveren er nede. Venligst prøv igen senere!"
4219
+
4220
+ #: profile-builder-2.0/admin/register-version.php:87
4221
+ msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4222
+ msgstr "(f.eks.: RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
4223
+
4224
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
4225
+ #: profile-builder-2.0/features/functions.php:725
4226
+ msgid "Content"
4227
+ msgstr "Indhold"
4228
+
4229
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
4230
+ msgid "Edit this item"
4231
+ msgstr "Rediger denne"
4232
+
4233
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
4234
+ msgid "Delete this item"
4235
+ msgstr "Slet denne"
4236
+
4237
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
4238
+ msgid "Please enter a value for the required field "
4239
+ msgstr "Venligst indsæt en værdi for feltet"
4240
+
4241
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
4242
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
4243
+ msgid "Select File"
4244
+ msgstr "Vælg en fil"
4245
+
4246
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
4247
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
4248
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
4249
+ msgid "Remove"
4250
+ msgstr "Fjern"
4251
+
4252
+ #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
4253
+ msgid "You can add the information for the %s after you add a entry"
4254
+ msgstr "Du kan tilføje information for %s efter du har indsat en indtastning"
4255
+
4256
+ #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
4257
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
4258
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
4259
+ msgid "Upload "
4260
+ msgstr "Upload"
4261
+
4262
+ #: profile-builder-2.0/features/class-list-table.php:184
4263
+ msgid "No items found."
4264
+ msgstr "Intet fundet."
4265
+
4266
+ #: profile-builder-2.0/features/class-list-table.php:308
4267
+ msgid "Bulk Actions"
4268
+ msgstr "Mængde aktion"
4269
+
4270
+ #: profile-builder-2.0/features/class-list-table.php:318
4271
+ msgid "Apply"
4272
+ msgstr "Tilføj"
4273
+
4274
+ #: profile-builder-2.0/features/class-list-table.php:402
4275
+ msgid "Show all dates"
4276
+ msgstr "Vis alle datoer"
4277
+
4278
+ #: profile-builder-2.0/features/class-list-table.php:415
4279
+ msgid "%1$s %2$d"
4280
+ msgstr "%1$s %2$d"
4281
+
4282
+ #: profile-builder-2.0/features/class-list-table.php:431
4283
+ msgid "List View"
4284
+ msgstr "Listevisning"
4285
+
4286
+ #: profile-builder-2.0/features/class-list-table.php:432
4287
+ msgid "Excerpt View"
4288
+ msgstr "Uddragsvisning"
4289
+
4290
+ #: profile-builder-2.0/features/class-list-table.php:458
4291
+ msgid "%s pending"
4292
+ msgstr "%s afventer"
4293
+
4294
+ #: profile-builder-2.0/features/class-list-table.php:566
4295
+ msgid "%1$s of %2$s"
4296
+ msgstr "%1$s of %2$s"
4297
+
4298
+ #: profile-builder-2.0/features/class-list-table.php:713
4299
+ msgid "Select All"
4300
+ msgstr "Vælg alt"
4301
+
4302
+ #: profile-builder-2.0/features/functions.php:526
4303
+ msgid "Strength indicator"
4304
+ msgstr "Styrkeindikator"
4305
+
4306
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
4307
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
4308
+ msgid "Admin Approval"
4309
+ msgstr "Admin godkendelse"
4310
+
4311
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
4312
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
4313
+ msgid "Do you want to"
4314
+ msgstr "Vil du"
4315
+
4316
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
4317
+ msgid "Your session has expired! Please refresh the page and try again"
4318
+ msgstr "Din session er udløbet! Venligst opdater siden og prøv igen"
4319
+
4320
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
4321
+ msgid "User successfully approved!"
4322
+ msgstr "Bruger godkendt!"
4323
+
4324
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:74
4325
+ msgid "User successfully unapproved!"
4326
+ msgstr "Bruger ikke godkendt!"
4327
+
4328
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:80
4329
+ msgid "User successfully deleted!"
4330
+ msgstr "Bruger slettet!"
4331
+
4332
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:85
4333
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:131
4334
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
4335
+ msgid "You either don't have permission for that action or there was an error!"
4336
+ msgstr "Enten har du ikke tilladelse til dette eller der var en felj!"
4337
+
4338
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
4339
+ msgid "Your session has expired! Please refresh the page and try again."
4340
+ msgstr "Din session er udløbet! Opdater venligst siden og prøv igen."
4341
+
4342
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
4343
+ msgid "Users successfully approved!"
4344
+ msgstr "Brugere godkendt!"
4345
+
4346
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:119
4347
+ msgid "Users successfully unapproved!"
4348
+ msgstr "Brugere ikke godkendt med succes!"
4349
+
4350
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:127
4351
+ msgid "Users successfully deleted!"
4352
+ msgstr "Brugere slettet!"
4353
+
4354
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:147
4355
+ msgid "Your account on %1$s has been approved!"
4356
+ msgstr "Din konto på %1$s er blevet godkendt!"
4357
+
4358
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:148
4359
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:151
4360
+ msgid "approved"
4361
+ msgstr "godkendt"
4362
+
4363
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
4364
+ msgid "An administrator has just approved your account on %1$s (%2$s)."
4365
+ msgstr "En administrator har netop godkendt din konto på %1$s (%2$s)."
4366
+
4367
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:155
4368
+ msgid "Your account on %1$s has been unapproved!"
4369
+ msgstr "Din konto på %1$s er blevet 'ikke-godkendt'!"
4370
+
4371
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:156
4372
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:159
4373
+ msgid "unapproved"
4374
+ msgstr "'ikke-godkendt'"
4375
+
4376
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:158
4377
+ msgid "An administrator has just unapproved your account on %1$s (%2$s)."
4378
+ msgstr "En administrator har netop sat din konto til 'ikke-godkendt' på %1$s (%2$s)."
4379
+
4380
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
4381
+ msgid "<strong>ERROR</strong>: Your account has to be confirmed by an administrator before you can log in."
4382
+ msgstr "<strong>ERROR</strong>: Din konto skal godkendes af en administrator før du kan logge ind."
4383
+
4384
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
4385
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Recovery\" feature."
4386
+ msgstr "Din konto skal først være godkendt af en administrator før du kan bruge 'Genskab adgangskode'"
4387
+
4388
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
4389
+ msgid "delete this user?"
4390
+ msgstr "slet denne bruger?"
4391
+
4392
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4393
+ msgid "unapprove this user?"
4394
+ msgstr "sæt denne bruge til 'ikke-godkendt'?"
4395
+
4396
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
4397
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
4398
+ msgid "Unapprove"
4399
+ msgstr "Ophæv godkendelsen"
4400
+
4401
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4402
+ msgid "approve this user?"
4403
+ msgstr "godkend denne bruger?"
4404
+
4405
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
4406
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
4407
+ msgid "Approve"
4408
+ msgstr "Godkend"
4409
+
4410
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
4411
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:278
4412
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:742
4413
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2224
4414
+ msgid "Firstname"
4415
+ msgstr "Fornavn"
4416
+
4417
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
4418
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:745
4419
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2225
4420
+ msgid "Lastname"
4421
+ msgstr "Efternavn"
4422
+
4423
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
4424
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:149
4425
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:279
4426
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:772
4427
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2229
4428
+ msgid "Role"
4429
+ msgstr "Rolle"
4430
+
4431
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
4432
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
4433
+ msgid "Registered"
4434
+ msgstr "Registreret"
4435
+
4436
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
4437
+ msgid "User-status"
4438
+ msgstr "Brugerstatus"
4439
+
4440
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
4441
+ msgid "Do you want to bulk approve the selected users?"
4442
+ msgstr "Ønsker du at godkende de valgte brugere på én gang?"
4443
+
4444
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
4445
+ msgid "Do you want to bulk unapprove the selected users?"
4446
+ msgstr "Ønsker du at ophæve godkendelsen af de valgte brugere på én gang?"
4447
+
4448
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
4449
+ msgid "Do you want to bulk delete the selected users?"
4450
+ msgstr "Ønsker du at slette de valgte brugere på én gang?"
4451
+
4452
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
4453
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
4454
+ msgid "Sorry, but you don't have permission to do that!"
4455
+ msgstr "Beklager, men du har ikke rettighederne til at gøre dette!"
4456
+
4457
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
4458
+ msgid "Approved"
4459
+ msgstr "Godkendt"
4460
+
4461
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
4462
+ msgid "Unapproved"
4463
+ msgstr "Ikke godkendt"
4464
+
4465
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
4466
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
4467
+ msgid "All Users"
4468
+ msgstr "Alle brugere"
4469
+
4470
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
4471
+ msgid "delete this user from the _signups table?"
4472
+ msgstr "slet denne bruger fra tilmeldingstabellen (_signups table)?"
4473
+
4474
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4475
+ msgid "confirm this email yourself?"
4476
+ msgstr "bekræft selv denne e-mail?"
4477
+
4478
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
4479
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
4480
+ msgid "Confirm Email"
4481
+ msgstr "Bekræft e-mail"
4482
+
4483
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4484
+ msgid "resend the activation link?"
4485
+ msgstr "gen-send aktiveringslinket?"
4486
+
4487
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
4488
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
4489
+ msgid "Resend Activation Email"
4490
+ msgstr "Gen-send aktiverings e-mailen"
4491
+
4492
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
4493
+ msgid "%s couldn't be deleted"
4494
+ msgstr "%s kunne ikke slettes"
4495
+
4496
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
4497
+ msgid "All users have been successfully deleted"
4498
+ msgstr "Alle brugere er blevet slettet uden problemer"
4499
+
4500
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
4501
+ msgid "The selected users have been activated"
4502
+ msgstr "De valgte brugere er blevet aktiveret"
4503
+
4504
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
4505
+ msgid "The selected users have had their activation emails resent"
4506
+ msgstr "De valgte brugere har fået deres aktiverings e-mail gensendt"
4507
+
4508
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
4509
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
4510
+ msgid "Users with Unconfirmed Email Address"
4511
+ msgstr "Brugere med ubekræftede e-mail adresser"
4512
+
4513
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
4514
+ msgid "There was an error performing that action!"
4515
+ msgstr "Der opstod en fejl ved udførelsen af denne handling!"
4516
+
4517
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
4518
+ msgid "The selected user couldn't be deleted"
4519
+ msgstr "De valgte brugere kunne ikke slettes"
4520
+
4521
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
4522
+ msgid "Email notification resent to user"
4523
+ msgstr "E-mail besked er gensendt til bruger"
4524
+
4525
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
4526
+ msgid "[%1$s] Activate %2$s"
4527
+ msgstr "[%1$s] Aktivér %2$s"
4528
+
4529
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
4530
+ #: profile-builder-2.0/front-end/register.php:71
4531
+ msgid "Could not create user!"
4532
+ msgstr "Kunne ikke oprette bruger!"
4533
+
4534
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
4535
+ msgid "That username is already activated!"
4536
+ msgstr "Dette brugernavn er allerede i brug!"
4537
+
4538
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468
4539
+ msgid "There was an error while trying to activate the user"
4540
+ msgstr "Der skete en fejl ved forsøg på at aktivere brugeren"
4541
+
4542
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516
4543
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
4544
+ msgid "A new subscriber has (been) registered!"
4545
+ msgstr "En ny abonnent ('subscriber') er blevet registreret!"
4546
+
4547
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
4548
+ msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
4549
+ msgstr "Ny abonnent ('subscriber') på %1$s.<br/><br/>Brugernavn:%2$s<br/>E-mail:%3$s<br/>"
4550
+
4551
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
4552
+ msgid "The \"Admin Approval\" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!"
4553
+ msgstr "\"Administrator godkendelses\" funktionen blev aktiveret på registreringstidspunktet, så vær venlig at huske at du skal godkende denne bruger før han/hun kan logge ind!"
4554
+
4555
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
4556
+ msgid "[%1$s] Your new account information"
4557
+ msgstr "[%1$s] Din nye konto information"
4558
+
4559
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
4560
+ msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
4561
+ msgstr "Velkommen til %1$s!<br/><br/><br/>Dit brugernavn er:%2$s og adgangskoden er:%3$s"
4562
+
4563
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
4564
+ #: profile-builder-2.0/front-end/register.php:125
4565
+ msgid "Before you can access your account, an administrator needs to approve it. You will be notified via email."
4566
+ msgstr "Før du kan tilgå din konto skal en administrator først godkende det. Du bliver adviseret via a-mail."
4567
+
4568
+ #: profile-builder-2.0/features/login-widget/login-widget.php:10
4569
+ msgid "This login widget lets you add a login form in the sidebar."
4570
+ msgstr "Denne login widget gør det muligt for dig at tilføje en formular i din sidebar."
4571
+
4572
+ #: profile-builder-2.0/features/login-widget/login-widget.php:15
4573
+ msgid "Profile Builder Login Widget"
4574
+ msgstr "Profile Builder login widget"
4575
+
4576
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
4577
+ #: profile-builder-2.0/front-end/class-formbuilder.php:415
4578
+ #: profile-builder-2.0/front-end/login.php:250
4579
+ msgid "Register"
4580
+ msgstr "Registrer"
4581
+
4582
+ #: profile-builder-2.0/features/login-widget/login-widget.php:63
4583
+ msgid "Title:"
4584
+ msgstr "Titel:"
4585
+
4586
+ #: profile-builder-2.0/features/login-widget/login-widget.php:68
4587
+ msgid "After login redirect URL (optional):"
4588
+ msgstr "Efter login URL omdirigering (valgfri):"
4589
+
4590
+ #: profile-builder-2.0/features/login-widget/login-widget.php:73
4591
+ msgid "Register page URL (optional):"
4592
+ msgstr "Registrerings side URL (valgfri):"
4593
+
4594
+ #: profile-builder-2.0/features/login-widget/login-widget.php:78
4595
+ msgid "Password Recovery page URL (optional):"
4596
+ msgstr "Adgangskode genskabnings side URL (valgfri)"
4597
+
4598
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4599
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
4600
+ msgid "The usernames cannot be changed."
4601
+ msgstr "Brugernavnene kan ikke ændres."
4602
+
4603
+ #: profile-builder-2.0/front-end/class-formbuilder.php:136
4604
+ msgid "Only an administrator can add new users."
4605
+ msgstr "Kun administrator kan tilføje nye brugere."
4606
+
4607
+ #: profile-builder-2.0/front-end/class-formbuilder.php:146
4608
+ msgid "Users can register themselves or you can manually create users here."
4609
+ msgstr "Brugere kan registrere sig selv eller du kan manuelt oprette brugere her."
4610
+
4611
+ #: profile-builder-2.0/front-end/class-formbuilder.php:149
4612
+ msgid "Users cannot currently register themselves, but you can manually create users here."
4613
+ msgstr "Brugere kan ikke i øjeblikket registrere sig selv, men du kan manuelt oprette brugere her."
4614
+
4615
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4616
+ msgid "You are currently logged in as %1s. You don't need another account. %2s"
4617
+ msgstr "Du er i øjeblikket logget ind som %1s. Du har ikke brug for en anden konto. %2s"
4618
+
4619
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4620
+ msgid "Log out of this account."
4621
+ msgstr "Log ud fra denne konto."
4622
+
4623
+ #: profile-builder-2.0/front-end/class-formbuilder.php:169
4624
+ msgid "Logout"
4625
+ msgstr "Log ud"
4626
+
4627
+ #: profile-builder-2.0/front-end/class-formbuilder.php:175
4628
+ msgid "You must be logged in to edit your profile."
4629
+ msgstr "Du skal være logget ind for at redigere din profil."
4630
+
4631
+ #: profile-builder-2.0/features/functions.php:994
4632
+ msgid "here"
4633
+ msgstr "her"
4634
+
4635
+ #: profile-builder-2.0/features/functions.php:995
4636
+ msgid "You will soon be redirected automatically. If you see this page for more than %1$d seconds, please click %2$s.%3$s"
4637
+ msgstr "Du vil snart blive omdirigeret automatisk. Hvis du ser denne side i mere end %1$d seconds, klik venligst %2$s.%3$s"
4638
+
4639
+ #: profile-builder-2.0/front-end/class-formbuilder.php:315
4640
+ #: profile-builder-2.0/front-end/class-formbuilder.php:322
4641
+ msgid "The account %1s has been successfully created!"
4642
+ msgstr "Kontoen %1s er oprettet uden problemer!"
4643
+
4644
+ #: profile-builder-2.0/front-end/class-formbuilder.php:318
4645
+ #: profile-builder-2.0/front-end/class-formbuilder.php:328
4646
+ msgid "Before you can access your account %1s, you need to confirm your email address. Please check your inbox and click the activation link."
4647
+ msgstr "Før du kan tilgå din konto %1s, skal du bekræfte din e-mail adresse. Tjek venligst din indbakke og klik på aktiveringslinket."
4648
+
4649
+ #: profile-builder-2.0/front-end/class-formbuilder.php:324
4650
+ msgid "Before you can access your account %1s, an administrator has to approve it. You will be notified via email."
4651
+ msgstr "Før du kan tilgå din konto %1s, skal en administrator godkende den. Du vil blive adviseret via e-mail."
4652
+
4653
+ #: profile-builder-2.0/front-end/class-formbuilder.php:347
4654
+ msgid "Your profile has been successfully updated!"
4655
+ msgstr "Din profil er blevet opdateret uden problemer!"
4656
+
4657
+ #: profile-builder-2.0/front-end/class-formbuilder.php:358
4658
+ msgid "There was an error in the submitted form"
4659
+ msgstr "Der var en fejl i den sendte formular. "
4660
+
4661
+ #: profile-builder-2.0/front-end/class-formbuilder.php:415
4662
+ msgid "Add User"
4663
+ msgstr "Tilføj bruger"
4664
+
4665
+ #: profile-builder-2.0/admin/add-ons.php:170
4666
+ #: profile-builder-2.0/front-end/class-formbuilder.php:418
4667
+ msgid "Update"
4668
+ msgstr "Opdater"
4669
+
4670
+ #: profile-builder-2.0/front-end/class-formbuilder.php:481
4671
+ msgid "Send these credentials via email."
4672
+ msgstr "Send disse legitimationsoplysninger via e-mail."
4673
+
4674
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4675
+ #: profile-builder-2.0/front-end/login.php:137
4676
+ #: profile-builder-2.0/front-end/login.php:144
4677
+ #: profile-builder-2.0/front-end/login.php:158
4678
+ #: profile-builder-2.0/front-end/recover.php:17
4679
+ #: profile-builder-2.0/front-end/recover.php:245
4680
+ msgid "ERROR"
4681
+ msgstr "FEJL"
4682
+
4683
+ #: profile-builder-2.0/front-end/login.php:137
4684
+ msgid "The password you entered is incorrect."
4685
+ msgstr "Adgangskoden du angav er forkert."
4686
+
4687
+ #: profile-builder-2.0/front-end/login.php:138
4688
+ #: profile-builder-2.0/front-end/login.php:145
4689
+ msgid "Password Lost and Found."
4690
+ msgstr "Adgangskode 'mistet og fundet'"
4691
+
4692
+ #: profile-builder-2.0/front-end/login.php:138
4693
+ #: profile-builder-2.0/front-end/login.php:145
4694
+ msgid "Lost your password"
4695
+ msgstr "Mistet din adgangskode"
4696
+
4697
+ #: profile-builder-2.0/front-end/login.php:158
4698
+ msgid "Both fields are empty."
4699
+ msgstr "Begge felter er tomme."
4700
+
4701
+ #: profile-builder-2.0/front-end/login.php:296
4702
+ msgid "You are currently logged in as %1$s. %2$s"
4703
+ msgstr "Du er i øjeblikket logget ind som %1$s. %2$s"
4704
+
4705
+ #: profile-builder-2.0/front-end/login.php:295
4706
+ #: profile-builder-2.0/front-end/logout.php:25
4707
+ msgid "Log out of this account"
4708
+ msgstr "Log ud af denne konto"
4709
+
4710
+ #: profile-builder-2.0/front-end/login.php:295
4711
+ msgid "Log out"
4712
+ msgstr "Log ud"
4713
+
4714
+ #: profile-builder-2.0/front-end/recover.php:17
4715
+ msgid "Your account has to be confirmed by an administrator before you can use the \"Password Reset\" feature."
4716
+ msgstr "Din konto skal først godkendes af en administrator før du kan bruge \"Genskab adgangskode\""
4717
+
4718
+ #: profile-builder-2.0/front-end/recover.php:94
4719
+ msgid "Reset Password"
4720
+ msgstr "Genskab adgangskode"
4721
+
4722
+ #: profile-builder-2.0/front-end/recover.php:121
4723
+ msgid "Please enter your username or email address."
4724
+ msgstr "Venligst angiv dit brugernavn eller e-mail adresse."
4725
+
4726
+ #: profile-builder-2.0/front-end/recover.php:125
4727
+ msgid "You will receive a link to create a new password via email."
4728
+ msgstr "Du modtager et link via e-mail, så du kan oprette en ny adgangskode"
4729
+
4730
+ #: profile-builder-2.0/front-end/recover.php:122
4731
+ msgid "Username or E-mail"
4732
+ msgstr "Brugernavn eller e-mail"
4733
+
4734
+ #: profile-builder-2.0/front-end/recover.php:138
4735
+ msgid "Get New Password"
4736
+ msgstr "Anmod om ny adgangskode"
4737
+
4738
+ #: profile-builder-2.0/front-end/recover.php:185
4739
+ msgid "The username entered wasn't found in the database!"
4740
+ msgstr "Det angivne brugernavn blev ikke fundet i databasen!"
4741
+
4742
+ #: profile-builder-2.0/front-end/recover.php:185
4743
+ msgid "Please check that you entered the correct username."
4744
+ msgstr "Tjek venligst at du angav det korrekte brugernavn."
4745
+
4746
+ #: profile-builder-2.0/front-end/recover.php:200
4747
+ msgid "Check your e-mail for the confirmation link."
4748
+ msgstr "Tjek din e-mail for bekræftelseslink."
4749
+
4750
+ #: profile-builder-2.0/front-end/recover.php:235
4751
+ msgid "Someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link:%2$s"
4752
+ msgstr "Nogen anmodede om at adgangskoden skulle genskabes for følgende konto: <b>%1$s</b><br/>Hvis dette var en fejltagelse, så se bare bort fra denne e-mail og intet vil ske. <br/>For at genskabe din adgangskode, følge dette link:%2$s"
4753
+
4754
+ #: profile-builder-2.0/front-end/recover.php:238
4755
+ msgid "Password Reset from \"%1$s\""
4756
+ msgstr "Adgangskode genskab fra \"%1$s\""
4757
+
4758
+ #: profile-builder-2.0/front-end/recover.php:245
4759
+ msgid "There was an error while trying to send the activation link to %1$s!"
4760
+ msgstr "Der opstod en fejl, da aktivireingslinket blev forsøgt sendt til %1$s!"
4761
+
4762
+ #: profile-builder-2.0/front-end/recover.php:207
4763
+ msgid "The email address entered wasn't found in the database!"
4764
+ msgstr "Den angivne e-mail adresse blev ikke fundet i databasen!"
4765
+
4766
+ #: profile-builder-2.0/front-end/recover.php:207
4767
+ msgid "Please check that you entered the correct email address."
4768
+ msgstr "Tjek venligst at du angav den korrekte e-mail adresse."
4769
+
4770
+ #: profile-builder-2.0/front-end/recover.php:273
4771
+ msgid "Your password has been successfully changed!"
4772
+ msgstr "Din adgangskode er ændret uden problemer!"
4773
+
4774
+ #: profile-builder-2.0/front-end/recover.php:292
4775
+ msgid "You have successfully reset your password to: %1$s"
4776
+ msgstr "Du har med succes genskabt din adgangskode til: %1$s"
4777
+
4778
+ #: profile-builder-2.0/front-end/recover.php:295
4779
+ #: profile-builder-2.0/front-end/recover.php:306
4780
+ msgid "Password Successfully Reset for %1$s on \"%2$s\""
4781
+ msgstr "Adgangskoden ændret uden problemer for %1$s på \"%2$s\""
4782
+
4783
+ #: profile-builder-2.0/front-end/recover.php:303
4784
+ msgid "%1$s has requested a password change via the password reset feature.<br/>His/her new password is:%2$s"
4785
+ msgstr "%1$s har anmodet om ændring af adgangskoden via 'Genskab adgangskode'.<br/>Hans/hendes nye adgagnskode er:%2$s"
4786
+
4787
+ #: profile-builder-2.0/front-end/recover.php:320
4788
+ msgid "The entered passwords don't match!"
4789
+ msgstr "Den angivne adgangskode matcher ikke!"
4790
+
4791
+ #: profile-builder-2.0/front-end/recover.php:375
4792
+ msgid "ERROR:"
4793
+ msgstr "FEJL:"
4794
+
4795
+ #: profile-builder-2.0/front-end/recover.php:375
4796
+ msgid "Invalid key!"
4797
+ msgstr "Ugyldig nøgle!"
4798
+
4799
+ #: profile-builder-2.0/front-end/register.php:56
4800
+ msgid "Invalid activation key!"
4801
+ msgstr "Ugyldig aktiveringsnøgle!"
4802
+
4803
+ #: profile-builder-2.0/front-end/register.php:60
4804
+ msgid "This username is now active!"
4805
+ msgstr "Dette brugernavn er nu aktivt!"
4806
+
4807
+ #: profile-builder-2.0/front-end/register.php:74
4808
+ msgid "This username is already activated!"
4809
+ msgstr "Dette brugernavn er allerede aktiveret!"
4810
+
4811
+ #: profile-builder-2.0/front-end/register.php:124
4812
+ msgid "Your email was successfully confirmed."
4813
+ msgstr "Din e-mail blev bekræftet uden problemer."
4814
+
4815
+ #: profile-builder-2.0/front-end/register.php:153
4816
+ msgid "There was an error while trying to activate the user."
4817
+ msgstr "Der skete en fejl under forsøget på at aktivere brugeren."
4818
+
4819
+ #: pb-add-on-woocommerce/index.php:393
4820
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:47
4821
+ msgid "The email you entered is not a valid email address."
4822
+ msgstr "E-mailen, som du angav, er ikke en gyldig e-mail adresse."
4823
+
4824
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4825
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4826
+ msgid "This email is already reserved to be used soon."
4827
+ msgstr "Denne e-mail er allerede reserveret til snart at blive anvendt."
4828
+
4829
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4830
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4831
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4832
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4833
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4834
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4835
+ msgid "Please try a different one!"
4836
+ msgstr "Venligst prøv en anden!"
4837
+
4838
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4839
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4840
+ msgid "This email is already in use."
4841
+ msgstr "Denne e-mail er allerede i brug."
4842
+
4843
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4844
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4845
+ msgid "The passwords do not match"
4846
+ msgstr "Adgangskoden matcher ikke"
4847
+
4848
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4849
+ msgid "This username already exists."
4850
+ msgstr "Dette brugernavn eksisterer allerede."
4851
+
4852
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4853
+ msgid "This username is already reserved to be used soon."
4854
+ msgstr "Dette brugernavn er allerede reserveret til snart at blive anvendt."
4855
+
4856
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:276
4857
+ msgid "Avatar"
4858
+ msgstr "Avatar"
4859
+
4860
+ #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4861
+ #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4862
+ #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4863
+ #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4864
+ #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4865
+ #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4866
+ #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4867
+ #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4868
+ #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4869
+ #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4870
+ #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52
4871
+ #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4872
+ #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4873
+ #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4874
+ #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4875
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4876
+ #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4877
+ msgid "required"
4878
+ msgstr "krævet"
4879
+
4880
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48
4881
+ msgid "To use reCAPTCHA you must get an API key from"
4882
+ msgstr "For at bruge 'reCAPTCHA' skal du først have en API nøgle fra"
4883
+
4884
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
4885
+ msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4886
+ msgstr "Af sikkerhedsmæssige grunde skal du angive 'remote' ip til 'reCAPTCHA'!"
4887
+
4888
+ #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
4889
+ msgid "To use reCAPTCHA you must get an API public key from:"
4890
+ msgstr "For at bruge 'reCAPTCHA' skal du have en offentlig API nøgle fra:"
4891
+
4892
+ #: profile-builder-2.0/modules/modules.php:11
4893
+ #: profile-builder-2.0/modules/modules.php:58
4894
+ msgid "Modules"
4895
+ msgstr "Moduler"
4896
+
4897
+ #: profile-builder-2.0/modules/modules.php:59
4898
+ msgid "Here you can activate / deactivate available modules for Profile Builder."
4899
+ msgstr "Her kan du aktivere / deaktivere tilgængelige moduler i Profile Builder."
4900
+
4901
+ #: profile-builder-2.0/modules/modules.php:69
4902
+ msgid "Name/Description"
4903
+ msgstr "Navn/Beskrivelse"
4904
+
4905
+ #: profile-builder-2.0/modules/modules.php:70
4906
+ msgid "Status"
4907
+ msgstr "Status"
4908
+
4909
+ #: profile-builder-2.0/modules/modules.php:77
4910
+ #: profile-builder-2.0/modules/modules.php:84
4911
+ #: profile-builder-2.0/modules/modules.php:91
4912
+ #: profile-builder-2.0/modules/modules.php:98
4913
+ #: profile-builder-2.0/modules/modules.php:105
4914
+ #: profile-builder-2.0/modules/modules.php:112
4915
+ #: profile-builder-2.0/modules/modules.php:119
4916
+ msgid "Active"
4917
+ msgstr "Aktiv"
4918
+
4919
+ #: profile-builder-2.0/modules/modules.php:78
4920
+ #: profile-builder-2.0/modules/modules.php:85
4921
+ #: profile-builder-2.0/modules/modules.php:92
4922
+ #: profile-builder-2.0/modules/modules.php:99
4923
+ #: profile-builder-2.0/modules/modules.php:106
4924
+ #: profile-builder-2.0/modules/modules.php:113
4925
+ #: profile-builder-2.0/modules/modules.php:120
4926
+ msgid "Inactive"
4927
+ msgstr "Inaktiv"
4928
+
4929
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4930
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4931
+ #: profile-builder-2.0/modules/modules.php:96
4932
+ msgid "Admin Email Customizer"
4933
+ msgstr "Opsætning af administrator e-mails"
4934
+
4935
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
4936
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
4937
+ #: profile-builder-2.0/modules/modules.php:103
4938
+ msgid "User Email Customizer"
4939
+ msgstr "Opsætning af bruger e-mails"
4940
+
4941
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
4942
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253
4943
+ msgid "Save"
4944
+ msgstr "Gem"
4945
+
4946
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
4947
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
4948
+ msgid "Redirect"
4949
+ msgstr "Omdiriger"
4950
+
4951
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
4952
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
4953
+ msgid "URL"
4954
+ msgstr "URL"
4955
+
4956
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4957
+ msgid "These settings are also replicated in the \"User Email Customizer\" settings-page upon save."
4958
+ msgstr "Disse indstillinger bliver samtidig også gemt i \"Opsætning af bruger e-mails\" når de gemmes."
4959
+
4960
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4961
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4962
+ msgid "From (name)"
4963
+ msgstr "Fra (navn)"
4964
+
4965
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4966
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4967
+ msgid "From (reply-to email)"
4968
+ msgstr "Fra (svar-til e-mail)"
4969
+
4970
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4971
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4972
+ msgid "Common Settings"
4973
+ msgstr "Fælles indstillinger"
4974
+
4975
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4976
+ msgid ""
4977
+ "\n"
4978
+ "<p>New subscriber on {{site_name}}.</p>\n"
4979
+ "<p>Username:{{username}}</p>\n"
4980
+ "<p>E-mail:{{user_email}}</p>\n"
4981
+ msgstr ""
4982
+ "\n"
4983
+ "<p>Ny abonnent på {{site_name}}.</p>\n"
4984
+ "<p>Brugernavn:{{username}}</p>\n"
4985
+ "<p>E-mail:{{user_email}}</p>\n"
4986
+
4987
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4988
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4989
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4990
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4991
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4992
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4993
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4994
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4995
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4996
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4997
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4998
+ msgid "Email Subject"
4999
+ msgstr "E-mail emne"
5000
+
5001
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
5002
+ msgid "Default Registration & Registration with Email Confirmation"
5003
+ msgstr "Standard registrering & registrering med e-mail bekræftelse"
5004
+
5005
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
5006
+ msgid ""
5007
+ "\n"
5008
+ "<p>New subscriber on {{site_name}}.</p>\n"
5009
+ "<p>Username:{{username}}</p>\n"
5010
+ "<p>E-mail:{{user_email}}</p>\n"
5011
+ "<p>The Admin Approval feature was activated at the time of registration,\n"
5012
+ "so please remember that you need to approve this user before he/she can log in!</p>\n"
5013
+ msgstr ""
5014
+ "\n"
5015
+ "<p>Ny abonnent på {{site_name}}.</p>\n"
5016
+ "<p>Brugernavn:{{username}}</p>\n"
5017
+ "<p>E-mail:{{user_email}}</p>\n"
5018
+ "<p>Administrator godkendelsesfunktione blev aktiveret på tidspunktet for registrering,\n"
5019
+ "så husk venligst at du skal godkende denne bruger før han/hun kan logge ind!</p>\n"
5020
+
5021
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
5022
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
5023
+ msgid "Registration with Admin Approval"
5024
+ msgstr "Registrering med administrator godkendelse"
5025
+
5026
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
5027
+ msgid "Available Tags"
5028
+ msgstr "Tilgængelige 'tags'"
5029
+
5030
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
5031
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
5032
+ msgid "User Meta"
5033
+ msgstr "Bruger 'meta'"
5034
+
5035
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
5036
+ msgid "Site Url"
5037
+ msgstr "Site URL"
5038
+
5039
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
5040
+ msgid "Site Name"
5041
+ msgstr "Site navn"
5042
+
5043
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
5044
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:158
5045
+ msgid "User Id"
5046
+ msgstr "Bruger ID"
5047
+
5048
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
5049
+ msgid "Reply To"
5050
+ msgstr "Svar til"
5051
+
5052
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40
5053
+ msgid "Activation Key"
5054
+ msgstr "Aktiveringsnøgle"
5055
+
5056
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41
5057
+ msgid "Activation Url"
5058
+ msgstr "Aktiverings URL"
5059
+
5060
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
5061
+ msgid "Activation Link"
5062
+ msgstr "Aktiveringslink"
5063
+
5064
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5065
+ msgid ""
5066
+ "\n"
5067
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5068
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5069
+ msgstr ""
5070
+ "\n"
5071
+ "<h3>Velkommen til {{site_name}}!</h3>\n"
5072
+ "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
5073
+
5074
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5075
+ msgid "Default Registration"
5076
+ msgstr "Standard registrering"
5077
+
5078
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5079
+ msgid ""
5080
+ "\n"
5081
+ "<p>To activate your user, please click the following link:<br/>\n"
5082
+ "{{{activation_link}}}</p>\n"
5083
+ "<p>After you activate, you will receive another email with your credentials.</p>\n"
5084
+ msgstr ""
5085
+ "\n"
5086
+ "<p>For at aktivere din bruger klik venligst på følgende link:<br/>\n"
5087
+ "{{{activation_link}}}</p>\n"
5088
+ "<p>Efter du aktiverer vil du modtage endnu en e-mail med dine legitimationsoplysninger.</p>\n"
5089
+
5090
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5091
+ msgid "[{{site_name}}] Activate {{username}}"
5092
+ msgstr "[{{site_name}}] Aktivér {{username}}"
5093
+
5094
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5095
+ msgid "Registration with Email Confirmation"
5096
+ msgstr "Registrering med e-mail bekræftelse"
5097
+
5098
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5099
+ msgid ""
5100
+ "\n"
5101
+ "<h3>Welcome to {{site_name}}!</h3>\n"
5102
+ "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5103
+ "<p>Before you can access your account, an administrator needs to approve it. You will be notified via email.</p>\n"
5104
+ msgstr ""
5105
+ "\n"
5106
+ "<h3>Velkommen til {{site_name}}!</h3>\n"
5107
+ "<p>Dit brugernavn er:{{username}} og adgangskode:{{password}}</p>\n"
5108
+ "<p>Før du kan tilgå din konto skal en administrator først godkende den. Du vil få yderligere besked via e-mail.</p>\n"
5109
+
5110
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5111
+ msgid "A new account has been created for you on {{site_name}}"
5112
+ msgstr "En ny konto er blevet oprettet til dig på {{site_name}}"
5113
+
5114
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5115
+ msgid ""
5116
+ "\n"
5117
+ "<h3>Good News!</h3>\n"
5118
+ "<p>An administrator has just approved your account: {{username}} on {{site_name}}.</p>\n"
5119
+ msgstr ""
5120
+ "\n"
5121
+ "<h3>Gode nyheder!</h3>\n"
5122
+ "<p>En administrator har netop godkendt din konto: {{username}} på {{site_name}}.</p>\n"
5123
+
5124
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5125
+ msgid "Your account on {{site_name}} has been approved!"
5126
+ msgstr "Din konto på {{site_name}} er blevet godkendt!"
5127
+
5128
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5129
+ msgid "User Approval Notification"
5130
+ msgstr "Meddelelse om brugergodkendelse"
5131
+
5132
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5133
+ msgid ""
5134
+ "\n"
5135
+ "<h3>Hello,</h3>\n"
5136
+ "<p>Unfortunatelly an administrator has just unapproved your account: {{username}} on {{site_name}}.</p>\n"
5137
+ msgstr ""
5138
+ "\n"
5139
+ "<h3>Hej,</h3>\n"
5140
+ "<p>En administrator har desværre ophævet godkendelsen af din konto: {{username}} på {{site_name}}.</p>\n"
5141
+
5142
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5143
+ msgid "Your account on {{site_name}} has been unapproved!"
5144
+ msgstr "Din konto på {{site_name}} er ikke længere godkendt!"
5145
+
5146
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5147
+ msgid "Unapproved User Notification"
5148
+ msgstr "Meddelelse om ophævelse af brugerkonto"
5149
+
5150
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5151
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5152
+ msgid "Edit-profile Form"
5153
+ msgstr "Formular til profilredigering"
5154
+
5155
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5156
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5157
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5158
+ msgid "Add New"
5159
+ msgstr "Tilføj ny"
5160
+
5161
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5162
+ msgid "Add new Edit-profile Form"
5163
+ msgstr "Tilføj ny formular til profilredigering"
5164
+
5165
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5166
+ msgid "Edit the Edit-profile Forms"
5167
+ msgstr "Rediger profilredigerings formularer"
5168
+
5169
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5170
+ msgid "New Edit-profile Form"
5171
+ msgstr "Ny profilredigerings formular"
5172
+
5173
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5174
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5175
+ msgid "Edit-profile Forms"
5176
+ msgstr "Profilredigerings formularer"
5177
+
5178
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5179
+ msgid "View the Edit-profile Form"
5180
+ msgstr "Vis profilredigerings formular"
5181
+
5182
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5183
+ msgid "Search the Edit-profile Forms"
5184
+ msgstr "Søg profilredigerings formularer"
5185
+
5186
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5187
+ msgid "No Edit-profile Form found"
5188
+ msgstr "Ingen profilredigerings formular fundet"
5189
+
5190
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5191
+ msgid "No Edit-profile Forms found in trash"
5192
+ msgstr "Ingen profilredigerings formular fundet i papirkurven"
5193
+
5194
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5195
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5196
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2115
5197
+ msgid "Shortcode"
5198
+ msgstr "'Shortcode'"
5199
+
5200
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5201
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5202
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5203
+ msgid "(no title)"
5204
+ msgstr "(ingen titel)"
5205
+
5206
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5207
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5208
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2156
5209
+ msgid "The shortcode will be available after you publish this form."
5210
+ msgstr "'Shortcode' er tilgængelig efter du har publiceret denne formular."
5211
+
5212
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5213
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5214
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5215
+ msgid "Use this shortcode on the page you want the form to be displayed:"
5216
+ msgstr "Brug denne 'shortcode' på den side du ønsker formularen vist:"
5217
+
5218
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5219
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5220
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5221
+ msgid "<span style=\"color:red;\">Note:</span> changing the form title also changes the shortcode!"
5222
+ msgstr "<span style=\"color:red;\">Bemærk:</span> ændring af denne formulars titel ændrer også 'shortcode'!"
5223
+
5224
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5225
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5226
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
5227
+ msgid "Form Shortcode"
5228
+ msgstr "Formular 'shortcode'"
5229
+
5230
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5231
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5232
+ msgid "Whether to redirect the user to a specific page or not"
5233
+ msgstr "Hvorvidt brugeren skal omdirigeres til en bestemt side eller ikke"
5234
+
5235
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5236
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5237
+ msgid "Display Messages"
5238
+ msgstr "Vis meddelelser"
5239
+
5240
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5241
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5242
+ msgid "Allowed time to display any success messages (in seconds)"
5243
+ msgstr "Tilladt visningstid (i sekunder) for alle problemfrie meddelelser"
5244
+
5245
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5246
+ msgid "Specify the URL of the page users will be redirected once they updated their profile using this form<br/>Use the following format: http://www.mysite.com"
5247
+ msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de opdaterer deres profil fra denne formular<br/>Brug følgende format: http://www.mysite.com"
5248
+
5249
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5250
+ msgid "After Profile Update..."
5251
+ msgstr "Efter profilopdatering..."
5252
+
5253
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5254
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5255
+ msgid "Add New Field to the List"
5256
+ msgstr "Tilføj nyt felt til listen"
5257
+
5258
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5259
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5260
+ msgid "Choose one of the supported fields you manage <a href=\""
5261
+ msgstr "Vælg en af de understøttede felter som du administrerer <a href=\""
5262
+
5263
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5264
+ msgid "<pre>Title (Type)</pre>"
5265
+ msgstr "<pre>Titel (Type)</pre>"
5266
+
5267
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5268
+ msgid "You need to specify the title of the form before creating it"
5269
+ msgstr "Du skal specificere formularens titel før du opretter den"
5270
+
5271
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5272
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5273
+ msgid "Registration Form"
5274
+ msgstr "Registreringsformular"
5275
+
5276
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5277
+ msgid "Add new Registration Form"
5278
+ msgstr "Tilføj ny registreringsformular"
5279
+
5280
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5281
+ msgid "Edit the Registration Forms"
5282
+ msgstr "Rediger registreringsformularer"
5283
+
5284
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5285
+ msgid "New Registration Form"
5286
+ msgstr "Ny registreringsformular"
5287
+
5288
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5289
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5290
+ msgid "Registration Forms"
5291
+ msgstr "Registreringsformularer"
5292
+
5293
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5294
+ msgid "View the Registration Form"
5295
+ msgstr "Vis registrerinsformularen"
5296
+
5297
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5298
+ msgid "Search the Registration Forms"
5299
+ msgstr "Søg registreringsformularer"
5300
+
5301
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5302
+ msgid "No Registration Form found"
5303
+ msgstr "Ingen registreringsformular funder"
5304
+
5305
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5306
+ msgid "No Registration Forms found in trash"
5307
+ msgstr "Ingen registreringsformularer fundet i papirkurven"
5308
+
5309
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5310
+ msgid "Default Role"
5311
+ msgstr "Standard rolle"
5312
+
5313
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5314
+ msgid "Set Role"
5315
+ msgstr "Indstil rolle"
5316
+
5317
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5318
+ msgid "Choose what role the user will have after (s)he registered<br/>If not specified, defaults to the role set in the WordPress settings"
5319
+ msgstr "Vælg hvilken rolle brugeren får efter han/hun har registreret sig<br/>Hvis ikke specificeret, anvendes rollen der er sat som 'default' i WordPress indstillingerne"
5320
+
5321
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5322
+ msgid "Automatically Log In"
5323
+ msgstr "Automatisk log ind"
5324
+
5325
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5326
+ msgid "Whether to automatically log in the newly registered user or not<br/>Only works on single-sites without \"Admin Approval\" and \"Email Confirmation\" features activated<br/>WARNING: Caching the registration form will make automatic login not work"
5327
+ msgstr "Hvorvidt nyligt registrerede brugere skal logges automatisk ind eller ikke<br/>Virker kun på 'single-sites' hvor \"Administrator godkendelse\" og \"E-mail bekræftelse\" ikke er aktiveret<br/>ADVARSEL: 'Caching' af registreringsformularer vil bevirke, at den automatiske log ind funktion ikke vil fungere"
5328
+
5329
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5330
+ msgid "Specify the URL of the page users will be redirected once registered using this form<br/>Use the following format: http://www.mysite.com"
5331
+ msgstr "Specificer sidens URL som brugere vil blive omdirigeret til så snart de er registreret via denne formular.<br/>Brug følgende format: http://www.mysite.com"
5332
+
5333
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5334
+ msgid "After Registration..."
5335
+ msgstr "Efter registrering..."
5336
+
5337
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1038
5338
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1485
5339
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1953
5340
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2426
5341
+ msgid "Search Users by All Fields"
5342
+ msgstr "Søg brugere ved at bruge 'Alle felter'"
5343
+
5344
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5345
+ msgid "Add new User Listing"
5346
+ msgstr "Tilføj ny brugeroversigt"
5347
+
5348
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5349
+ msgid "Edit the User Listing"
5350
+ msgstr "Rediger brugeroversigten"
5351
+
5352
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5353
+ msgid "New User Listing"
5354
+ msgstr "Ny brugeroversigt"
5355
+
5356
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5357
+ msgid "View the User Listing"
5358
+ msgstr "Vis brugeroversigten"
5359
+
5360
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5361
+ msgid "Search the User Listing"
5362
+ msgstr "Søg i brugeroversigt"
5363
+
5364
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5365
+ msgid "No User Listing found"
5366
+ msgstr "Ingen brugeroversigt fundet"
5367
+
5368
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5369
+ msgid "No User Listing found in trash"
5370
+ msgstr "Ingen brugeroversigt fundet i papirkurven"
5371
+
5372
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:105
5373
+ msgid "Display name as"
5374
+ msgstr "Vis navn som"
5375
+
5376
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5377
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2223
5378
+ msgid "Registration Date"
5379
+ msgstr "Registreringsdato"
5380
+
5381
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:151
5382
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2228
5383
+ msgid "Number of Posts"
5384
+ msgstr "Antal poster"
5385
+
5386
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:155
5387
+ msgid "More Info"
5388
+ msgstr "Mere info"
5389
+
5390
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:156
5391
+ msgid "More Info Url"
5392
+ msgstr "Mere info URL"
5393
+
5394
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:157
5395
+ msgid "Avatar or Gravatar"
5396
+ msgstr "Avatar eller Gravatar"
5397
+
5398
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:196
5399
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:227
5400
+ msgid "Extra Functions"
5401
+ msgstr "Ekstra funktioner"
5402
+
5403
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:199
5404
+ msgid "Pagination"
5405
+ msgstr "Sideopdeling"
5406
+
5407
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:200
5408
+ msgid "Search all Fields"
5409
+ msgstr "Søg 'Alle felter'"
5410
+
5411
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:229
5412
+ msgid "Go Back Link"
5413
+ msgstr "Tilbage link"
5414
+
5415
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:247
5416
+ msgid "All-userlisting Template"
5417
+ msgstr "Skabelon for flere-brugeroversigt"
5418
+
5419
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:250
5420
+ msgid "Single-userlisting Template"
5421
+ msgstr "Skabelon for enkelt-brugeroversigt"
5422
+
5423
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:733
5424
+ msgid "First/Lastname"
5425
+ msgstr "For-/Efternavn"
5426
+
5427
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:281
5428
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:739
5429
+ msgid "Sign-up Date"
5430
+ msgstr "Tilmeldingsdato"
5431
+
5432
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:748
5433
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2226
5434
+ msgid "Display Name"
5435
+ msgstr "Vis navn som"
5436
+
5437
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:280
5438
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:757
5439
+ msgid "Posts"
5440
+ msgstr "Poster"
5441
+
5442
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:760
5443
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2233
5444
+ msgid "Aim"
5445
+ msgstr "'Aim'"
5446
+
5447
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:763
5448
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2234
5449
+ msgid "Yim"
5450
+ msgstr "'Yim'"
5451
+
5452
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:766
5453
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2235
5454
+ msgid "Jabber"
5455
+ msgstr "'Jabber'"
5456
+
5457
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5458
+ msgid "Click here to see more information about this user"
5459
+ msgstr "Klik her for at se mere information om denne bruger"
5460
+
5461
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5462
+ msgid "More..."
5463
+ msgstr "Mere..."
5464
+
5465
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1293
5466
+ msgid "Click here to see more information about this user."
5467
+ msgstr "Klik her for at se mere information om denne bruger."
5468
+
5469
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5470
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1442
5471
+ msgid "Click here to go back"
5472
+ msgstr "Klik her for at gå tilbage"
5473
+
5474
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5475
+ msgid "Back"
5476
+ msgstr "Tilbage"
5477
+
5478
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1472
5479
+ msgid "&laquo;&laquo; First"
5480
+ msgstr "&laquo;&laquo; Først"
5481
+
5482
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1473
5483
+ msgid "&laquo; Prev"
5484
+ msgstr "&laquo; Forrige"
5485
+
5486
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1474
5487
+ msgid "Next &raquo; "
5488
+ msgstr "Næste &raquo; "
5489
+
5490
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1475
5491
+ msgid "Last &raquo;&raquo;"
5492
+ msgstr "Sidste &raquo;&raquo;"
5493
+
5494
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1504
5495
+ msgid "You don't have any pagination settings on this userlisting!"
5496
+ msgstr "Du har ingen sideopdeling (paginering) på denne brugeroversigt!"
5497
+
5498
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1970
5499
+ msgid "Search"
5500
+ msgstr "Søg"
5501
+
5502
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1971
5503
+ msgid "Clear Results"
5504
+ msgstr "Ryd resultatet"
5505
+
5506
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2165
5507
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
5508
+ msgid "Extra shortcode parameters"
5509
+ msgstr "Ekstra 'shortcode' parametre"
5510
+
5511
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
5512
+ msgid "displays users having a certain meta-value within a certain (extra) meta-field"
5513
+ msgstr "viser brugere med en bestemt meta-værdi inden for et bestemt (ekstra) meta-felt"
5514
+
5515
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
5516
+ msgid "Example:"
5517
+ msgstr "Eksempel:"
5518
+
5519
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
5520
+ msgid "Remember though, that the field-value combination must exist in the database."
5521
+ msgstr "Husk dog, at feltværdi kombinationen skal eksistere i databasen."
5522
+
5523
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
5524
+ msgid "Random (very slow on large databases > 10K user)"
5525
+ msgstr "Vilkårlig (meget langsom på store databaser > 10K brugere)"
5526
+
5527
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5528
+ msgid "Roles to Display"
5529
+ msgstr "Roller der skal vises"
5530
+
5531
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5532
+ msgid "Restrict the userlisting to these selected roles only<br/>If not specified, defaults to all existing roles"
5533
+ msgstr "Begræns brugeroversigter til kun at omfatte disse udvalgte roller<br/>Hvis ikke specificeret, så bruges alle eksisterende roller"
5534
+
5535
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5536
+ msgid "Number of Users/Page"
5537
+ msgstr "Antal brugere/side"
5538
+
5539
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5540
+ msgid "Default Sorting Criteria"
5541
+ msgstr "Standard sorteringskriterie"
5542
+
5543
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5544
+ msgid "Set the default sorting criteria<br/>This can temporarily be changed for each new session"
5545
+ msgstr "Sæt standard sorteringskriteriet<br/>Denne kan ændres midlertidigt for hver ny session"
5546
+
5547
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5548
+ msgid "Default Sorting Order"
5549
+ msgstr "Standard sorteringsorden"
5550
+
5551
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5552
+ msgid "Set the default sorting order<br/>This can temporarily be changed for each new session"
5553
+ msgstr "Sæt standard sorteringsorden<br/>Denne kan ændres midlertidigt for hver ny session"
5554
+
5555
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5556
+ msgid "Avatar Size (All-userlisting)"
5557
+ msgstr "Avatar størrelse (Flere-brugeroversigt)"
5558
+
5559
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5560
+ msgid "Set the avatar size on the all-userlisting only"
5561
+ msgstr "Sæt avatar størrelsen på kun flere-brugeroversigten "
5562
+
5563
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5564
+ msgid "Avatar Size (Single-userlisting)"
5565
+ msgstr "Avatar størrelse (enkelt-brugeroversigt)"
5566
+
5567
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5568
+ msgid "Set the avatar size on the single-userlisting only"
5569
+ msgstr "Sæt avatar størrelsen på kun enkelt-brugeroversigten"
5570
+
5571
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5572
+ msgid "Visible only to logged in users?"
5573
+ msgstr "Synlig kun for brugere, der er logget ind?"
5574
+
5575
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5576
+ msgid "The userlisting will only be visible only to the logged in users"
5577
+ msgstr "Brugeroversigten vil kun være synlig for brugere, der er logget ind"
5578
+
5579
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5580
+ msgid "Visible to following Roles"
5581
+ msgstr "Synlig for følgende roller"
5582
+
5583
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5584
+ msgid "The userlisting will only be visible to the following roles"
5585
+ msgstr "Brugeroversigten vil kun være synlig for følgende roller"
5586
+
5587
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2275
5588
+ msgid "Userlisting Settings"
5589
+ msgstr "Opsætning af brugeroversigt"
5590
+
5591
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5592
+ msgid "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5593
+ msgstr "Du skal aktivere brugeroversigts funktionen inde på fanen \"Moduler\"!"
5594
+
5595
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5596
+ msgid "You can find it in the Profile Builder menu."
5597
+ msgstr "Du kan finde det i Profile Builder menuen."
5598
+
5599
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
5600
+ msgid "No results found!"
5601
  msgstr "Ingen resultater fundet!"
translation/profile-builder-es_ES.po CHANGED
@@ -1,6130 +1,6130 @@
1
- msgid ""
2
- msgstr ""
3
- "PO-Revision-Date: 2017-08-11 10:55+0000\n"
4
- "MIME-Version: 1.0\n"
5
- "Content-Type: text/plain; charset=UTF-8\n"
6
- "Content-Transfer-Encoding: 8bit\n"
7
- "Plural-Forms: nplurals=2; plural=n != 1\n"
8
- "X-Generator: Loco - https://localise.biz/\n"
9
- "Project-Id-Version: Profile Builder\n"
10
- "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2017-08-11 10:54+0000\n"
12
- "Last-Translator: bubico aa <localpbdev@mailinator.com>\n"
13
- "Language-Team: Spanish (Spain)\n"
14
- "Language: es-ES"
15
-
16
- #: profile-builder-2.0/admin/general-settings.php:154
17
- msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
18
- msgstr ""
19
-
20
- #: profile-builder-2.0/admin/general-settings.php:146
21
- msgid "\"Roles Editor\" Activated:"
22
- msgstr ""
23
-
24
- #: profile-builder-2.0/features/roles-editor/roles-editor.php:300
25
- msgid "M j, Y @ G:i"
26
- msgstr ""
27
-
28
- #: profile-builder-2.0/front-end/recover.php:117
29
- msgid "Please enter your email address."
30
- msgstr ""
31
-
32
- #: profile-builder-2.0/admin/manage-fields.php:127
33
- msgid ""
34
- "Specify the format of the date when using Datepicker<br/>Valid options: "
35
- "mm/dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-"
36
- "dd, D, dd M yy, D, d M y, DD, dd-M-y, D, d M yy, @<br/>If not specified, "
37
- "defaults to mm/dd/yy"
38
- msgstr ""
39
-
40
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
41
- msgid ""
42
- "Individual redirects defined in shortcodes; <strong><em>"
43
- "redirect_priority=\"top\"</em></strong> parameter can be added in any "
44
- "shortcode, then that shortcode redirect will have priority over all other "
45
- "redirects."
46
- msgstr ""
47
-
48
- #: profile-builder-2.0/admin/manage-fields.php:1217
49
- msgid ""
50
- "If you're interested in displaying different fields in the registration and "
51
- "edit profile forms, please use the Multiple Registration & Edit Profile "
52
- "Forms Modules."
53
- msgstr ""
54
-
55
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
56
- msgid "Multiple Registration and Edit Profile form settings Redirects"
57
- msgstr ""
58
-
59
- #: profile-builder-2.0/admin/register-version.php:251
60
- msgid ""
61
- "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
62
- "<br/>Please %1$sRenew Your Licence%2$s to continue receiving access to "
63
- "product downloads, automatic updates and support. %3$sRenew now and get "
64
- "40&#37; off %4$s %6$sDismiss%7$s</p>"
65
- msgstr ""
66
-
67
- #: profile-builder-2.0/admin/register-version.php:246
68
- msgid ""
69
- "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
70
- "%1$sRenew Your Licence%2$s to continue receiving access to product downloads,"
71
- " automatic updates and support. %3$sRenew now and get 40&#37; off %4$s "
72
- "%5$sDismiss%6$s</p>"
73
- msgstr ""
74
-
75
- #: profile-builder-2.0/front-end/recover.php:159
76
- msgid ""
77
- "You are already logged in. You can change your password on the edit profile "
78
- "form."
79
- msgstr ""
80
-
81
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
82
- msgid "Your site url will look like this:<br>"
83
- msgstr ""
84
-
85
- #: profile-builder-2.0/features/functions.php:896
86
- msgid "<br><br>Also, you will be able to visit your site at "
87
- msgstr ""
88
-
89
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
90
- msgid ""
91
- "Privacy: I would like my site to appear in search engines, and in public "
92
- "listings around this network."
93
- msgstr ""
94
-
95
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
96
- msgid "Site URL slug"
97
- msgstr ""
98
-
99
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
100
- #: profile-builder-2.0/modules/user-listing/userlisting.php:118
101
- msgid "Blog URL"
102
- msgstr ""
103
-
104
- #: profile-builder-2.0/admin/admin-functions.php:44
105
- msgid "Blog Details - only appears on the Registration page!"
106
- msgstr ""
107
-
108
- #: profile-builder-2.0/admin/manage-fields.php:222
109
- msgid "Blog Details"
110
- msgstr ""
111
-
112
- #: profile-builder-2.0/admin/pms-cross-promotion.php:239
113
- msgid ""
114
- "Allow your users to have <strong>paid accounts with Profile Builder</strong>."
115
- " %1$sFind out how >%2$s %3$sDismiss%4$s"
116
- msgstr ""
117
-
118
- #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
119
- #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
120
- #: pb-add-on-woocommerce/index.php:493
121
- msgid "Address line 2"
122
- msgstr ""
123
-
124
- #: pb-add-on-woocommerce/index.php:256
125
- msgid "Billing Fields"
126
- msgstr ""
127
-
128
- #: pb-add-on-woocommerce/index.php:256
129
- msgid ""
130
- "Select which WooCommerce Billing fields to display to the user ( drag and "
131
- "drop to re-order ) and which should be required"
132
- msgstr ""
133
-
134
- #: pb-add-on-woocommerce/index.php:257
135
- msgid "Billing Fields Order"
136
- msgstr ""
137
-
138
- #: pb-add-on-woocommerce/index.php:257
139
- msgid "Save the billing fields order from the billing fields checkboxes"
140
- msgstr ""
141
-
142
- #: pb-add-on-woocommerce/index.php:258
143
- msgid "Billing Fields Name"
144
- msgstr ""
145
-
146
- #: pb-add-on-woocommerce/index.php:258
147
- msgid "Save the billing fields names"
148
- msgstr ""
149
-
150
- #: pb-add-on-woocommerce/index.php:275
151
- msgid "Shipping Fields"
152
- msgstr ""
153
-
154
- #: pb-add-on-woocommerce/index.php:275
155
- msgid ""
156
- "Select which WooCommerce Shipping fields to display to the user ( drag and "
157
- "drop to re-order ) and which should be required"
158
- msgstr ""
159
-
160
- #: pb-add-on-woocommerce/index.php:276
161
- msgid "Shipping Fields Order"
162
- msgstr ""
163
-
164
- #: pb-add-on-woocommerce/index.php:276
165
- msgid "Save the shipping fields order from the billing fields checkboxes"
166
- msgstr ""
167
-
168
- #: pb-add-on-woocommerce/index.php:277
169
- msgid "Shipping Fields Name"
170
- msgstr ""
171
-
172
- #: pb-add-on-woocommerce/index.php:277
173
- msgid "Save the shipping fields names"
174
- msgstr ""
175
-
176
- #: pb-add-on-woocommerce/index.php:305
177
- msgid "Field Name"
178
- msgstr ""
179
-
180
- #: pb-add-on-woocommerce/index.php:369
181
- msgid "Click to edit "
182
- msgstr ""
183
-
184
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
185
- msgid "is not a valid phone number."
186
- msgstr ""
187
-
188
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
189
- msgid "is not a number."
190
- msgstr ""
191
-
192
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
193
- msgid "must be a multiplier of "
194
- msgstr ""
195
-
196
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
197
- msgid "must be a greater than or equal to "
198
- msgstr ""
199
-
200
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
201
- msgid "must be less than or equal to "
202
- msgstr ""
203
-
204
- #: profile-builder-2.0/admin/add-ons.php:103
205
- msgid "Available in Hobbyist and Pro Versions"
206
- msgstr ""
207
-
208
- #: profile-builder-2.0/admin/basic-info.php:99
209
- msgid "Timepicker"
210
- msgstr ""
211
-
212
- #: profile-builder-2.0/admin/basic-info.php:100
213
- msgid "Colorpicker"
214
- msgstr ""
215
-
216
- #: profile-builder-2.0/admin/basic-info.php:103
217
- msgid "Currency Select"
218
- msgstr ""
219
-
220
- #: profile-builder-2.0/admin/basic-info.php:163
221
- msgid ""
222
- "Set up a repeating group of fields on register and edit profile forms. Limit "
223
- "the number of repeated groups for each user role."
224
- msgstr ""
225
-
226
- #: profile-builder-2.0/admin/general-settings.php:59
227
- msgid ""
228
- "This works with front-end forms only. Recommended to redirect WP default "
229
- "registration to a Profile Builder one using \"Custom Redirects\" module."
230
- msgstr ""
231
-
232
- #: profile-builder-2.0/admin/manage-fields.php:120
233
- msgid ""
234
- "Use this in conjunction with WordPress functions to display the value in the "
235
- "page of your choosing<br/>Auto-completed but in some cases editable (in "
236
- "which case it must be unique)<br/>Changing this might take long in case of a "
237
- "very big user-count"
238
- msgstr ""
239
-
240
- #: profile-builder-2.0/admin/manage-fields.php:143
241
- msgid "Show Currency Symbol"
242
- msgstr ""
243
-
244
- #: profile-builder-2.0/admin/manage-fields.php:143
245
- msgid ""
246
- "Whether the currency symbol should be displayed after the currency name in "
247
- "the select option."
248
- msgstr ""
249
-
250
- #: profile-builder-2.0/admin/manage-fields.php:144
251
- msgid "Show Post Type"
252
- msgstr ""
253
-
254
- #: profile-builder-2.0/admin/manage-fields.php:144
255
- msgid "Posts from what post type will be displayed in the select."
256
- msgstr ""
257
-
258
- #: profile-builder-2.0/admin/manage-fields.php:145
259
- msgid "Allowable Values"
260
- msgstr ""
261
-
262
- #: profile-builder-2.0/admin/manage-fields.php:145
263
- msgid ""
264
- "Enter a comma separated list of possible values. Upon registration if the "
265
- "value provided by the user does not match one of these values, the user will "
266
- "not be registered."
267
- msgstr ""
268
-
269
- #: profile-builder-2.0/admin/manage-fields.php:146
270
- msgid "Error Message"
271
- msgstr ""
272
-
273
- #: profile-builder-2.0/admin/manage-fields.php:146
274
- msgid "Set a custom error message that will be displayed to the user."
275
- msgstr ""
276
-
277
- #: profile-builder-2.0/admin/manage-fields.php:147
278
- msgid "Time Format"
279
- msgstr ""
280
-
281
- #: profile-builder-2.0/admin/manage-fields.php:147
282
- msgid "Specify the time format."
283
- msgstr ""
284
-
285
- #: profile-builder-2.0/admin/manage-fields.php:148
286
- msgid ""
287
- "Enter your Google Maps API key ( <a href=\"https://console.developers.google."
288
- "com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API "
289
- "key</a> ). If more than one map fields are added to a form the API key from "
290
- "the first map displayed will be used."
291
- msgstr ""
292
-
293
- #: profile-builder-2.0/admin/manage-fields.php:149
294
- msgid "Default Latitude"
295
- msgstr ""
296
-
297
- #: profile-builder-2.0/admin/manage-fields.php:149
298
- msgid ""
299
- "The latitude at which the map should be displayed when no pins are attached."
300
- msgstr ""
301
-
302
- #: profile-builder-2.0/admin/manage-fields.php:150
303
- msgid "Default Longitude"
304
- msgstr ""
305
-
306
- #: profile-builder-2.0/admin/manage-fields.php:150
307
- msgid ""
308
- "The longitude at which the map should be displayed when no pins are attached."
309
- msgstr ""
310
-
311
- #: profile-builder-2.0/admin/manage-fields.php:151
312
- msgid "Default Zoom Level"
313
- msgstr ""
314
-
315
- #: profile-builder-2.0/admin/manage-fields.php:151
316
- msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
317
- msgstr ""
318
-
319
- #: profile-builder-2.0/admin/manage-fields.php:152
320
- msgid "Map Height"
321
- msgstr ""
322
-
323
- #: profile-builder-2.0/admin/manage-fields.php:152
324
- msgid "The height of the map."
325
- msgstr ""
326
-
327
- #: profile-builder-2.0/admin/manage-fields.php:154
328
- msgid "Add your HTML (or text) content"
329
- msgstr ""
330
-
331
- #: profile-builder-2.0/admin/manage-fields.php:155
332
- msgid "Phone Format"
333
- msgstr ""
334
-
335
- #: profile-builder-2.0/admin/manage-fields.php:155
336
- msgid ""
337
- "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and "
338
- "spaces."
339
- msgstr ""
340
-
341
- #: profile-builder-2.0/admin/manage-fields.php:155
342
- msgid "Eg. (###) ###-####"
343
- msgstr ""
344
-
345
- #: profile-builder-2.0/admin/manage-fields.php:155
346
- msgid "Empty field won't check for correct phone number."
347
- msgstr ""
348
-
349
- #: profile-builder-2.0/admin/manage-fields.php:156
350
- msgid "Heading Tag"
351
- msgstr ""
352
-
353
- #: profile-builder-2.0/admin/manage-fields.php:156
354
- msgid "Change heading field size on front-end forms"
355
- msgstr ""
356
-
357
- #: profile-builder-2.0/admin/manage-fields.php:157
358
- msgid "Min allowed number value (0 to allow only positive numbers)"
359
- msgstr ""
360
-
361
- #: profile-builder-2.0/admin/manage-fields.php:159
362
- msgid "Number Step Value"
363
- msgstr ""
364
-
365
- #: profile-builder-2.0/admin/manage-fields.php:159
366
- msgid ""
367
- "Step value 1 to allow only integers, 0.1 to allow integers and numbers with "
368
- "1 decimal"
369
- msgstr ""
370
-
371
- #: profile-builder-2.0/admin/manage-fields.php:159
372
- msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
373
- msgstr ""
374
-
375
- #: profile-builder-2.0/admin/manage-fields.php:159
376
- msgid ""
377
- "You can also use step value to specify the legal number intervals (eg. step "
378
- "value 2 will allow only -4, -2, 0, 2 and so on)"
379
- msgstr ""
380
-
381
- #: profile-builder-2.0/admin/manage-fields.php:564
382
- msgid "Albania Lek"
383
- msgstr ""
384
-
385
- #: profile-builder-2.0/admin/manage-fields.php:565
386
- msgid "Afghanistan Afghani"
387
- msgstr ""
388
-
389
- #: profile-builder-2.0/admin/manage-fields.php:566
390
- msgid "Argentina Peso"
391
- msgstr ""
392
-
393
- #: profile-builder-2.0/admin/manage-fields.php:567
394
- msgid "Aruba Guilder"
395
- msgstr ""
396
-
397
- #: profile-builder-2.0/admin/manage-fields.php:568
398
- msgid "Australia Dollar"
399
- msgstr ""
400
-
401
- #: profile-builder-2.0/admin/manage-fields.php:569
402
- msgid "Azerbaijan New Manat"
403
- msgstr ""
404
-
405
- #: profile-builder-2.0/admin/manage-fields.php:570
406
- msgid "Bahamas Dollar"
407
- msgstr ""
408
-
409
- #: profile-builder-2.0/admin/manage-fields.php:571
410
- msgid "Barbados Dollar"
411
- msgstr ""
412
-
413
- #: profile-builder-2.0/admin/manage-fields.php:572
414
- msgid "Bangladeshi taka"
415
- msgstr ""
416
-
417
- #: profile-builder-2.0/admin/manage-fields.php:573
418
- msgid "Belarus Ruble"
419
- msgstr ""
420
-
421
- #: profile-builder-2.0/admin/manage-fields.php:574
422
- msgid "Belize Dollar"
423
- msgstr ""
424
-
425
- #: profile-builder-2.0/admin/manage-fields.php:575
426
- msgid "Bermuda Dollar"
427
- msgstr ""
428
-
429
- #: profile-builder-2.0/admin/manage-fields.php:576
430
- msgid "Bolivia Boliviano"
431
- msgstr ""
432
-
433
- #: profile-builder-2.0/admin/manage-fields.php:577
434
- msgid "Bosnia and Herzegovina Convertible Marka"
435
- msgstr ""
436
-
437
- #: profile-builder-2.0/admin/manage-fields.php:578
438
- msgid "Botswana Pula"
439
- msgstr ""
440
-
441
- #: profile-builder-2.0/admin/manage-fields.php:579
442
- msgid "Bulgaria Lev"
443
- msgstr ""
444
-
445
- #: profile-builder-2.0/admin/manage-fields.php:580
446
- msgid "Brazil Real"
447
- msgstr ""
448
-
449
- #: profile-builder-2.0/admin/manage-fields.php:581
450
- msgid "Brunei Darussalam Dollar"
451
- msgstr ""
452
-
453
- #: profile-builder-2.0/admin/manage-fields.php:582
454
- msgid "Cambodia Riel"
455
- msgstr ""
456
-
457
- #: profile-builder-2.0/admin/manage-fields.php:583
458
- msgid "Canada Dollar"
459
- msgstr ""
460
-
461
- #: profile-builder-2.0/admin/manage-fields.php:584
462
- msgid "Cayman Islands Dollar"
463
- msgstr ""
464
-
465
- #: profile-builder-2.0/admin/manage-fields.php:585
466
- msgid "Chile Peso"
467
- msgstr ""
468
-
469
- #: profile-builder-2.0/admin/manage-fields.php:586
470
- msgid "China Yuan Renminbi"
471
- msgstr ""
472
-
473
- #: profile-builder-2.0/admin/manage-fields.php:587
474
- msgid "Colombia Peso"
475
- msgstr ""
476
-
477
- #: profile-builder-2.0/admin/manage-fields.php:588
478
- msgid "Costa Rica Colon"
479
- msgstr ""
480
-
481
- #: profile-builder-2.0/admin/manage-fields.php:589
482
- msgid "Croatia Kuna"
483
- msgstr ""
484
-
485
- #: profile-builder-2.0/admin/manage-fields.php:590
486
- msgid "Cuba Peso"
487
- msgstr ""
488
-
489
- #: profile-builder-2.0/admin/manage-fields.php:591
490
- msgid "Czech Republic Koruna"
491
- msgstr ""
492
-
493
- #: profile-builder-2.0/admin/manage-fields.php:592
494
- msgid "Denmark Krone"
495
- msgstr ""
496
-
497
- #: profile-builder-2.0/admin/manage-fields.php:593
498
- msgid "Dominican Republic Peso"
499
- msgstr ""
500
-
501
- #: profile-builder-2.0/admin/manage-fields.php:594
502
- msgid "East Caribbean Dollar"
503
- msgstr ""
504
-
505
- #: profile-builder-2.0/admin/manage-fields.php:595
506
- msgid "Egypt Pound"
507
- msgstr ""
508
-
509
- #: profile-builder-2.0/admin/manage-fields.php:596
510
- msgid "El Salvador Colon"
511
- msgstr ""
512
-
513
- #: profile-builder-2.0/admin/manage-fields.php:597
514
- msgid "Estonia Kroon"
515
- msgstr ""
516
-
517
- #: profile-builder-2.0/admin/manage-fields.php:598
518
- msgid "Euro"
519
- msgstr ""
520
-
521
- #: profile-builder-2.0/admin/manage-fields.php:599
522
- msgid "Falkland Islands (Malvinas) Pound"
523
- msgstr ""
524
-
525
- #: profile-builder-2.0/admin/manage-fields.php:600
526
- msgid "Fiji Dollar"
527
- msgstr ""
528
-
529
- #: profile-builder-2.0/admin/manage-fields.php:601
530
- msgid "Ghana Cedis"
531
- msgstr ""
532
-
533
- #: profile-builder-2.0/admin/manage-fields.php:602
534
- msgid "Gibraltar Pound"
535
- msgstr ""
536
-
537
- #: profile-builder-2.0/admin/manage-fields.php:603
538
- msgid "Guatemala Quetzal"
539
- msgstr ""
540
-
541
- #: profile-builder-2.0/admin/manage-fields.php:604
542
- msgid "Guernsey Pound"
543
- msgstr ""
544
-
545
- #: profile-builder-2.0/admin/manage-fields.php:605
546
- msgid "Guyana Dollar"
547
- msgstr ""
548
-
549
- #: profile-builder-2.0/admin/manage-fields.php:606
550
- msgid "Honduras Lempira"
551
- msgstr ""
552
-
553
- #: profile-builder-2.0/admin/manage-fields.php:607
554
- msgid "Hong Kong Dollar"
555
- msgstr ""
556
-
557
- #: profile-builder-2.0/admin/manage-fields.php:608
558
- msgid "Hungary Forint"
559
- msgstr ""
560
-
561
- #: profile-builder-2.0/admin/manage-fields.php:609
562
- msgid "Iceland Krona"
563
- msgstr ""
564
-
565
- #: profile-builder-2.0/admin/manage-fields.php:610
566
- msgid "India Rupee"
567
- msgstr ""
568
-
569
- #: profile-builder-2.0/admin/manage-fields.php:611
570
- msgid "Indonesia Rupiah"
571
- msgstr ""
572
-
573
- #: profile-builder-2.0/admin/manage-fields.php:612
574
- msgid "Iran Rial"
575
- msgstr ""
576
-
577
- #: profile-builder-2.0/admin/manage-fields.php:613
578
- msgid "Isle of Man Pound"
579
- msgstr ""
580
-
581
- #: profile-builder-2.0/admin/manage-fields.php:614
582
- msgid "Israel Shekel"
583
- msgstr ""
584
-
585
- #: profile-builder-2.0/admin/manage-fields.php:615
586
- msgid "Jamaica Dollar"
587
- msgstr ""
588
-
589
- #: profile-builder-2.0/admin/manage-fields.php:616
590
- msgid "Japan Yen"
591
- msgstr ""
592
-
593
- #: profile-builder-2.0/admin/manage-fields.php:617
594
- msgid "Jersey Pound"
595
- msgstr ""
596
-
597
- #: profile-builder-2.0/admin/manage-fields.php:618
598
- msgid "Kazakhstan Tenge"
599
- msgstr ""
600
-
601
- #: profile-builder-2.0/admin/manage-fields.php:619
602
- msgid "Korea (North) Won"
603
- msgstr ""
604
-
605
- #: profile-builder-2.0/admin/manage-fields.php:620
606
- msgid "Korea (South) Won"
607
- msgstr ""
608
-
609
- #: profile-builder-2.0/admin/manage-fields.php:621
610
- msgid "Kyrgyzstan Som"
611
- msgstr ""
612
-
613
- #: profile-builder-2.0/admin/manage-fields.php:622
614
- msgid "Laos Kip"
615
- msgstr ""
616
-
617
- #: profile-builder-2.0/admin/manage-fields.php:623
618
- msgid "Latvia Lat"
619
- msgstr ""
620
-
621
- #: profile-builder-2.0/admin/manage-fields.php:624
622
- msgid "Lebanon Pound"
623
- msgstr ""
624
-
625
- #: profile-builder-2.0/admin/manage-fields.php:625
626
- msgid "Liberia Dollar"
627
- msgstr ""
628
-
629
- #: profile-builder-2.0/admin/manage-fields.php:626
630
- msgid "Lithuania Litas"
631
- msgstr ""
632
-
633
- #: profile-builder-2.0/admin/manage-fields.php:627
634
- msgid "Macedonia Denar"
635
- msgstr ""
636
-
637
- #: profile-builder-2.0/admin/manage-fields.php:628
638
- msgid "Malaysia Ringgit"
639
- msgstr ""
640
-
641
- #: profile-builder-2.0/admin/manage-fields.php:629
642
- msgid "Mauritius Rupee"
643
- msgstr ""
644
-
645
- #: profile-builder-2.0/admin/manage-fields.php:631
646
- msgid "Mongolia Tughrik"
647
- msgstr ""
648
-
649
- #: profile-builder-2.0/admin/manage-fields.php:632
650
- msgid "Mozambique Metical"
651
- msgstr ""
652
-
653
- #: profile-builder-2.0/admin/manage-fields.php:633
654
- msgid "Namibia Dollar"
655
- msgstr ""
656
-
657
- #: profile-builder-2.0/admin/manage-fields.php:634
658
- msgid "Nepal Rupee"
659
- msgstr ""
660
-
661
- #: profile-builder-2.0/admin/manage-fields.php:635
662
- msgid "Netherlands Antilles Guilder"
663
- msgstr ""
664
-
665
- #: profile-builder-2.0/admin/manage-fields.php:636
666
- msgid "New Zealand Dollar"
667
- msgstr ""
668
-
669
- #: profile-builder-2.0/admin/manage-fields.php:637
670
- msgid "Nicaragua Cordoba"
671
- msgstr ""
672
-
673
- #: profile-builder-2.0/admin/manage-fields.php:638
674
- msgid "Nigeria Naira"
675
- msgstr ""
676
-
677
- #: profile-builder-2.0/admin/manage-fields.php:639
678
- msgid "Norway Krone"
679
- msgstr ""
680
-
681
- #: profile-builder-2.0/admin/manage-fields.php:640
682
- msgid "Oman Rial"
683
- msgstr ""
684
-
685
- #: profile-builder-2.0/admin/manage-fields.php:641
686
- msgid "Pakistan Rupee"
687
- msgstr ""
688
-
689
- #: profile-builder-2.0/admin/manage-fields.php:642
690
- msgid "Panama Balboa"
691
- msgstr ""
692
-
693
- #: profile-builder-2.0/admin/manage-fields.php:643
694
- msgid "Paraguay Guarani"
695
- msgstr ""
696
-
697
- #: profile-builder-2.0/admin/manage-fields.php:644
698
- msgid "Peru Nuevo Sol"
699
- msgstr ""
700
-
701
- #: profile-builder-2.0/admin/manage-fields.php:645
702
- msgid "Philippines Peso"
703
- msgstr ""
704
-
705
- #: profile-builder-2.0/admin/manage-fields.php:646
706
- msgid "Poland Zloty"
707
- msgstr ""
708
-
709
- #: profile-builder-2.0/admin/manage-fields.php:647
710
- msgid "Qatar Riyal"
711
- msgstr ""
712
-
713
- #: profile-builder-2.0/admin/manage-fields.php:648
714
- msgid "Romania New Leu"
715
- msgstr ""
716
-
717
- #: profile-builder-2.0/admin/manage-fields.php:649
718
- msgid "Russia Ruble"
719
- msgstr ""
720
-
721
- #: profile-builder-2.0/admin/manage-fields.php:650
722
- msgid "Saint Helena Pound"
723
- msgstr ""
724
-
725
- #: profile-builder-2.0/admin/manage-fields.php:651
726
- msgid "Saudi Arabia Riyal"
727
- msgstr ""
728
-
729
- #: profile-builder-2.0/admin/manage-fields.php:652
730
- msgid "Serbia Dinar"
731
- msgstr ""
732
-
733
- #: profile-builder-2.0/admin/manage-fields.php:653
734
- msgid "Seychelles Rupee"
735
- msgstr ""
736
-
737
- #: profile-builder-2.0/admin/manage-fields.php:654
738
- msgid "Singapore Dollar"
739
- msgstr ""
740
-
741
- #: profile-builder-2.0/admin/manage-fields.php:655
742
- msgid "Solomon Islands Dollar"
743
- msgstr ""
744
-
745
- #: profile-builder-2.0/admin/manage-fields.php:656
746
- msgid "Somalia Shilling"
747
- msgstr ""
748
-
749
- #: profile-builder-2.0/admin/manage-fields.php:657
750
- msgid "South Africa Rand"
751
- msgstr ""
752
-
753
- #: profile-builder-2.0/admin/manage-fields.php:658
754
- msgid "Sri Lanka Rupee"
755
- msgstr ""
756
-
757
- #: profile-builder-2.0/admin/manage-fields.php:659
758
- msgid "Sweden Krona"
759
- msgstr ""
760
-
761
- #: profile-builder-2.0/admin/manage-fields.php:660
762
- msgid "Switzerland Franc"
763
- msgstr ""
764
-
765
- #: profile-builder-2.0/admin/manage-fields.php:661
766
- msgid "Suriname Dollar"
767
- msgstr ""
768
-
769
- #: profile-builder-2.0/admin/manage-fields.php:662
770
- msgid "Syria Pound"
771
- msgstr ""
772
-
773
- #: profile-builder-2.0/admin/manage-fields.php:663
774
- msgid "Taiwan New Dollar"
775
- msgstr ""
776
-
777
- #: profile-builder-2.0/admin/manage-fields.php:664
778
- msgid "Thailand Baht"
779
- msgstr ""
780
-
781
- #: profile-builder-2.0/admin/manage-fields.php:665
782
- msgid "Trinidad and Tobago Dollar"
783
- msgstr ""
784
-
785
- #: profile-builder-2.0/admin/manage-fields.php:666
786
- #: profile-builder-2.0/admin/manage-fields.php:667
787
- msgid "Turkey Lira"
788
- msgstr ""
789
-
790
- #: profile-builder-2.0/admin/manage-fields.php:668
791
- msgid "Tuvalu Dollar"
792
- msgstr ""
793
-
794
- #: profile-builder-2.0/admin/manage-fields.php:669
795
- msgid "Ukraine Hryvna"
796
- msgstr ""
797
-
798
- #: profile-builder-2.0/admin/manage-fields.php:670
799
- msgid "United Kingdom Pound"
800
- msgstr ""
801
-
802
- #: profile-builder-2.0/admin/manage-fields.php:671
803
- msgid "Uganda Shilling"
804
- msgstr ""
805
-
806
- #: profile-builder-2.0/admin/manage-fields.php:672
807
- msgid "US Dollar"
808
- msgstr ""
809
-
810
- #: profile-builder-2.0/admin/manage-fields.php:673
811
- msgid "Uruguay Peso"
812
- msgstr ""
813
-
814
- #: profile-builder-2.0/admin/manage-fields.php:674
815
- msgid "Uzbekistan Som"
816
- msgstr ""
817
-
818
- #: profile-builder-2.0/admin/manage-fields.php:675
819
- msgid "Venezuela Bolivar"
820
- msgstr ""
821
-
822
- #: profile-builder-2.0/admin/manage-fields.php:676
823
- msgid "Viet Nam Dong"
824
- msgstr ""
825
-
826
- #: profile-builder-2.0/admin/manage-fields.php:677
827
- msgid "Yemen Rial"
828
- msgstr ""
829
-
830
- #: profile-builder-2.0/admin/manage-fields.php:678
831
- msgid "Zimbabwe Dollar"
832
- msgstr ""
833
-
834
- #: profile-builder-2.0/admin/manage-fields.php:1097
835
- msgid ""
836
- "The meta-name can only contain lowercase letters, numbers, _ , - and no "
837
- "spaces.\n"
838
- msgstr ""
839
-
840
- #: profile-builder-2.0/admin/manage-fields.php:1314
841
- msgid "Search Location"
842
- msgstr ""
843
-
844
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
845
- msgid "Conditional Logic"
846
- msgstr ""
847
-
848
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
849
- msgid "Conditional Rules"
850
- msgstr ""
851
-
852
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
853
- msgid "This field has conditional logic enabled."
854
- msgstr ""
855
-
856
- #: profile-builder-2.0/front-end/class-formbuilder.php:124
857
- msgid ""
858
- "The role of the created user set to the default role. Only an administrator "
859
- "can register a user with the role assigned to this form."
860
- msgstr ""
861
-
862
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
863
- msgid "Value must be a multiplier of %1$s"
864
- msgstr ""
865
-
866
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
867
- msgid "Value must be greater than or equal to %1$s"
868
- msgstr ""
869
-
870
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
871
- msgid "Value must be less than or equal to %1$s"
872
- msgstr ""
873
-
874
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
875
- msgid "Required phone number format: "
876
- msgstr ""
877
-
878
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
879
- msgid "Bolivia, __( Plurinational State of"
880
- msgstr ""
881
-
882
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
883
- msgid "Bonaire, __( Sint Eustatius and Saba"
884
- msgstr ""
885
-
886
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
887
- msgid "Brunei Darussalam"
888
- msgstr ""
889
-
890
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
891
- msgid "Cabo Verde"
892
- msgstr ""
893
-
894
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
895
- msgid "Cocos (Keeling) Islands"
896
- msgstr ""
897
-
898
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
899
- msgid "Congo"
900
- msgstr ""
901
-
902
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
903
- msgid "Congo, __( the Democratic Republic of the"
904
- msgstr ""
905
-
906
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
907
- msgid "Cote dIvoire"
908
- msgstr ""
909
-
910
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
911
- msgid "Falkland Islands (Malvinas)"
912
- msgstr ""
913
-
914
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
915
- msgid "Holy See (Vatican City State)"
916
- msgstr ""
917
-
918
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
919
- msgid "Iran, __( Islamic Republic of"
920
- msgstr ""
921
-
922
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
923
- msgid "Korea, __( Democratic Peoples Republic of"
924
- msgstr ""
925
-
926
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
927
- msgid "Korea, __( Republic of"
928
- msgstr ""
929
-
930
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
931
- msgid "Lao Peoples Democratic Republic"
932
- msgstr ""
933
-
934
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
935
- msgid "Macedonia, __( the former Yugoslav Republic of"
936
- msgstr ""
937
-
938
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
939
- msgid "Micronesia, __( Federated States of"
940
- msgstr ""
941
-
942
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
943
- msgid "Moldova, __( Republic of"
944
- msgstr ""
945
-
946
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
947
- msgid "Palestine, __( State of"
948
- msgstr ""
949
-
950
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
951
- msgid "Russian Federation"
952
- msgstr ""
953
-
954
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
955
- msgid "Saint Helena, __( Ascension and Tristan da Cunha"
956
- msgstr ""
957
-
958
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
959
- msgid "Saint Martin (French part)"
960
- msgstr ""
961
-
962
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
963
- msgid "Sint Maarten (Dutch part)"
964
- msgstr ""
965
-
966
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
967
- msgid "Syrian Arab Republic"
968
- msgstr ""
969
-
970
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
971
- msgid "Taiwan, __( Province of China"
972
- msgstr ""
973
-
974
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
975
- msgid "Tanzania, __( United Republic of"
976
- msgstr ""
977
-
978
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
979
- msgid "Timor-Leste"
980
- msgstr ""
981
-
982
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
983
- msgid "Venezuela, __( Bolivarian Republic of"
984
- msgstr ""
985
-
986
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
987
- msgid "Viet Nam"
988
- msgstr ""
989
-
990
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
991
- msgid "Virgin Islands, __( British"
992
- msgstr ""
993
-
994
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
995
- msgid "Virgin Islands, __( U.S."
996
- msgstr ""
997
-
998
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
999
- #: profile-builder-2.0/modules/user-listing/userlisting.php:186
1000
- msgid "User Fields Tags"
1001
- msgstr ""
1002
-
1003
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479
1004
- msgid "The users selected password at signup"
1005
- msgstr ""
1006
-
1007
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
1008
- msgid "[{{site_name}}] Notice of Email Change"
1009
- msgstr ""
1010
-
1011
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
1012
- msgid "Changed Email Address Notification"
1013
- msgstr ""
1014
-
1015
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1016
- msgid "Limit"
1017
- msgstr ""
1018
-
1019
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
1020
- msgid ""
1021
- "Enable limit to the number of fields to be generated by users in front end "
1022
- "forms "
1023
- msgstr ""
1024
-
1025
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1026
- msgid "General Limit"
1027
- msgstr ""
1028
-
1029
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
1030
- msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
1031
- msgstr ""
1032
-
1033
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1034
- msgid "Limit reached message"
1035
- msgstr ""
1036
-
1037
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1038
- msgid "The maximum number of fields has been reached."
1039
- msgstr ""
1040
-
1041
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
1042
- msgid ""
1043
- "The popup message to display when the limit of repeater groups is reached."
1044
- msgstr ""
1045
-
1046
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1047
- msgid "Limit per Role"
1048
- msgstr ""
1049
-
1050
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
1051
- msgid "Leave 0 for unlimited."
1052
- msgstr ""
1053
-
1054
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1055
- msgid "Repeated field group"
1056
- msgstr ""
1057
-
1058
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
1059
- msgid "Manage field or group of fields that will be repeatable."
1060
- msgstr ""
1061
-
1062
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
1063
- msgid "Edit field group"
1064
- msgstr ""
1065
-
1066
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
1067
- msgid "Repeatable fields saved!"
1068
- msgstr ""
1069
-
1070
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
1071
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
1072
- msgid ""
1073
- "Please enter a unique field title.\n"
1074
- msgstr ""
1075
-
1076
- #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
1077
- msgid "Are you sure you want to delete this?"
1078
- msgstr ""
1079
-
1080
- #: profile-builder-2.0/modules/user-listing/userlisting.php:192
1081
- msgid "Sort Tags"
1082
- msgstr ""
1083
-
1084
- #: profile-builder-2.0/modules/user-listing/userlisting.php:201
1085
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2308
1086
- msgid "Faceted Menus"
1087
- msgstr ""
1088
-
1089
- #: profile-builder-2.0/modules/user-listing/userlisting.php:202
1090
- msgid "User Count"
1091
- msgstr ""
1092
-
1093
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1094
- msgid "Choose the facet name that appears on the frontend"
1095
- msgstr ""
1096
-
1097
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1098
- msgid "Facet Type"
1099
- msgstr ""
1100
-
1101
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
1102
- msgid "Choose the facet menu type"
1103
- msgstr ""
1104
-
1105
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1106
- msgid "Facet Meta"
1107
- msgstr ""
1108
-
1109
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
1110
- msgid "Choose the meta field for the facet menu"
1111
- msgstr ""
1112
-
1113
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1114
- msgid "Narrow the results"
1115
- msgstr ""
1116
-
1117
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1118
- msgid "Expand the results"
1119
- msgstr ""
1120
-
1121
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1122
- msgid "Choose how multiple selections affect the results"
1123
- msgstr ""
1124
-
1125
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1126
- msgid "Visible choices"
1127
- msgstr ""
1128
-
1129
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
1130
- msgid "Show a toggle link after this many choices. Leave blank for all"
1131
- msgstr ""
1132
-
1133
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1134
- msgid "Search Fields"
1135
- msgstr ""
1136
-
1137
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
1138
- msgid "Choose the fields in which the Search Field will look in"
1139
- msgstr ""
1140
-
1141
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2330
1142
- msgid "Search Settings"
1143
- msgstr ""
1144
-
1145
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
1146
- msgid "After Edit Profile"
1147
- msgstr ""
1148
-
1149
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
1150
- msgid "After Successful Email Confirmation"
1151
- msgstr ""
1152
-
1153
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
1154
- msgid "After Successful Password Reset"
1155
- msgstr ""
1156
-
1157
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
1158
- msgid "Dashboard (redirect users from accessing the dashboard)"
1159
- msgstr ""
1160
-
1161
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1162
- msgid "User ID / Username"
1163
- msgstr ""
1164
-
1165
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
1166
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
1167
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
1168
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
1169
- msgid "Redirect Type"
1170
- msgstr ""
1171
-
1172
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1173
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1174
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1175
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1176
- msgid "Redirect URL"
1177
- msgstr ""
1178
-
1179
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
1180
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
1181
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
1182
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
1183
- msgid ""
1184
- "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, {{user_id}},"
1185
- " {{user_nicename}}, {{http_referer}}"
1186
- msgstr ""
1187
-
1188
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
1189
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
1190
- msgid "Individual User Redirects"
1191
- msgstr ""
1192
-
1193
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
1194
- msgid "... Choose"
1195
- msgstr ""
1196
-
1197
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
1198
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
1199
- msgid "User Role based Redirects"
1200
- msgstr ""
1201
-
1202
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
1203
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
1204
- msgid "Global Redirects"
1205
- msgstr ""
1206
-
1207
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
1208
- msgid "Redirect Default WordPress Forms and Pages"
1209
- msgstr ""
1210
-
1211
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
1212
- msgid "How does this work?"
1213
- msgstr ""
1214
-
1215
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
1216
- msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
1217
- msgstr ""
1218
-
1219
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
1220
- msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
1221
- msgstr ""
1222
-
1223
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
1224
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
1225
- msgid "<pre>Redirect</pre><pre>URL</pre>"
1226
- msgstr ""
1227
-
1228
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
1229
- msgid ""
1230
- "These redirects happen after a successful action, like registration or after "
1231
- "a successful login."
1232
- msgstr ""
1233
-
1234
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
1235
- msgid "Which redirect happens depends on the following priority:"
1236
- msgstr ""
1237
-
1238
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
1239
- msgid "Redirect Default WordPress forms and pages"
1240
- msgstr ""
1241
-
1242
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
1243
- msgid ""
1244
- "With these you can redirect various WordPress forms and pages to pages "
1245
- "created with profile builder."
1246
- msgstr ""
1247
-
1248
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
1249
- msgid "Available tags for dynamic URLs"
1250
- msgstr ""
1251
-
1252
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
1253
- msgid ""
1254
- "You use the following tags in your URLs to redirect users to various pages."
1255
- msgstr ""
1256
-
1257
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
1258
- msgid "generates a url of the current website homepage."
1259
- msgstr ""
1260
-
1261
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
1262
- msgid ""
1263
- "in WordPress the <a target='_blank' href='https://codex.wordpress."
1264
- "org/Function_Reference/site_url'>site url</a> can be different then the home "
1265
- "url"
1266
- msgstr ""
1267
-
1268
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
1269
- msgid "the ID of the user"
1270
- msgstr ""
1271
-
1272
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
1273
- msgid ""
1274
- "the URL sanitized version of the username, the user nicename can be safely "
1275
- "used in URLs since it can't contain special characters or spaces."
1276
- msgstr ""
1277
-
1278
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
1279
- msgid "the URL of the previously visited page"
1280
- msgstr ""
1281
-
1282
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
1283
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
1284
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
1285
- msgid "You can't add duplicate redirects!"
1286
- msgstr ""
1287
-
1288
- #: profile-builder-2.0/admin/admin-functions.php:41
1289
- msgid "Display name publicly as - only appears on the Edit Profile page!"
1290
- msgstr ""
1291
-
1292
- #: profile-builder-2.0/admin/basic-info.php:37
1293
- msgid "Friction-less login using %s shortcode or a widget."
1294
- msgstr ""
1295
-
1296
- #: profile-builder-2.0/admin/basic-info.php:41
1297
- msgid "Beautiful registration forms fully customizable using the %s shortcode."
1298
- msgstr ""
1299
-
1300
- #: profile-builder-2.0/admin/basic-info.php:45
1301
- msgid "Straight forward edit profile forms using %s shortcode."
1302
- msgstr ""
1303
-
1304
- #: profile-builder-2.0/admin/basic-info.php:58
1305
- msgid "Allow users to recover their password in the front-end using the %s."
1306
- msgstr ""
1307
-
1308
- #: profile-builder-2.0/admin/basic-info.php:140
1309
- msgid ""
1310
- "To create a page containing the users registered to this current site/blog, "
1311
- "insert the following shortcode in a page of your chosing: %s."
1312
- msgstr ""
1313
-
1314
- #: profile-builder-2.0/admin/general-settings.php:115
1315
- msgid "\"Admin Approval\" on User Role:"
1316
- msgstr ""
1317
-
1318
- #: profile-builder-2.0/admin/general-settings.php:134
1319
- msgid "Select on what user roles to activate Admin Approval."
1320
- msgstr ""
1321
-
1322
- #: profile-builder-2.0/admin/manage-fields.php:133
1323
- msgid "Display on PB forms"
1324
- msgstr ""
1325
-
1326
- #: profile-builder-2.0/admin/manage-fields.php:133
1327
- msgid "PB Login"
1328
- msgstr ""
1329
-
1330
- #: profile-builder-2.0/admin/manage-fields.php:133
1331
- msgid "PB Register"
1332
- msgstr ""
1333
-
1334
- #: profile-builder-2.0/admin/manage-fields.php:133
1335
- msgid "PB Recover Password"
1336
- msgstr ""
1337
-
1338
- #: profile-builder-2.0/admin/manage-fields.php:133
1339
- msgid "Select on which Profile Builder forms to display reCAPTCHA"
1340
- msgstr ""
1341
-
1342
- #: profile-builder-2.0/admin/manage-fields.php:134
1343
- msgid "Display on default WP forms"
1344
- msgstr ""
1345
-
1346
- #: profile-builder-2.0/admin/manage-fields.php:134
1347
- msgid "Default WP Login"
1348
- msgstr ""
1349
-
1350
- #: profile-builder-2.0/admin/manage-fields.php:134
1351
- msgid "Default WP Register"
1352
- msgstr ""
1353
-
1354
- #: profile-builder-2.0/admin/manage-fields.php:134
1355
- msgid "Default WP Recover Password"
1356
- msgstr ""
1357
-
1358
- #: profile-builder-2.0/admin/manage-fields.php:134
1359
- msgid "Select on which default WP forms to display reCAPTCHA"
1360
- msgstr ""
1361
-
1362
- #: profile-builder-2.0/admin/manage-fields.php:140
1363
- #: profile-builder-2.0/admin/manage-fields.php:141
1364
- #: profile-builder-2.0/admin/manage-fields.php:142
1365
- msgid "Default option of the field"
1366
- msgstr ""
1367
-
1368
- #: profile-builder-2.0/admin/manage-fields.php:1219
1369
- msgid ""
1370
- "With Profile Builder Pro v2 you can display different fields in the "
1371
- "registration and edit profile forms, using the Multiple Registration & Edit "
1372
- "Profile Forms module."
1373
- msgstr ""
1374
-
1375
- #: profile-builder-2.0/features/functions.php:678
1376
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
1377
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
1378
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
1379
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
1380
- msgid "Please enter a (valid) reCAPTCHA value"
1381
- msgstr ""
1382
-
1383
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
1384
- msgid "Click the BACK button on your browser, and try again."
1385
- msgstr ""
1386
-
1387
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
1388
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
1389
- msgid "Sorry, you cannot upload this file type for this field."
1390
- msgstr ""
1391
-
1392
- #: profile-builder-2.0/modules/user-listing/userlisting.php:376
1393
- msgid "You do not have permission to view this user list."
1394
- msgstr ""
1395
-
1396
- #: profile-builder-2.0/modules/user-listing/userlisting.php:389
1397
- msgid "You do not have the required user role to view this user list."
1398
- msgstr ""
1399
-
1400
- #: profile-builder-2.0/admin/admin-functions.php:200
1401
- msgid ""
1402
- "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" "
1403
- "target=\"_blank\">rate us on WordPress.org</a>. More happy users means more "
1404
- "features, less bugs and better support for everyone. "
1405
- msgstr ""
1406
-
1407
- #: profile-builder-2.0/admin/manage-fields.php:84
1408
- msgid ""
1409
- ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO "
1410
- "versions</a>."
1411
- msgstr ""
1412
-
1413
- #: profile-builder-2.0/admin/manage-fields.php:131
1414
- msgid ""
1415
- "The site key from Google, <a href=\"http://www.google.com/recaptcha\" "
1416
- "target=\"_blank\">www.google.com/recaptcha</a>"
1417
- msgstr ""
1418
-
1419
- #: profile-builder-2.0/admin/manage-fields.php:132
1420
- msgid ""
1421
- "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" "
1422
- "target=\"_blank\">www.google.com/recaptcha</a>"
1423
- msgstr ""
1424
-
1425
- #: profile-builder-2.0/admin/manage-fields.php:1025
1426
- msgid ""
1427
- "You must enter the secret key\n"
1428
- msgstr ""
1429
-
1430
- #: profile-builder-2.0/admin/add-ons.php:43
1431
- #: profile-builder-2.0/admin/add-ons.php:140
1432
- msgid "Add-On is <strong>active</strong>"
1433
- msgstr ""
1434
-
1435
- #: profile-builder-2.0/admin/add-ons.php:44
1436
- #: profile-builder-2.0/admin/add-ons.php:138
1437
- msgid "Add-On is <strong>inactive</strong>"
1438
- msgstr ""
1439
-
1440
- #: profile-builder-2.0/admin/add-ons.php:47
1441
- msgid "Add-On has been deactivated."
1442
- msgstr ""
1443
-
1444
- #: profile-builder-2.0/admin/add-ons.php:153
1445
- #: profile-builder-2.0/admin/add-ons.php:251
1446
- #: profile-builder-2.0/admin/pms-cross-promotion.php:141
1447
- #: profile-builder-2.0/admin/pms-cross-promotion.php:220
1448
- msgid "Compatible with your version of Profile Builder."
1449
- msgstr ""
1450
-
1451
- #: profile-builder-2.0/admin/add-ons.php:162
1452
- msgid "Upgrade Profile Builder"
1453
- msgstr ""
1454
-
1455
- #: profile-builder-2.0/admin/add-ons.php:163
1456
- msgid "Not compatible with Profile Builder"
1457
- msgstr ""
1458
-
1459
- #: profile-builder-2.0/admin/add-ons.php:171
1460
- msgid "Not compatible with your version of Profile Builder."
1461
- msgstr ""
1462
-
1463
- #: profile-builder-2.0/admin/add-ons.php:172
1464
- msgid "Minimum required Profile Builder version:"
1465
- msgstr ""
1466
-
1467
- #: profile-builder-2.0/admin/add-ons.php:177
1468
- msgid ""
1469
- "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install "
1470
- "manually</a>."
1471
- msgstr ""
1472
-
1473
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
1474
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
1475
- msgid "This username is invalid because it uses illegal characters."
1476
- msgstr ""
1477
-
1478
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
1479
- msgid ""
1480
- "\n"
1481
- "<p>{{username}} has requested a password change via the password reset "
1482
- "feature.</p>\n"
1483
- "<p>His/her new password is: {{password}}</p>\n"
1484
- msgstr ""
1485
-
1486
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
1487
- msgid "Admin Notification for User Password Reset"
1488
- msgstr ""
1489
-
1490
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
1491
- msgid "Reset Key"
1492
- msgstr ""
1493
-
1494
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
1495
- msgid "Reset Url"
1496
- msgstr ""
1497
-
1498
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
1499
- msgid "Reset Link"
1500
- msgstr ""
1501
-
1502
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
1503
- msgid ""
1504
- "\n"
1505
- "<p>Someone requested that the password be reset for the following account: "
1506
- "{{site_name}}<br/>\n"
1507
- "Username: {{username}}</p>\n"
1508
- "<p>If this was a mistake, just ignore this email and nothing will happen.</p>"
1509
- "\n"
1510
- "<p>To reset your password, visit the following address:<br/>\n"
1511
- "{{{reset_link}}}</p>\n"
1512
- msgstr ""
1513
-
1514
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
1515
- msgid "[{{site_name}}] Password Reset Successfully"
1516
- msgstr ""
1517
-
1518
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
1519
- msgid "Password Reset Success Email"
1520
- msgstr ""
1521
-
1522
- #: profile-builder-2.0/features/functions.php:909
1523
- msgid "<br><br>You can visit your site at "
1524
- msgstr "<br><br>Puedes visitar tu sitio en"
1525
-
1526
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
1527
- msgid "Site Title"
1528
- msgstr "Título del sitio"
1529
-
1530
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
1531
- msgid "Yes, I'd like to create a new site"
1532
- msgstr "Si, me gustaría crear un sitio nuevo"
1533
-
1534
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
1535
- msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
1536
- msgstr "¡Bienvenido a %1$s!<br/><br/><br/>Tu nombre de usuarui es:%2$s"
1537
-
1538
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
1539
- msgid "View Map"
1540
- msgstr "Ver mapa"
1541
-
1542
- #: profile-builder-2.0/admin/add-ons.php:105
1543
- msgid "Available in All Versions"
1544
- msgstr "Disponible en todas las versiones"
1545
-
1546
- #: profile-builder-2.0/admin/add-ons.php:148
1547
- msgid "Learn More"
1548
- msgstr "Aprende más"
1549
-
1550
- #: profile-builder-2.0/admin/basic-info.php:109
1551
- msgid "Number"
1552
- msgstr "Número"
1553
-
1554
- #: profile-builder-2.0/admin/basic-info.php:114
1555
- msgid "Validation"
1556
- msgstr "Validación"
1557
-
1558
- #: profile-builder-2.0/admin/basic-info.php:115
1559
- msgid "Map"
1560
- msgstr "Mapa"
1561
-
1562
- #: profile-builder-2.0/admin/basic-info.php:116
1563
- msgid "HTML"
1564
- msgstr "HTML"
1565
-
1566
- #: profile-builder-2.0/admin/basic-info.php:162
1567
- #: profile-builder-2.0/modules/modules.php:117
1568
- msgid "Repeater Fields"
1569
- msgstr "Campos repetitivos"
1570
-
1571
- #: profile-builder-2.0/admin/manage-fields.php:148
1572
- msgid "Google Maps API Key"
1573
- msgstr "Clave de la API de Google Maps"
1574
-
1575
- #: profile-builder-2.0/admin/manage-fields.php:154
1576
- msgid "HTML Content"
1577
- msgstr "Contenido HTML"
1578
-
1579
- #: profile-builder-2.0/admin/manage-fields.php:157
1580
- msgid "Min Number Value"
1581
- msgstr "Valor mínimo"
1582
-
1583
- #: profile-builder-2.0/admin/manage-fields.php:157
1584
- msgid "Leave it empty for no min value"
1585
- msgstr "Dejar vacío para ningún valor mínimo"
1586
-
1587
- #: profile-builder-2.0/admin/manage-fields.php:158
1588
- msgid "Max Number Value"
1589
- msgstr "Valor máximo"
1590
-
1591
- #: profile-builder-2.0/admin/manage-fields.php:158
1592
- msgid "Max allowed number value (0 to allow only negative numbers)"
1593
- msgstr "Valor máximo permitido (0 para permitir sólo números negativos)"
1594
-
1595
- #: profile-builder-2.0/admin/manage-fields.php:158
1596
- msgid "Leave it empty for no max value"
1597
- msgstr "Dejar vacío para ningún valor máximo"
1598
-
1599
- #: profile-builder-2.0/admin/manage-fields.php:159
1600
- msgid "Leave it empty for no restriction"
1601
- msgstr "Déjalo vacío para ninguna restricción"
1602
-
1603
- #: profile-builder-2.0/admin/manage-fields.php:630
1604
- msgid "Mexico Peso"
1605
- msgstr "Peso mexicano"
1606
-
1607
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
1608
- msgid "You are not allowed to do this."
1609
- msgstr "No se te permite hacer esto."
1610
-
1611
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
1612
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
1613
- msgid "Search Users"
1614
- msgstr "Buscar usuarios"
1615
-
1616
- #: profile-builder-2.0/features/functions.php:685
1617
- msgid "Incorrect phone number"
1618
- msgstr "Número de teléfono incorrecto"
1619
-
1620
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
1621
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
1622
- msgid "Please add the Google Maps API key for this field."
1623
- msgstr "Añade la clave de la API de Google Maps para este campo."
1624
-
1625
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
1626
- msgid "Something went wrong. Please try again."
1627
- msgstr "Algo salió mal. Por favor inténtalo de nuevo."
1628
-
1629
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
1630
- msgid "Please enter numbers only"
1631
- msgstr "Por favor ingresa números solamente"
1632
-
1633
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1553
1634
- msgid "Show All"
1635
- msgstr "Mostrar todos"
1636
-
1637
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
1638
- msgid "No options available"
1639
- msgstr "No hay opciones disponibles"
1640
-
1641
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
1642
- msgid "Remove All Filters"
1643
- msgstr "Quitar todos los filtros"
1644
-
1645
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
1646
- msgid "Label"
1647
- msgstr "Etiqueta"
1648
-
1649
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
1650
- msgid "Behaviour"
1651
- msgstr "Comportamiento"
1652
-
1653
- #: pb-add-on-woocommerce/billing-fields.php:8
1654
- #: pb-add-on-woocommerce/shipping-fields.php:8
1655
- msgid "Company Name"
1656
- msgstr "Nombre de la empresa"
1657
-
1658
- #: pb-add-on-woocommerce/billing-fields.php:9
1659
- #: pb-add-on-woocommerce/shipping-fields.php:9
1660
- msgid "Address"
1661
- msgstr "Dirección"
1662
-
1663
- #: pb-add-on-woocommerce/billing-fields.php:5
1664
- #: pb-add-on-woocommerce/shipping-fields.php:5
1665
- msgid "Country"
1666
- msgstr "País"
1667
-
1668
- #: pb-add-on-woocommerce/billing-fields.php:11
1669
- #: pb-add-on-woocommerce/shipping-fields.php:11
1670
- msgid "Town / City"
1671
- msgstr "Ciudad"
1672
-
1673
- #: pb-add-on-woocommerce/billing-fields.php:12
1674
- #: pb-add-on-woocommerce/shipping-fields.php:12
1675
- msgid "State / County"
1676
- msgstr "Estado / Región"
1677
-
1678
- #: pb-add-on-woocommerce/billing-fields.php:13
1679
- #: pb-add-on-woocommerce/shipping-fields.php:13
1680
- msgid "Postcode / Zip"
1681
- msgstr "Código Postal"
1682
-
1683
- #: pb-add-on-woocommerce/billing-fields.php:14
1684
- msgid "Email Address"
1685
- msgstr "Correo electrónico"
1686
-
1687
- #: pb-add-on-woocommerce/billing-fields.php:15
1688
- msgid "Phone"
1689
- msgstr "Teléfono"
1690
-
1691
- #: pb-add-on-woocommerce/billing-fields.php:278
1692
- msgid "Ship to a different address?"
1693
- msgstr "¿Enviar a una dirección diferente?"
1694
-
1695
- #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
1696
- msgid "Billing Address"
1697
- msgstr "Dirección de Facturación"
1698
-
1699
- #: pb-add-on-woocommerce/index.php:169
1700
- msgid "Displays customer billing fields in front-end. "
1701
- msgstr "Mostrar campos de facturación del cliente en el front-end"
1702
-
1703
- #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
1704
- msgid "Shipping Address"
1705
- msgstr "Dirección de envío"
1706
-
1707
- #: pb-add-on-woocommerce/index.php:173
1708
- msgid "Displays customer shipping fields in front-end. "
1709
- msgstr "Mostrar campos de envío del cliente en el front-end"
1710
-
1711
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1712
- msgid "Display on WooCommerce Checkout"
1713
- msgstr "Mostrar en el Checkout de Woocommerce"
1714
-
1715
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
1716
- msgid ""
1717
- "Whether the field should be added to the WooCommerce checkout form or not"
1718
- msgstr ""
1719
- "Ya sea que el campo debe ser añadido a la forma de pago WooCommerce o no"
1720
-
1721
- #: pb-add-on-woocommerce/index.php:541
1722
- msgid ""
1723
- "WooCommerce needs to be installed and activated for Profile Builder - "
1724
- "WooCommerce Sync Add-on to work!"
1725
- msgstr ""
1726
- "WooCommerce necesita estar instalado y activado para que Profile Builder - "
1727
- "WooCommerce Sync Add-on trabaje correctamente!"
1728
-
1729
- #: pb-add-on-woocommerce/woosync-page.php:23
1730
- #: pb-add-on-woocommerce/woosync-page.php:70
1731
- msgid "WooCommerce Sync"
1732
- msgstr "WooCommerce Sync"
1733
-
1734
- #: pb-add-on-woocommerce/woosync-page.php:76
1735
- msgid "Choose Register form to display on My Account page:"
1736
- msgstr ""
1737
- "Seleccione el formulario de Registro a mostrar en la página \"Mi cuenta\""
1738
-
1739
- #: pb-add-on-woocommerce/woosync-page.php:81
1740
- msgid "Default Register"
1741
- msgstr "Registro por defecto"
1742
-
1743
- #: pb-add-on-woocommerce/woosync-page.php:103
1744
- msgid ""
1745
- "Select which Profile Builder Register form to display on My Account page "
1746
- "from WooCommerce. <br/> This will also add the Profile Builder Login form to "
1747
- "MyAccount page."
1748
- msgstr ""
1749
- "Selecciona el formulario de Profile Builder para mostrar en la página \"Mi "
1750
- "cuenta\" de WooCommerce.<br/>\n"
1751
- "Esto también añadirá el formulario de Profile Builder Login a la página \"Mi "
1752
- "cuenta\"."
1753
-
1754
- #: pb-add-on-woocommerce/woosync-page.php:110
1755
- msgid "Choose Edit Profile form to display on My Account page:"
1756
- msgstr ""
1757
- "Elige el formulario Editar Perfil para que aparezca en la pagina de Mi "
1758
- "Cuenta:"
1759
-
1760
- #: pb-add-on-woocommerce/woosync-page.php:115
1761
- msgid "Default Edit Profile"
1762
- msgstr "Perfil de Editar Predeterminado"
1763
-
1764
- #: pb-add-on-woocommerce/woosync-page.php:137
1765
- msgid ""
1766
- "Select which Profile Builder Edit-profile form to display on My Account page "
1767
- "from WooCommerce."
1768
- msgstr ""
1769
- "Selecciona que formulario de Editar-perfil de Profile Builder para mostrar "
1770
- "en la pagina Mi cuenta de WooComerce"
1771
-
1772
- #: profile-builder-2.0/admin/add-ons.php:190
1773
- msgid "Recommended Plugins"
1774
- msgstr "Plugins recomendados"
1775
-
1776
- #: profile-builder-2.0/admin/add-ons.php:219
1777
- #: profile-builder-2.0/admin/pms-cross-promotion.php:102
1778
- msgid "Free"
1779
- msgstr "Gratis"
1780
-
1781
- #: profile-builder-2.0/admin/add-ons.php:221
1782
- msgid ""
1783
- "Accept user payments, create subscription plans and restrict content on your "
1784
- "membership site."
1785
- msgstr ""
1786
- "Aceptar pagos de usuarios, crear planes de suscripciones y restringir el "
1787
- "contenido en tu sitio de afiliación"
1788
-
1789
- #: profile-builder-2.0/admin/add-ons.php:222
1790
- #: profile-builder-2.0/admin/pms-cross-promotion.php:105
1791
- msgid "More Details"
1792
- msgstr "Mas detalles"
1793
-
1794
- #: profile-builder-2.0/admin/add-ons.php:240
1795
- #: profile-builder-2.0/admin/pms-cross-promotion.php:88
1796
- #: profile-builder-2.0/admin/pms-cross-promotion.php:123
1797
- #: profile-builder-2.0/admin/pms-cross-promotion.php:202
1798
- msgid "Plugin is <strong>inactive</strong>"
1799
- msgstr "Plugin <strong>desactivado</strong>"
1800
-
1801
- #: profile-builder-2.0/admin/add-ons.php:242
1802
- #: profile-builder-2.0/admin/pms-cross-promotion.php:87
1803
- #: profile-builder-2.0/admin/pms-cross-promotion.php:125
1804
- #: profile-builder-2.0/admin/pms-cross-promotion.php:204
1805
- msgid "Plugin is <strong>active</strong>"
1806
- msgstr "Plugin <strong>activado</strong>"
1807
-
1808
- #: profile-builder-2.0/admin/add-ons.php:256
1809
- #: profile-builder-2.0/admin/pms-cross-promotion.php:146
1810
- msgid ""
1811
- "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install "
1812
- "manually</a>."
1813
- msgstr ""
1814
- "No se pudo instalar el plugin. Reintente o <a href=\"%s\" target=\"_blank\">"
1815
- "instale manualmente</a>."
1816
-
1817
- #: profile-builder-2.0/admin/pms-cross-promotion.php:10
1818
- msgid "Paid Accounts"
1819
- msgstr "Cuentas de Pago"
1820
-
1821
- #: profile-builder-2.0/admin/pms-cross-promotion.php:33
1822
- msgid "Paid Member Subscriptions - a free WordPress plugin"
1823
- msgstr "Paid Member Subscription - un plugin gratuito de WordPress"
1824
-
1825
- #: profile-builder-2.0/admin/pms-cross-promotion.php:37
1826
- msgid ""
1827
- "With the new Subscriptions Field in Profile Builder, your registration forms "
1828
- "will allow your users to sign up for paid accounts."
1829
- msgstr ""
1830
- "Con el nuevo Campo de Suscripciones en Profile Builder, tus formularios de "
1831
- "registro le permitirán a tus usuario registrarse en cuentas de paga."
1832
-
1833
- #: profile-builder-2.0/admin/pms-cross-promotion.php:40
1834
- msgid "Paid & Free Subscriptions"
1835
- msgstr "Suscripciones Gratuitas y de Pago."
1836
-
1837
- #: profile-builder-2.0/admin/pms-cross-promotion.php:41
1838
- msgid "Restrict Content"
1839
- msgstr "Contenido restringido"
1840
-
1841
- #: profile-builder-2.0/admin/pms-cross-promotion.php:42
1842
- msgid "Member Management"
1843
- msgstr "Gestion de Miembros"
1844
-
1845
- #: profile-builder-2.0/admin/pms-cross-promotion.php:43
1846
- msgid "Email Templates"
1847
- msgstr "Plantillas de Correo Electronico"
1848
-
1849
- #: profile-builder-2.0/admin/pms-cross-promotion.php:44
1850
- msgid "Account Management"
1851
- msgstr "Administrar cuenta"
1852
-
1853
- #: profile-builder-2.0/admin/pms-cross-promotion.php:45
1854
- msgid "Subscription Management"
1855
- msgstr "Administrar suscripción"
1856
-
1857
- #: profile-builder-2.0/admin/pms-cross-promotion.php:46
1858
- msgid "Payment Management"
1859
- msgstr "Administrar pago"
1860
-
1861
- #: profile-builder-2.0/admin/pms-cross-promotion.php:83
1862
- msgid "Plugin is Active"
1863
- msgstr "El plugin está activado"
1864
-
1865
- #: profile-builder-2.0/admin/pms-cross-promotion.php:84
1866
- msgid "Plugin has been activated"
1867
- msgstr "El plugin ha sido activado"
1868
-
1869
- #: profile-builder-2.0/admin/pms-cross-promotion.php:91
1870
- msgid "Plugin has been deactivated."
1871
- msgstr "El plugin ha sido desactivado"
1872
-
1873
- #: profile-builder-2.0/admin/pms-cross-promotion.php:104
1874
- msgid ""
1875
- "Accept user payments, create subscription plans and restrict content on your "
1876
- "website."
1877
- msgstr ""
1878
- "Aceptar pagos de los usuarios , crear planes de suscripción y restringir el "
1879
- "contenido de su página web."
1880
-
1881
- #: profile-builder-2.0/admin/pms-cross-promotion.php:155
1882
- msgid "Step by Step Quick Setup"
1883
- msgstr "Configuración Rapida Paso a Paso"
1884
-
1885
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
1886
- msgid ""
1887
- "To activate your user, please click the following link:<br><br>%s%s%s<br><br>"
1888
- "After you activate it you will receive yet *another email* with your login."
1889
- msgstr ""
1890
- "Para activar tu usuario, por favor haz click en el siguiente link: :<br><br>"
1891
- "%s%s%s<br><br> Después de activarlo, recibirás *otro e-mail* con tu login."
1892
-
1893
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
1894
- msgid "After Login"
1895
- msgstr "Después de Iniciar sesión"
1896
-
1897
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
1898
- msgid "After Logout"
1899
- msgstr "Después de Terminar sesión"
1900
-
1901
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
1902
- msgid "After Registration"
1903
- msgstr "Después de Registrarse"
1904
-
1905
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
1906
- msgid "User ID"
1907
- msgstr "Identidicación del usuario"
1908
-
1909
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
1910
- msgid "User ID or Username"
1911
- msgstr "ID o Nombre de Usuario"
1912
-
1913
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
1914
- msgid "Please select and enter the ID or username of your user."
1915
- msgstr "Por favor elije e ingrese el ID o el nombre de usuario de su cuenta."
1916
-
1917
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
1918
- msgid "Select a user role."
1919
- msgstr "Selecciona un rol de usuario."
1920
-
1921
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
1922
- msgid "Login ( wp_login.php )"
1923
- msgstr "Iniciar sesión ( wp_login.php )"
1924
-
1925
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
1926
- msgid "Register ( wp-login.php?action=register )"
1927
- msgstr "Registrarse ( wp-login.php?action=register )"
1928
-
1929
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
1930
- msgid "Lost Password ( wp-login.php?action=lostpassword )"
1931
- msgstr "Perdí mi contraseña ( wp-login.php?action=lostpassword )"
1932
-
1933
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
1934
- msgid "Author Archive ( http://sitename.com/author/admin )"
1935
- msgstr "Archivos del autor ( http://sitename.com/author/admin )"
1936
-
1937
- #: profile-builder-2.0/admin/manage-fields.php:282
1938
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1939
- msgid "Afghanistan"
1940
- msgstr "Afghanistan"
1941
-
1942
- #: profile-builder-2.0/admin/manage-fields.php:283
1943
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1944
- msgid "Aland Islands"
1945
- msgstr "Aland Islands"
1946
-
1947
- #: profile-builder-2.0/admin/manage-fields.php:284
1948
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1949
- msgid "Albania"
1950
- msgstr "Albania"
1951
-
1952
- #: profile-builder-2.0/admin/manage-fields.php:285
1953
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1954
- msgid "Algeria"
1955
- msgstr "Algeria"
1956
-
1957
- #: profile-builder-2.0/admin/manage-fields.php:286
1958
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1959
- msgid "American Samoa"
1960
- msgstr "American Samoa"
1961
-
1962
- #: profile-builder-2.0/admin/manage-fields.php:287
1963
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1964
- msgid "Andorra"
1965
- msgstr "Andorra"
1966
-
1967
- #: profile-builder-2.0/admin/manage-fields.php:288
1968
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1969
- msgid "Angola"
1970
- msgstr "Angola"
1971
-
1972
- #: profile-builder-2.0/admin/manage-fields.php:289
1973
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1974
- msgid "Anguilla"
1975
- msgstr "Anguilla"
1976
-
1977
- #: profile-builder-2.0/admin/manage-fields.php:290
1978
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1979
- msgid "Antarctica"
1980
- msgstr "Antarctica"
1981
-
1982
- #: profile-builder-2.0/admin/manage-fields.php:291
1983
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1984
- msgid "Antigua and Barbuda"
1985
- msgstr "Antigua and Barbuda"
1986
-
1987
- #: profile-builder-2.0/admin/manage-fields.php:292
1988
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1989
- msgid "Argentina"
1990
- msgstr "Argentina"
1991
-
1992
- #: profile-builder-2.0/admin/manage-fields.php:293
1993
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1994
- msgid "Armenia"
1995
- msgstr "Armenia"
1996
-
1997
- #: profile-builder-2.0/admin/manage-fields.php:294
1998
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1999
- msgid "Aruba"
2000
- msgstr "Aruba"
2001
-
2002
- #: profile-builder-2.0/admin/manage-fields.php:295
2003
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2004
- msgid "Australia"
2005
- msgstr "Australia"
2006
-
2007
- #: profile-builder-2.0/admin/manage-fields.php:296
2008
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2009
- msgid "Austria"
2010
- msgstr "Austria"
2011
-
2012
- #: profile-builder-2.0/admin/manage-fields.php:297
2013
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2014
- msgid "Azerbaijan"
2015
- msgstr "Azerbaijan"
2016
-
2017
- #: profile-builder-2.0/admin/manage-fields.php:298
2018
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2019
- msgid "Bahamas"
2020
- msgstr "Bahamas"
2021
-
2022
- #: profile-builder-2.0/admin/manage-fields.php:299
2023
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2024
- msgid "Bahrain"
2025
- msgstr "Bahrain"
2026
-
2027
- #: profile-builder-2.0/admin/manage-fields.php:300
2028
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2029
- msgid "Bangladesh"
2030
- msgstr "Bangladesh"
2031
-
2032
- #: profile-builder-2.0/admin/manage-fields.php:301
2033
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2034
- msgid "Barbados"
2035
- msgstr "Barbados"
2036
-
2037
- #: profile-builder-2.0/admin/manage-fields.php:302
2038
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2039
- msgid "Belarus"
2040
- msgstr "Belarus"
2041
-
2042
- #: profile-builder-2.0/admin/manage-fields.php:303
2043
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2044
- msgid "Belgium"
2045
- msgstr "Belgium"
2046
-
2047
- #: profile-builder-2.0/admin/manage-fields.php:304
2048
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2049
- msgid "Belize"
2050
- msgstr "Belize"
2051
-
2052
- #: profile-builder-2.0/admin/manage-fields.php:305
2053
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2054
- msgid "Benin"
2055
- msgstr "Benin"
2056
-
2057
- #: profile-builder-2.0/admin/manage-fields.php:306
2058
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2059
- msgid "Bermuda"
2060
- msgstr "Bermuda"
2061
-
2062
- #: profile-builder-2.0/admin/manage-fields.php:307
2063
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2064
- msgid "Bhutan"
2065
- msgstr "Bhutan"
2066
-
2067
- #: profile-builder-2.0/admin/manage-fields.php:308
2068
- msgid "Bolivia"
2069
- msgstr "Bolivia"
2070
-
2071
- #: profile-builder-2.0/admin/manage-fields.php:309
2072
- msgid "Bonaire, Saint Eustatius and Saba"
2073
- msgstr "Bonaire, Saint Eustatius and Saba"
2074
-
2075
- #: profile-builder-2.0/admin/manage-fields.php:310
2076
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2077
- msgid "Bosnia and Herzegovina"
2078
- msgstr "Bosnia and Herzegovina"
2079
-
2080
- #: profile-builder-2.0/admin/manage-fields.php:311
2081
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2082
- msgid "Botswana"
2083
- msgstr "Botswana"
2084
-
2085
- #: profile-builder-2.0/admin/manage-fields.php:312
2086
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2087
- msgid "Bouvet Island"
2088
- msgstr "Bouvet Island"
2089
-
2090
- #: profile-builder-2.0/admin/manage-fields.php:313
2091
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2092
- msgid "Brazil"
2093
- msgstr "Brazil"
2094
-
2095
- #: profile-builder-2.0/admin/manage-fields.php:314
2096
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2097
- msgid "British Indian Ocean Territory"
2098
- msgstr "British Indian Ocean Territory"
2099
-
2100
- #: profile-builder-2.0/admin/manage-fields.php:315
2101
- msgid "British Virgin Islands"
2102
- msgstr "British Virgin Islands"
2103
-
2104
- #: profile-builder-2.0/admin/manage-fields.php:316
2105
- msgid "Brunei"
2106
- msgstr "Brunei"
2107
-
2108
- #: profile-builder-2.0/admin/manage-fields.php:317
2109
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2110
- msgid "Bulgaria"
2111
- msgstr "Bulgaria"
2112
-
2113
- #: profile-builder-2.0/admin/manage-fields.php:318
2114
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2115
- msgid "Burkina Faso"
2116
- msgstr "Burkina Faso"
2117
-
2118
- #: profile-builder-2.0/admin/manage-fields.php:319
2119
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2120
- msgid "Burundi"
2121
- msgstr "Burundi"
2122
-
2123
- #: profile-builder-2.0/admin/manage-fields.php:320
2124
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2125
- msgid "Cambodia"
2126
- msgstr "Cambodia"
2127
-
2128
- #: profile-builder-2.0/admin/manage-fields.php:321
2129
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2130
- msgid "Cameroon"
2131
- msgstr "Cameroon"
2132
-
2133
- #: profile-builder-2.0/admin/manage-fields.php:322
2134
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2135
- msgid "Canada"
2136
- msgstr "Canada"
2137
-
2138
- #: profile-builder-2.0/admin/manage-fields.php:323
2139
- msgid "Cape Verde"
2140
- msgstr "Cape Verde"
2141
-
2142
- #: profile-builder-2.0/admin/manage-fields.php:324
2143
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2144
- msgid "Cayman Islands"
2145
- msgstr "Cayman Islands"
2146
-
2147
- #: profile-builder-2.0/admin/manage-fields.php:325
2148
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2149
- msgid "Central African Republic"
2150
- msgstr "Central African Republic"
2151
-
2152
- #: profile-builder-2.0/admin/manage-fields.php:326
2153
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2154
- msgid "Chad"
2155
- msgstr "Chad"
2156
-
2157
- #: profile-builder-2.0/admin/manage-fields.php:327
2158
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2159
- msgid "Chile"
2160
- msgstr "Chile"
2161
-
2162
- #: profile-builder-2.0/admin/manage-fields.php:328
2163
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2164
- msgid "China"
2165
- msgstr "China"
2166
-
2167
- #: profile-builder-2.0/admin/manage-fields.php:329
2168
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2169
- msgid "Christmas Island"
2170
- msgstr "Christmas Island"
2171
-
2172
- #: profile-builder-2.0/admin/manage-fields.php:330
2173
- msgid "Cocos Islands"
2174
- msgstr "Cocos Islands"
2175
-
2176
- #: profile-builder-2.0/admin/manage-fields.php:331
2177
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2178
- msgid "Colombia"
2179
- msgstr "Colombia"
2180
-
2181
- #: profile-builder-2.0/admin/manage-fields.php:332
2182
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2183
- msgid "Comoros"
2184
- msgstr "Comoros"
2185
-
2186
- #: profile-builder-2.0/admin/manage-fields.php:333
2187
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2188
- msgid "Cook Islands"
2189
- msgstr "Cook Islands"
2190
-
2191
- #: profile-builder-2.0/admin/manage-fields.php:334
2192
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2193
- msgid "Costa Rica"
2194
- msgstr "Costa Rica"
2195
-
2196
- #: profile-builder-2.0/admin/manage-fields.php:335
2197
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2198
- msgid "Croatia"
2199
- msgstr "Croatia"
2200
-
2201
- #: profile-builder-2.0/admin/manage-fields.php:336
2202
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2203
- msgid "Cuba"
2204
- msgstr "Cuba"
2205
-
2206
- #: profile-builder-2.0/admin/manage-fields.php:337
2207
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2208
- msgid "Curacao"
2209
- msgstr "Curacao"
2210
-
2211
- #: profile-builder-2.0/admin/manage-fields.php:338
2212
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2213
- msgid "Cyprus"
2214
- msgstr "Cyprus"
2215
-
2216
- #: profile-builder-2.0/admin/manage-fields.php:339
2217
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2218
- msgid "Czech Republic"
2219
- msgstr "Czech Republic"
2220
-
2221
- #: profile-builder-2.0/admin/manage-fields.php:340
2222
- msgid "Democratic Republic of the Congo"
2223
- msgstr "Democratic Republic of the Congo"
2224
-
2225
- #: profile-builder-2.0/admin/manage-fields.php:341
2226
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2227
- msgid "Denmark"
2228
- msgstr "Denmark"
2229
-
2230
- #: profile-builder-2.0/admin/manage-fields.php:342
2231
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2232
- msgid "Djibouti"
2233
- msgstr "Djibouti"
2234
-
2235
- #: profile-builder-2.0/admin/manage-fields.php:343
2236
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2237
- msgid "Dominica"
2238
- msgstr "Dominica"
2239
-
2240
- #: profile-builder-2.0/admin/manage-fields.php:344
2241
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2242
- msgid "Dominican Republic"
2243
- msgstr "Dominican Republic"
2244
-
2245
- #: profile-builder-2.0/admin/manage-fields.php:345
2246
- msgid "East Timor"
2247
- msgstr "East Timor"
2248
-
2249
- #: profile-builder-2.0/admin/manage-fields.php:346
2250
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2251
- msgid "Ecuador"
2252
- msgstr "Ecuador"
2253
-
2254
- #: profile-builder-2.0/admin/manage-fields.php:347
2255
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2256
- msgid "Egypt"
2257
- msgstr "Egypt"
2258
-
2259
- #: profile-builder-2.0/admin/manage-fields.php:348
2260
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2261
- msgid "El Salvador"
2262
- msgstr "El Salvador"
2263
-
2264
- #: profile-builder-2.0/admin/manage-fields.php:349
2265
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2266
- msgid "Equatorial Guinea"
2267
- msgstr "Equatorial Guinea"
2268
-
2269
- #: profile-builder-2.0/admin/manage-fields.php:350
2270
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2271
- msgid "Eritrea"
2272
- msgstr "Eritrea"
2273
-
2274
- #: profile-builder-2.0/admin/manage-fields.php:351
2275
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2276
- msgid "Estonia"
2277
- msgstr "Estonia"
2278
-
2279
- #: profile-builder-2.0/admin/manage-fields.php:352
2280
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2281
- msgid "Ethiopia"
2282
- msgstr "Ethiopia"
2283
-
2284
- #: profile-builder-2.0/admin/manage-fields.php:353
2285
- msgid "Falkland Islands"
2286
- msgstr "Falkland Islands"
2287
-
2288
- #: profile-builder-2.0/admin/manage-fields.php:354
2289
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2290
- msgid "Faroe Islands"
2291
- msgstr "Faroe Islands"
2292
-
2293
- #: profile-builder-2.0/admin/manage-fields.php:355
2294
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2295
- msgid "Fiji"
2296
- msgstr "Fiji"
2297
-
2298
- #: profile-builder-2.0/admin/manage-fields.php:356
2299
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2300
- msgid "Finland"
2301
- msgstr "Finland"
2302
-
2303
- #: profile-builder-2.0/admin/manage-fields.php:357
2304
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2305
- msgid "France"
2306
- msgstr "France"
2307
-
2308
- #: profile-builder-2.0/admin/manage-fields.php:358
2309
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2310
- msgid "French Guiana"
2311
- msgstr "French Guiana"
2312
-
2313
- #: profile-builder-2.0/admin/manage-fields.php:359
2314
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2315
- msgid "French Polynesia"
2316
- msgstr "French Polynesia"
2317
-
2318
- #: profile-builder-2.0/admin/manage-fields.php:360
2319
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2320
- msgid "French Southern Territories"
2321
- msgstr "French Southern Territories"
2322
-
2323
- #: profile-builder-2.0/admin/manage-fields.php:361
2324
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2325
- msgid "Gabon"
2326
- msgstr "Gabon"
2327
-
2328
- #: profile-builder-2.0/admin/manage-fields.php:362
2329
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2330
- msgid "Gambia"
2331
- msgstr "Gambia"
2332
-
2333
- #: profile-builder-2.0/admin/manage-fields.php:363
2334
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2335
- msgid "Georgia"
2336
- msgstr "Georgia"
2337
-
2338
- #: profile-builder-2.0/admin/manage-fields.php:364
2339
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2340
- msgid "Germany"
2341
- msgstr "Germany"
2342
-
2343
- #: profile-builder-2.0/admin/manage-fields.php:365
2344
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2345
- msgid "Ghana"
2346
- msgstr "Ghana"
2347
-
2348
- #: profile-builder-2.0/admin/manage-fields.php:366
2349
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2350
- msgid "Gibraltar"
2351
- msgstr "Gibraltar"
2352
-
2353
- #: profile-builder-2.0/admin/manage-fields.php:367
2354
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2355
- msgid "Greece"
2356
- msgstr "Greece"
2357
-
2358
- #: profile-builder-2.0/admin/manage-fields.php:368
2359
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2360
- msgid "Greenland"
2361
- msgstr "Greenland"
2362
-
2363
- #: profile-builder-2.0/admin/manage-fields.php:369
2364
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2365
- msgid "Grenada"
2366
- msgstr "Grenada"
2367
-
2368
- #: profile-builder-2.0/admin/manage-fields.php:370
2369
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2370
- msgid "Guadeloupe"
2371
- msgstr "Guadeloupe"
2372
-
2373
- #: profile-builder-2.0/admin/manage-fields.php:371
2374
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2375
- msgid "Guam"
2376
- msgstr "Guam"
2377
-
2378
- #: profile-builder-2.0/admin/manage-fields.php:372
2379
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2380
- msgid "Guatemala"
2381
- msgstr "Guatemala"
2382
-
2383
- #: profile-builder-2.0/admin/manage-fields.php:373
2384
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2385
- msgid "Guernsey"
2386
- msgstr "Guernsey"
2387
-
2388
- #: profile-builder-2.0/admin/manage-fields.php:374
2389
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2390
- msgid "Guinea"
2391
- msgstr "Guinea"
2392
-
2393
- #: profile-builder-2.0/admin/manage-fields.php:375
2394
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2395
- msgid "Guinea-Bissau"
2396
- msgstr "Guinea-Bissau"
2397
-
2398
- #: profile-builder-2.0/admin/manage-fields.php:376
2399
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2400
- msgid "Guyana"
2401
- msgstr "Guyana"
2402
-
2403
- #: profile-builder-2.0/admin/manage-fields.php:377
2404
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2405
- msgid "Haiti"
2406
- msgstr "Haiti"
2407
-
2408
- #: profile-builder-2.0/admin/manage-fields.php:378
2409
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2410
- msgid "Heard Island and McDonald Islands"
2411
- msgstr "Heard Island and McDonald Islands"
2412
-
2413
- #: profile-builder-2.0/admin/manage-fields.php:379
2414
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2415
- msgid "Honduras"
2416
- msgstr "Honduras"
2417
-
2418
- #: profile-builder-2.0/admin/manage-fields.php:380
2419
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2420
- msgid "Hong Kong"
2421
- msgstr "Hong Kong"
2422
-
2423
- #: profile-builder-2.0/admin/manage-fields.php:381
2424
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2425
- msgid "Hungary"
2426
- msgstr "Hungary"
2427
-
2428
- #: profile-builder-2.0/admin/manage-fields.php:382
2429
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2430
- msgid "Iceland"
2431
- msgstr "Iceland"
2432
-
2433
- #: profile-builder-2.0/admin/manage-fields.php:383
2434
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2435
- msgid "India"
2436
- msgstr "India"
2437
-
2438
- #: profile-builder-2.0/admin/manage-fields.php:384
2439
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2440
- msgid "Indonesia"
2441
- msgstr "Indonesia"
2442
-
2443
- #: profile-builder-2.0/admin/manage-fields.php:385
2444
- msgid "Iran"
2445
- msgstr "Iran"
2446
-
2447
- #: profile-builder-2.0/admin/manage-fields.php:386
2448
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2449
- msgid "Iraq"
2450
- msgstr "Iraq"
2451
-
2452
- #: profile-builder-2.0/admin/manage-fields.php:387
2453
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2454
- msgid "Ireland"
2455
- msgstr "Ireland"
2456
-
2457
- #: profile-builder-2.0/admin/manage-fields.php:388
2458
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2459
- msgid "Isle of Man"
2460
- msgstr "Isle of Man"
2461
-
2462
- #: profile-builder-2.0/admin/manage-fields.php:389
2463
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2464
- msgid "Israel"
2465
- msgstr "Israel"
2466
-
2467
- #: profile-builder-2.0/admin/manage-fields.php:390
2468
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2469
- msgid "Italy"
2470
- msgstr "Italy"
2471
-
2472
- #: profile-builder-2.0/admin/manage-fields.php:391
2473
- msgid "Ivory Coast"
2474
- msgstr "Ivory Coast"
2475
-
2476
- #: profile-builder-2.0/admin/manage-fields.php:392
2477
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2478
- msgid "Jamaica"
2479
- msgstr "Jamaica"
2480
-
2481
- #: profile-builder-2.0/admin/manage-fields.php:393
2482
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2483
- msgid "Japan"
2484
- msgstr "Japan"
2485
-
2486
- #: profile-builder-2.0/admin/manage-fields.php:394
2487
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2488
- msgid "Jersey"
2489
- msgstr "Jersey"
2490
-
2491
- #: profile-builder-2.0/admin/manage-fields.php:395
2492
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2493
- msgid "Jordan"
2494
- msgstr "Jordan"
2495
-
2496
- #: profile-builder-2.0/admin/manage-fields.php:396
2497
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2498
- msgid "Kazakhstan"
2499
- msgstr "Kazakhstan"
2500
-
2501
- #: profile-builder-2.0/admin/manage-fields.php:397
2502
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2503
- msgid "Kenya"
2504
- msgstr "Kenya"
2505
-
2506
- #: profile-builder-2.0/admin/manage-fields.php:398
2507
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2508
- msgid "Kiribati"
2509
- msgstr "Kiribati"
2510
-
2511
- #: profile-builder-2.0/admin/manage-fields.php:399
2512
- msgid "Kosovo"
2513
- msgstr "Kosovo"
2514
-
2515
- #: profile-builder-2.0/admin/manage-fields.php:400
2516
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2517
- msgid "Kuwait"
2518
- msgstr "Kuwait"
2519
-
2520
- #: profile-builder-2.0/admin/manage-fields.php:401
2521
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2522
- msgid "Kyrgyzstan"
2523
- msgstr "Kyrgyzstan"
2524
-
2525
- #: profile-builder-2.0/admin/manage-fields.php:402
2526
- msgid "Laos"
2527
- msgstr "Laos"
2528
-
2529
- #: profile-builder-2.0/admin/manage-fields.php:403
2530
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2531
- msgid "Latvia"
2532
- msgstr "Latvia"
2533
-
2534
- #: profile-builder-2.0/admin/manage-fields.php:404
2535
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2536
- msgid "Lebanon"
2537
- msgstr "Lebanon"
2538
-
2539
- #: profile-builder-2.0/admin/manage-fields.php:405
2540
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2541
- msgid "Lesotho"
2542
- msgstr "Lesotho"
2543
-
2544
- #: profile-builder-2.0/admin/manage-fields.php:406
2545
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2546
- msgid "Liberia"
2547
- msgstr "Liberia"
2548
-
2549
- #: profile-builder-2.0/admin/manage-fields.php:407
2550
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2551
- msgid "Libya"
2552
- msgstr "Libya"
2553
-
2554
- #: profile-builder-2.0/admin/manage-fields.php:408
2555
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2556
- msgid "Liechtenstein"
2557
- msgstr "Liechtenstein"
2558
-
2559
- #: profile-builder-2.0/admin/manage-fields.php:409
2560
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2561
- msgid "Lithuania"
2562
- msgstr "Lithuania"
2563
-
2564
- #: profile-builder-2.0/admin/manage-fields.php:410
2565
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2566
- msgid "Luxembourg"
2567
- msgstr "Luxembourg"
2568
-
2569
- #: profile-builder-2.0/admin/manage-fields.php:411
2570
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2571
- msgid "Macao"
2572
- msgstr "Macao"
2573
-
2574
- #: profile-builder-2.0/admin/manage-fields.php:412
2575
- msgid "Macedonia"
2576
- msgstr "Macedonia"
2577
-
2578
- #: profile-builder-2.0/admin/manage-fields.php:413
2579
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2580
- msgid "Madagascar"
2581
- msgstr "Madagascar"
2582
-
2583
- #: profile-builder-2.0/admin/manage-fields.php:414
2584
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2585
- msgid "Malawi"
2586
- msgstr "Malawi"
2587
-
2588
- #: profile-builder-2.0/admin/manage-fields.php:415
2589
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2590
- msgid "Malaysia"
2591
- msgstr "Malaysia"
2592
-
2593
- #: profile-builder-2.0/admin/manage-fields.php:416
2594
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2595
- msgid "Maldives"
2596
- msgstr "Maldives"
2597
-
2598
- #: profile-builder-2.0/admin/manage-fields.php:417
2599
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2600
- msgid "Mali"
2601
- msgstr "Mali"
2602
-
2603
- #: profile-builder-2.0/admin/manage-fields.php:418
2604
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2605
- msgid "Malta"
2606
- msgstr "Malta"
2607
-
2608
- #: profile-builder-2.0/admin/manage-fields.php:419
2609
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2610
- msgid "Marshall Islands"
2611
- msgstr "Marshall Islands"
2612
-
2613
- #: profile-builder-2.0/admin/manage-fields.php:420
2614
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2615
- msgid "Martinique"
2616
- msgstr "Martinique"
2617
-
2618
- #: profile-builder-2.0/admin/manage-fields.php:421
2619
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2620
- msgid "Mauritania"
2621
- msgstr "Mauritania"
2622
-
2623
- #: profile-builder-2.0/admin/manage-fields.php:422
2624
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2625
- msgid "Mauritius"
2626
- msgstr "Mauritius"
2627
-
2628
- #: profile-builder-2.0/admin/manage-fields.php:423
2629
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2630
- msgid "Mayotte"
2631
- msgstr "Mayotte"
2632
-
2633
- #: profile-builder-2.0/admin/manage-fields.php:424
2634
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2635
- msgid "Mexico"
2636
- msgstr "Mexico"
2637
-
2638
- #: profile-builder-2.0/admin/manage-fields.php:425
2639
- msgid "Micronesia"
2640
- msgstr "Micronesia"
2641
-
2642
- #: profile-builder-2.0/admin/manage-fields.php:426
2643
- msgid "Moldova"
2644
- msgstr "Moldova"
2645
-
2646
- #: profile-builder-2.0/admin/manage-fields.php:427
2647
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2648
- msgid "Monaco"
2649
- msgstr "Monaco"
2650
-
2651
- #: profile-builder-2.0/admin/manage-fields.php:428
2652
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2653
- msgid "Mongolia"
2654
- msgstr "Mongolia"
2655
-
2656
- #: profile-builder-2.0/admin/manage-fields.php:429
2657
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2658
- msgid "Montenegro"
2659
- msgstr "Montenegro"
2660
-
2661
- #: profile-builder-2.0/admin/manage-fields.php:430
2662
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2663
- msgid "Montserrat"
2664
- msgstr "Montserrat"
2665
-
2666
- #: profile-builder-2.0/admin/manage-fields.php:431
2667
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2668
- msgid "Morocco"
2669
- msgstr "Morocco"
2670
-
2671
- #: profile-builder-2.0/admin/manage-fields.php:432
2672
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2673
- msgid "Mozambique"
2674
- msgstr "Mozambique"
2675
-
2676
- #: profile-builder-2.0/admin/manage-fields.php:433
2677
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2678
- msgid "Myanmar"
2679
- msgstr "Myanmar"
2680
-
2681
- #: profile-builder-2.0/admin/manage-fields.php:434
2682
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2683
- msgid "Namibia"
2684
- msgstr "Namibia"
2685
-
2686
- #: profile-builder-2.0/admin/manage-fields.php:435
2687
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2688
- msgid "Nauru"
2689
- msgstr "Nauru"
2690
-
2691
- #: profile-builder-2.0/admin/manage-fields.php:436
2692
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2693
- msgid "Nepal"
2694
- msgstr "Nepal"
2695
-
2696
- #: profile-builder-2.0/admin/manage-fields.php:437
2697
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2698
- msgid "Netherlands"
2699
- msgstr "Netherlands"
2700
-
2701
- #: profile-builder-2.0/admin/manage-fields.php:438
2702
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2703
- msgid "New Caledonia"
2704
- msgstr "New Caledonia"
2705
-
2706
- #: profile-builder-2.0/admin/manage-fields.php:439
2707
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2708
- msgid "New Zealand"
2709
- msgstr "New Zealand"
2710
-
2711
- #: profile-builder-2.0/admin/manage-fields.php:440
2712
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2713
- msgid "Nicaragua"
2714
- msgstr "Nicaragua"
2715
-
2716
- #: profile-builder-2.0/admin/manage-fields.php:441
2717
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2718
- msgid "Niger"
2719
- msgstr "Niger"
2720
-
2721
- #: profile-builder-2.0/admin/manage-fields.php:442
2722
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2723
- msgid "Nigeria"
2724
- msgstr "Nigeria"
2725
-
2726
- #: profile-builder-2.0/admin/manage-fields.php:443
2727
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2728
- msgid "Niue"
2729
- msgstr "Niue"
2730
-
2731
- #: profile-builder-2.0/admin/manage-fields.php:444
2732
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2733
- msgid "Norfolk Island"
2734
- msgstr "Norfolk Island"
2735
-
2736
- #: profile-builder-2.0/admin/manage-fields.php:445
2737
- msgid "North Korea"
2738
- msgstr "North Korea"
2739
-
2740
- #: profile-builder-2.0/admin/manage-fields.php:446
2741
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2742
- msgid "Northern Mariana Islands"
2743
- msgstr "Northern Mariana Islands"
2744
-
2745
- #: profile-builder-2.0/admin/manage-fields.php:447
2746
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2747
- msgid "Norway"
2748
- msgstr "Norway"
2749
-
2750
- #: profile-builder-2.0/admin/manage-fields.php:448
2751
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2752
- msgid "Oman"
2753
- msgstr "Oman"
2754
-
2755
- #: profile-builder-2.0/admin/manage-fields.php:449
2756
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2757
- msgid "Pakistan"
2758
- msgstr "Pakistan"
2759
-
2760
- #: profile-builder-2.0/admin/manage-fields.php:450
2761
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2762
- msgid "Palau"
2763
- msgstr "Palau"
2764
-
2765
- #: profile-builder-2.0/admin/manage-fields.php:451
2766
- msgid "Palestinian Territory"
2767
- msgstr "Palestinian Territory"
2768
-
2769
- #: profile-builder-2.0/admin/manage-fields.php:452
2770
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2771
- msgid "Panama"
2772
- msgstr "Panama"
2773
-
2774
- #: profile-builder-2.0/admin/manage-fields.php:453
2775
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2776
- msgid "Papua New Guinea"
2777
- msgstr "Papua New Guinea"
2778
-
2779
- #: profile-builder-2.0/admin/manage-fields.php:454
2780
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2781
- msgid "Paraguay"
2782
- msgstr "Paraguay"
2783
-
2784
- #: profile-builder-2.0/admin/manage-fields.php:455
2785
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2786
- msgid "Peru"
2787
- msgstr "Peru"
2788
-
2789
- #: profile-builder-2.0/admin/manage-fields.php:456
2790
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2791
- msgid "Philippines"
2792
- msgstr "Philippines"
2793
-
2794
- #: profile-builder-2.0/admin/manage-fields.php:457
2795
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2796
- msgid "Pitcairn"
2797
- msgstr "Pitcairn"
2798
-
2799
- #: profile-builder-2.0/admin/manage-fields.php:458
2800
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2801
- msgid "Poland"
2802
- msgstr "Poland"
2803
-
2804
- #: profile-builder-2.0/admin/manage-fields.php:459
2805
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2806
- msgid "Portugal"
2807
- msgstr "Portugal"
2808
-
2809
- #: profile-builder-2.0/admin/manage-fields.php:460
2810
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2811
- msgid "Puerto Rico"
2812
- msgstr "Puerto Rico"
2813
-
2814
- #: profile-builder-2.0/admin/manage-fields.php:461
2815
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2816
- msgid "Qatar"
2817
- msgstr "Qatar"
2818
-
2819
- #: profile-builder-2.0/admin/manage-fields.php:462
2820
- msgid "Republic of the Congo"
2821
- msgstr "Republic of the Congo"
2822
-
2823
- #: profile-builder-2.0/admin/manage-fields.php:463
2824
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2825
- msgid "Reunion"
2826
- msgstr "Reunion"
2827
-
2828
- #: profile-builder-2.0/admin/manage-fields.php:464
2829
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2830
- msgid "Romania"
2831
- msgstr "Romania"
2832
-
2833
- #: profile-builder-2.0/admin/manage-fields.php:465
2834
- msgid "Russia"
2835
- msgstr "Russia"
2836
-
2837
- #: profile-builder-2.0/admin/manage-fields.php:466
2838
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2839
- msgid "Rwanda"
2840
- msgstr "Rwanda"
2841
-
2842
- #: profile-builder-2.0/admin/manage-fields.php:467
2843
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2844
- msgid "Saint Barthelemy"
2845
- msgstr "Saint Barthelemy"
2846
-
2847
- #: profile-builder-2.0/admin/manage-fields.php:468
2848
- msgid "Saint Helena"
2849
- msgstr "Saint Helena"
2850
-
2851
- #: profile-builder-2.0/admin/manage-fields.php:469
2852
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2853
- msgid "Saint Kitts and Nevis"
2854
- msgstr "Saint Kitts and Nevis"
2855
-
2856
- #: profile-builder-2.0/admin/manage-fields.php:470
2857
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2858
- msgid "Saint Lucia"
2859
- msgstr "Saint Lucia"
2860
-
2861
- #: profile-builder-2.0/admin/manage-fields.php:471
2862
- msgid "Saint Martin"
2863
- msgstr "Saint Martin"
2864
-
2865
- #: profile-builder-2.0/admin/manage-fields.php:472
2866
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2867
- msgid "Saint Pierre and Miquelon"
2868
- msgstr "Saint Pierre and Miquelon"
2869
-
2870
- #: profile-builder-2.0/admin/manage-fields.php:473
2871
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2872
- msgid "Saint Vincent and the Grenadines"
2873
- msgstr "Saint Vincent and the Grenadines"
2874
-
2875
- #: profile-builder-2.0/admin/manage-fields.php:474
2876
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2877
- msgid "Samoa"
2878
- msgstr "Samoa"
2879
-
2880
- #: profile-builder-2.0/admin/manage-fields.php:475
2881
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2882
- msgid "San Marino"
2883
- msgstr "San Marino"
2884
-
2885
- #: profile-builder-2.0/admin/manage-fields.php:476
2886
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2887
- msgid "Sao Tome and Principe"
2888
- msgstr "Sao Tome and Principe"
2889
-
2890
- #: profile-builder-2.0/admin/manage-fields.php:477
2891
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2892
- msgid "Saudi Arabia"
2893
- msgstr "Saudi Arabia"
2894
-
2895
- #: profile-builder-2.0/admin/manage-fields.php:478
2896
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2897
- msgid "Senegal"
2898
- msgstr "Senegal"
2899
-
2900
- #: profile-builder-2.0/admin/manage-fields.php:479
2901
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2902
- msgid "Serbia"
2903
- msgstr "Serbia"
2904
-
2905
- #: profile-builder-2.0/admin/manage-fields.php:480
2906
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2907
- msgid "Seychelles"
2908
- msgstr "Seychelles"
2909
-
2910
- #: profile-builder-2.0/admin/manage-fields.php:481
2911
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2912
- msgid "Sierra Leone"
2913
- msgstr "Sierra Leone"
2914
-
2915
- #: profile-builder-2.0/admin/manage-fields.php:482
2916
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2917
- msgid "Singapore"
2918
- msgstr "Singapore"
2919
-
2920
- #: profile-builder-2.0/admin/manage-fields.php:483
2921
- msgid "Sint Maarten"
2922
- msgstr "Sint Maarten"
2923
-
2924
- #: profile-builder-2.0/admin/manage-fields.php:484
2925
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2926
- msgid "Slovakia"
2927
- msgstr "Slovakia"
2928
-
2929
- #: profile-builder-2.0/admin/manage-fields.php:485
2930
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2931
- msgid "Slovenia"
2932
- msgstr "Slovenia"
2933
-
2934
- #: profile-builder-2.0/admin/manage-fields.php:486
2935
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2936
- msgid "Solomon Islands"
2937
- msgstr "Solomon Islands"
2938
-
2939
- #: profile-builder-2.0/admin/manage-fields.php:487
2940
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2941
- msgid "Somalia"
2942
- msgstr "Somalia"
2943
-
2944
- #: profile-builder-2.0/admin/manage-fields.php:488
2945
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2946
- msgid "South Africa"
2947
- msgstr "South Africa"
2948
-
2949
- #: profile-builder-2.0/admin/manage-fields.php:489
2950
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2951
- msgid "South Georgia and the South Sandwich Islands"
2952
- msgstr "South Georgia and the South Sandwich Islands"
2953
-
2954
- #: profile-builder-2.0/admin/manage-fields.php:490
2955
- msgid "South Korea"
2956
- msgstr "South Korea"
2957
-
2958
- #: profile-builder-2.0/admin/manage-fields.php:491
2959
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2960
- msgid "South Sudan"
2961
- msgstr "South Sudan"
2962
-
2963
- #: profile-builder-2.0/admin/manage-fields.php:492
2964
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2965
- msgid "Spain"
2966
- msgstr "Spain"
2967
-
2968
- #: profile-builder-2.0/admin/manage-fields.php:493
2969
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2970
- msgid "Sri Lanka"
2971
- msgstr "Sri Lanka"
2972
-
2973
- #: profile-builder-2.0/admin/manage-fields.php:494
2974
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2975
- msgid "Sudan"
2976
- msgstr "Sudan"
2977
-
2978
- #: profile-builder-2.0/admin/manage-fields.php:495
2979
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2980
- msgid "Suriname"
2981
- msgstr "Suriname"
2982
-
2983
- #: profile-builder-2.0/admin/manage-fields.php:496
2984
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2985
- msgid "Svalbard and Jan Mayen"
2986
- msgstr "Svalbard and Jan Mayen"
2987
-
2988
- #: profile-builder-2.0/admin/manage-fields.php:497
2989
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2990
- msgid "Swaziland"
2991
- msgstr "Swaziland"
2992
-
2993
- #: profile-builder-2.0/admin/manage-fields.php:498
2994
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2995
- msgid "Sweden"
2996
- msgstr "Sweden"
2997
-
2998
- #: profile-builder-2.0/admin/manage-fields.php:499
2999
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3000
- msgid "Switzerland"
3001
- msgstr "Switzerland"
3002
-
3003
- #: profile-builder-2.0/admin/manage-fields.php:500
3004
- msgid "Syria"
3005
- msgstr "Syria"
3006
-
3007
- #: profile-builder-2.0/admin/manage-fields.php:501
3008
- msgid "Taiwan"
3009
- msgstr "Taiwan"
3010
-
3011
- #: profile-builder-2.0/admin/manage-fields.php:502
3012
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3013
- msgid "Tajikistan"
3014
- msgstr "Tajikistan"
3015
-
3016
- #: profile-builder-2.0/admin/manage-fields.php:503
3017
- msgid "Tanzania"
3018
- msgstr "Tanzania"
3019
-
3020
- #: profile-builder-2.0/admin/manage-fields.php:504
3021
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3022
- msgid "Thailand"
3023
- msgstr "Thailand"
3024
-
3025
- #: profile-builder-2.0/admin/manage-fields.php:505
3026
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3027
- msgid "Togo"
3028
- msgstr "Togo"
3029
-
3030
- #: profile-builder-2.0/admin/manage-fields.php:506
3031
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3032
- msgid "Tokelau"
3033
- msgstr "Tokelau"
3034
-
3035
- #: profile-builder-2.0/admin/manage-fields.php:507
3036
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3037
- msgid "Tonga"
3038
- msgstr "Tonga"
3039
-
3040
- #: profile-builder-2.0/admin/manage-fields.php:508
3041
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3042
- msgid "Trinidad and Tobago"
3043
- msgstr "Trinidad and Tobago"
3044
-
3045
- #: profile-builder-2.0/admin/manage-fields.php:509
3046
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3047
- msgid "Tunisia"
3048
- msgstr "Tunisia"
3049
-
3050
- #: profile-builder-2.0/admin/manage-fields.php:510
3051
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3052
- msgid "Turkey"
3053
- msgstr "Turkey"
3054
-
3055
- #: profile-builder-2.0/admin/manage-fields.php:511
3056
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3057
- msgid "Turkmenistan"
3058
- msgstr "Turkmenistan"
3059
-
3060
- #: profile-builder-2.0/admin/manage-fields.php:512
3061
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3062
- msgid "Turks and Caicos Islands"
3063
- msgstr "Turks and Caicos Islands"
3064
-
3065
- #: profile-builder-2.0/admin/manage-fields.php:513
3066
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3067
- msgid "Tuvalu"
3068
- msgstr "Tuvalu"
3069
-
3070
- #: profile-builder-2.0/admin/manage-fields.php:514
3071
- msgid "U.S. Virgin Islands"
3072
- msgstr "U.S. Virgin Islands"
3073
-
3074
- #: profile-builder-2.0/admin/manage-fields.php:515
3075
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3076
- msgid "Uganda"
3077
- msgstr "Uganda"
3078
-
3079
- #: profile-builder-2.0/admin/manage-fields.php:516
3080
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3081
- msgid "Ukraine"
3082
- msgstr "Ukraine"
3083
-
3084
- #: profile-builder-2.0/admin/manage-fields.php:517
3085
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3086
- msgid "United Arab Emirates"
3087
- msgstr "United Arab Emirates"
3088
-
3089
- #: profile-builder-2.0/admin/manage-fields.php:518
3090
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3091
- msgid "United Kingdom"
3092
- msgstr "United Kingdom"
3093
-
3094
- #: profile-builder-2.0/admin/manage-fields.php:519
3095
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3096
- msgid "United States"
3097
- msgstr "United States"
3098
-
3099
- #: profile-builder-2.0/admin/manage-fields.php:520
3100
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3101
- msgid "United States Minor Outlying Islands"
3102
- msgstr "United States Minor Outlying Islands"
3103
-
3104
- #: profile-builder-2.0/admin/manage-fields.php:521
3105
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3106
- msgid "Uruguay"
3107
- msgstr "Uruguay"
3108
-
3109
- #: profile-builder-2.0/admin/manage-fields.php:522
3110
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3111
- msgid "Uzbekistan"
3112
- msgstr "Uzbekistan"
3113
-
3114
- #: profile-builder-2.0/admin/manage-fields.php:523
3115
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3116
- msgid "Vanuatu"
3117
- msgstr "Vanuatu"
3118
-
3119
- #: profile-builder-2.0/admin/manage-fields.php:524
3120
- msgid "Vatican"
3121
- msgstr "Vatican"
3122
-
3123
- #: profile-builder-2.0/admin/manage-fields.php:525
3124
- msgid "Venezuela"
3125
- msgstr "Venezuela"
3126
-
3127
- #: profile-builder-2.0/admin/manage-fields.php:526
3128
- msgid "Vietnam"
3129
- msgstr "Vietnam"
3130
-
3131
- #: profile-builder-2.0/admin/manage-fields.php:527
3132
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3133
- msgid "Wallis and Futuna"
3134
- msgstr "Wallis and Futuna"
3135
-
3136
- #: profile-builder-2.0/admin/manage-fields.php:528
3137
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3138
- msgid "Western Sahara"
3139
- msgstr "Western Sahara"
3140
-
3141
- #: profile-builder-2.0/admin/manage-fields.php:529
3142
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3143
- msgid "Yemen"
3144
- msgstr "Yemen"
3145
-
3146
- #: profile-builder-2.0/admin/manage-fields.php:530
3147
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3148
- msgid "Zambia"
3149
- msgstr "Zambia"
3150
-
3151
- #: profile-builder-2.0/admin/manage-fields.php:531
3152
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
3153
- msgid "Zimbabwe"
3154
- msgstr "Zimbabwe"
3155
-
3156
- #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
3157
- msgid ""
3158
- "Your account has to be confirmed by an administrator before you can log in."
3159
- msgstr ""
3160
- "Tu cuenta debe ser confirmada por un administrador antes de que puedas "
3161
- "loggearte."
3162
-
3163
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
3164
- msgid "Your account has been successfully created!"
3165
- msgstr "¡Tu cuenta ha sido creada exitosamente!"
3166
-
3167
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
3168
- msgid "An error occurred, please try again later."
3169
- msgstr "Ha ocurrido un error, por favor inténtalo de nuevo más tarde."
3170
-
3171
- #: profile-builder-2.0/modules/user-listing/userlisting.php:282
3172
- msgid "More"
3173
- msgstr "Más"
3174
-
3175
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
3176
- msgid "Ascending"
3177
- msgstr "Ascendente"
3178
-
3179
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
3180
- msgid "Descending"
3181
- msgstr "Descendente"
3182
-
3183
- #: profile-builder-2.0/admin/add-ons.php:148
3184
- #: profile-builder-2.0/admin/add-ons.php:248
3185
- #: profile-builder-2.0/admin/pms-cross-promotion.php:134
3186
- #: profile-builder-2.0/admin/pms-cross-promotion.php:213
3187
- msgid "Download Now"
3188
- msgstr "Descargar"
3189
-
3190
- #: profile-builder-2.0/admin/manage-fields.php:82
3191
- msgid "Choose one of the supported field types"
3192
- msgstr "Escoja uno de los campos disponibles"
3193
-
3194
- #: profile-builder-2.0/admin/manage-fields.php:131
3195
- msgid "Site Key"
3196
- msgstr "Sitio clave"
3197
-
3198
- #: profile-builder-2.0/admin/manage-fields.php:132
3199
- msgid "Secret Key"
3200
- msgstr "Clave secreta"
3201
-
3202
- #: profile-builder-2.0/admin/manage-fields.php:1023
3203
- msgid ""
3204
- "You must enter the site key\n"
3205
- msgstr ""
3206
- "Debes ingresar la clave del sitio\n"
3207
-
3208
- #: profile-builder-2.0/admin/add-ons.php:10
3209
- #: profile-builder-2.0/admin/add-ons.php:32
3210
- msgid "Add-Ons"
3211
- msgstr "Add-Ons"
3212
-
3213
- #: profile-builder-2.0/admin/add-ons.php:34
3214
- #: profile-builder-2.0/admin/add-ons.php:129
3215
- #: profile-builder-2.0/admin/add-ons.php:231
3216
- #: profile-builder-2.0/admin/pms-cross-promotion.php:78
3217
- #: profile-builder-2.0/admin/pms-cross-promotion.php:114
3218
- #: profile-builder-2.0/admin/pms-cross-promotion.php:193
3219
- msgid "Activate"
3220
- msgstr "Activar"
3221
-
3222
- #: profile-builder-2.0/admin/add-ons.php:36
3223
- #: profile-builder-2.0/admin/pms-cross-promotion.php:80
3224
- msgid "Downloading and installing..."
3225
- msgstr "Bajando e instalando..."
3226
-
3227
- #: profile-builder-2.0/admin/add-ons.php:37
3228
- #: profile-builder-2.0/admin/pms-cross-promotion.php:81
3229
- msgid "Installation complete"
3230
- msgstr "Instalación completada"
3231
-
3232
- #: profile-builder-2.0/admin/add-ons.php:39
3233
- msgid "Add-On is Active"
3234
- msgstr "El Add-Ons está activado"
3235
-
3236
- #: profile-builder-2.0/admin/add-ons.php:40
3237
- msgid "Add-On has been activated"
3238
- msgstr "El Add-On ha sido activado"
3239
-
3240
- #: profile-builder-2.0/admin/add-ons.php:41
3241
- #: profile-builder-2.0/admin/pms-cross-promotion.php:85
3242
- msgid "Retry Install"
3243
- msgstr "Reintentar Instalación"
3244
-
3245
- #: profile-builder-2.0/admin/add-ons.php:46
3246
- #: profile-builder-2.0/admin/add-ons.php:133
3247
- #: profile-builder-2.0/admin/add-ons.php:235
3248
- #: profile-builder-2.0/admin/pms-cross-promotion.php:90
3249
- #: profile-builder-2.0/admin/pms-cross-promotion.php:118
3250
- #: profile-builder-2.0/admin/pms-cross-promotion.php:197
3251
- msgid "Deactivate"
3252
- msgstr "Desactivar"
3253
-
3254
- #: profile-builder-2.0/admin/add-ons.php:59
3255
- msgid ""
3256
- "Something went wrong, we could not connect to the server. Please try again "
3257
- "later."
3258
- msgstr ""
3259
- "Algo salió mal, no pudimos conectarnos al servidor. Por favor inténtalo de "
3260
- "nuevo."
3261
-
3262
- #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3263
- #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3264
- msgid "Install Now"
3265
- msgstr "Instalar ahora"
3266
-
3267
- #: profile-builder-2.0/front-end/default-fields/email/email.php:51
3268
- msgid "You must enter a valid email address."
3269
- msgstr "Debe ingresar una dirección válida de email"
3270
-
3271
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
3272
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3273
- msgid "Please enter a valid username."
3274
- msgstr "Por favor ingrese un nombre de usuario válido"
3275
-
3276
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
3277
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
3278
- msgid "Only administrators can see this field on edit profile forms."
3279
- msgstr ""
3280
- "Sólo administradores pueden ver este campo en el editor de formularios de "
3281
- "perfiles"
3282
-
3283
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
3284
- msgid "As an administrator you cannot change your role."
3285
- msgstr "Como administrador, no puedes cambiar tu Rol"
3286
-
3287
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3288
- msgid "[{{site_name}}] Password Reset"
3289
- msgstr "[{{site_name}}] Restaurar Contraseña"
3290
-
3291
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3292
- msgid "Password Reset Email"
3293
- msgstr "Restaurar Contraseña vía E-mail"
3294
-
3295
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3296
- msgid ""
3297
- "\n"
3298
- "<p>You have successfully reset your password to: {{password}}</p>\n"
3299
- msgstr ""
3300
- "\n"
3301
- "<p>Tu contraseña ha sido exitosamente restaurada a: {{password}}</p>\n"
3302
-
3303
- #: profile-builder-2.0/modules/user-listing/userlisting.php:159
3304
- msgid "User Nicename"
3305
- msgstr "Nicename del Usuario"
3306
-
3307
- #: pb-add-on-woocommerce/woosync-page.php:80
3308
- #: pb-add-on-woocommerce/woosync-page.php:114
3309
- #: profile-builder-2.0/modules/user-listing/userlisting.php:499
3310
- msgid "None"
3311
- msgstr "Ninguno"
3312
-
3313
- #: profile-builder-2.0/admin/admin-functions.php:132
3314
- msgid ""
3315
- "<strong>ERROR</strong>: The password must have the minimum length of %s "
3316
- "characters"
3317
- msgstr ""
3318
- "<strong>ERROR</strong>: La contraseña tiene que tener un tamaño mínimo de %s "
3319
- "caracteres"
3320
-
3321
- #: profile-builder-2.0/admin/admin-functions.php:148
3322
- msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
3323
- msgstr ""
3324
- "<strong>ERROR</strong>: La contraseña tiene que tener una fortaleza mínima "
3325
- "de %s"
3326
-
3327
- #: profile-builder-2.0/admin/general-settings.php:179
3328
- msgid "Username and Email"
3329
- msgstr "Usuario o Email"
3330
-
3331
- #: profile-builder-2.0/admin/general-settings.php:184
3332
- msgid "\"Username and Email\" - users can Log In with both Username and Email."
3333
- msgstr ""
3334
- "\"Nombre de Usuario y Email\" - los usuarios pueden Autenticarse tanto con "
3335
- "el Nombre de Usuario como con el Email."
3336
-
3337
- #: profile-builder-2.0/admin/general-settings.php:185
3338
- msgid "\"Username\" - users can Log In only with Username."
3339
- msgstr ""
3340
- "\"Nombre de Usuario\" - los usuarios pueden Autenticarse con el Nombre de "
3341
- "Usuario."
3342
-
3343
- #: profile-builder-2.0/admin/general-settings.php:186
3344
- msgid "\"Email\" - users can Log In only with Email."
3345
- msgstr "\"Email\" - los usuarios pueden Autenticarse con el Email."
3346
-
3347
- #: profile-builder-2.0/admin/manage-fields.php:124
3348
- msgid ""
3349
- "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
3350
- "ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
3351
- msgstr ""
3352
- "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:."
3353
- "ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto:.jpg,.jpeg,.gif,."
3354
- "png (.*)"
3355
-
3356
- #: profile-builder-2.0/admin/manage-fields.php:125
3357
- msgid ""
3358
- "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
3359
- "ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file "
3360
- "extensions (.*)"
3361
- msgstr ""
3362
- "Especificar la(s) extensión(es) que desea limitar para subir<br/>Ejemplo:."
3363
- "ext1,.ext2,.ext3<br/>Si no se especifica, deja por defecto todas las "
3364
- "extensiones de archivos permitidas por WordPress (.*)"
3365
-
3366
- #: profile-builder-2.0/admin/manage-fields.php:135
3367
- msgid "User Roles"
3368
- msgstr "Roles de Usuario"
3369
-
3370
- #: profile-builder-2.0/admin/manage-fields.php:135
3371
- msgid ""
3372
- "Select which user roles to show to the user ( drag and drop to re-order )"
3373
- msgstr ""
3374
- "Seleccionar cuáles roles de usuario mostrar al usuario (arrastre y suelte "
3375
- "para reorganizar)"
3376
-
3377
- #: profile-builder-2.0/admin/manage-fields.php:136
3378
- msgid "User Roles Order"
3379
- msgstr "Orden de Roles de Usuario"
3380
-
3381
- #: profile-builder-2.0/admin/manage-fields.php:136
3382
- msgid "Save the user role order from the user roles checkboxes"
3383
- msgstr ""
3384
- "Salvar el orden de roles de usuario de las casillas de roles de usuario"
3385
-
3386
- #: profile-builder-2.0/admin/manage-fields.php:1128
3387
- msgid ""
3388
- "Please select at least one user role\n"
3389
- msgstr ""
3390
- "Por favor seleccione al menos un rol de usuario\n"
3391
-
3392
- #: profile-builder-2.0/admin/register-version.php:22
3393
- msgid "Profile Builder Register"
3394
- msgstr "Registro de Profile Builder"
3395
-
3396
- #: profile-builder-2.0/admin/register-version.php:81
3397
- msgid "The serial number is about to expire soon!"
3398
- msgstr "¡El número de serie está a punto de expirar!"
3399
-
3400
- #: profile-builder-2.0/admin/register-version.php:81
3401
- msgid ""
3402
- " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3403
- msgstr ""
3404
- "Su número de serie está a punto de expirar, por favor %1$s Renueve Su "
3405
- "Licencia%2$s."
3406
-
3407
- #: profile-builder-2.0/admin/register-version.php:83
3408
- msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3409
- msgstr "Su número de serie expiró, por favor %1$s Renueve Su Licencia%2$s."
3410
-
3411
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3412
- msgid "Add Entry"
3413
- msgstr "Adicionar Entrada"
3414
-
3415
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3416
- msgid "show"
3417
- msgstr "mostrar"
3418
-
3419
- #: profile-builder-2.0/features/functions.php:736
3420
- msgid ""
3421
- "To allow users to register for your website via Profile Builder, you first "
3422
- "must enable user registration. Go to %1$sNetwork Settings%2$s, and under "
3423
- "Registration Settings make sure to check “User accounts may be registered”. "
3424
- "%3$sDismiss%4$s"
3425
- msgstr ""
3426
- "Para permitir a los usuarios registrarse en su sitio web via Profile Builder,"
3427
- " usted tiene primero que habilitar el registro de usuario. Vaya a "
3428
- "%1$sAjustes de Red%2$s, y en Ajustes de Registros esté seguro de seleccionar "
3429
- "“Las cuentas de usuario pueden ser registradas”. %3$sDescartar%4$s"
3430
-
3431
- #: profile-builder-2.0/front-end/class-formbuilder.php:659
3432
- msgid "User to edit:"
3433
- msgstr "Usuarios a editar:"
3434
-
3435
- #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3436
- #: profile-builder-2.0/front-end/recover.php:262
3437
- msgid "The password must have the minimum length of %s characters"
3438
- msgstr "La contraseña tiene que tener un tamaño mínimo de %s caracteres"
3439
-
3440
- #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3441
- #: profile-builder-2.0/front-end/recover.php:266
3442
- msgid "The password must have a minimum strength of %s"
3443
- msgstr "La contraseña tiene que tener una fortaleza mínima de %s"
3444
-
3445
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
3446
- msgid "You cannot register this user role"
3447
- msgstr "Usted no puede registrar este rol de usuario"
3448
-
3449
- #: profile-builder-2.0/front-end/login.php:153
3450
- msgid "username or email"
3451
- msgstr "nombre de usuario o email"
3452
-
3453
- #: profile-builder-2.0/front-end/login.php:222
3454
- msgid "Username or Email"
3455
- msgstr "Usuario o Email"
3456
-
3457
- #: profile-builder-2.0/front-end/logout.php:15
3458
- msgid "You are currently logged in as %s. "
3459
- msgstr "Usted está autenticado actualmente como %s"
3460
-
3461
- #: profile-builder-2.0/front-end/logout.php:15
3462
- msgid "Log out &raquo;"
3463
- msgstr "Salir &raquo;"
3464
-
3465
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3466
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3467
- msgid "User Role"
3468
- msgstr "Role del Usuario"
3469
-
3470
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
3471
- msgid "View all extra shortcode parameters"
3472
- msgstr "Ver todos los parámetros de código corto adicionales"
3473
-
3474
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
3475
- msgid "displays only the users that you specified the user_id for"
3476
- msgstr ""
3477
- "muestra solamente los usuarios para los que usted ha especificado el user_id"
3478
-
3479
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
3480
- msgid "displays all users except the ones you specified the user_id for"
3481
- msgstr ""
3482
- "muestra todos los usuarios excepto aquellos para los que usted ha "
3483
- "especificado el user_id"
3484
-
3485
- #: profile-builder-2.0/features/functions.php:566
3486
- msgid "Minimum length of %d characters"
3487
- msgstr "Mínimo de %d caracteres. "
3488
-
3489
- #: profile-builder-2.0/front-end/class-formbuilder.php:146
3490
- #: profile-builder-2.0/front-end/class-formbuilder.php:149
3491
- msgid "This message is only visible by administrators"
3492
- msgstr "Este mensaje está visible solamente por administradores"
3493
-
3494
- #: profile-builder-2.0/modules/user-listing/userlisting.php:413
3495
- msgid "User not found"
3496
- msgstr "Usuario no encontrado"
3497
-
3498
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3499
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3500
- msgid "Valid tags {{reply_to}} and {{site_name}}"
3501
- msgstr "Etiquetas válidas {{reply_to}} y {{site_name}}"
3502
-
3503
- #: profile-builder-2.0/admin/admin-bar.php:48
3504
- msgid ""
3505
- "Choose which user roles view the admin bar in the front-end of the website."
3506
- msgstr ""
3507
- "Escoger qué roles de usuario ve el admin bar en la vista pública del sitio "
3508
- "web."
3509
-
3510
- #: profile-builder-2.0/admin/manage-fields.php:129
3511
- msgid ""
3512
- "Enter a comma separated list of values<br/>This can be anything, as it is "
3513
- "hidden from the user, but should not contain special characters or "
3514
- "apostrophes"
3515
- msgstr ""
3516
- "Entrar una lista de valores separada por coma<br/>Esto puede ser cualquier "
3517
- "cosa, como está oculto al usuario, pero no debería contener caracteres "
3518
- "especiales o apóstrofes"
3519
-
3520
- #: profile-builder-2.0/admin/manage-fields.php:1055
3521
- msgid ""
3522
- "The meta-name cannot be empty\n"
3523
- msgstr ""
3524
- "El meta-nombre no puede ser vacío\n"
3525
-
3526
- #: profile-builder-2.0/admin/register-version.php:69
3527
- msgid ""
3528
- "Now that you acquired a copy of %s, you should take the time and register it "
3529
- "with the serial number you received"
3530
- msgstr ""
3531
- "Ahora que ha adquirido una copia de %s, usted debería tomarse un tiempo y "
3532
- "registrarlo con el número de serie que recibió"
3533
-
3534
- #: profile-builder-2.0/admin/register-version.php:243
3535
- msgid ""
3536
- "<p>Your <strong>Profile Builder</strong> serial number is invalid or missing."
3537
- " <br/>Please %1$sregister your copy%2$s to receive access to automatic "
3538
- "updates and support. Need a license key? %3$sPurchase one now%4$s</p>"
3539
- msgstr ""
3540
- "<p>Su número de serie de <strong>Profile Builder</strong> es inválido o no "
3541
- "se encuentra. <br/>Por favor %1$sregistre su copia%2$s para recibir acceso a "
3542
- "actualizaciones automáticas y soporte. ¿Necesita una llave de licencia? "
3543
- "%3$sCompre una ahora%4$s</p>"
3544
-
3545
- #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3546
- #: profile-builder-2.0/assets/lib/wck-api/fie