wpml-string-translation.po
62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
# This file was generated by WPML
# WPML is a WordPress plugin that can turn any WordPress or WordPressMU site into a full featured multilingual content management system.
# https://wpml.org
msgid ""
msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Project-Id-Version:WPML_EXPORT\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
"Language:en\n"
"MIME-Version: 1.0\n"
# $text = '<p>' .
# esc_html__( 'WPML String Translation is attempting to write .mo files with translations to folder:',
# 'wpml-string-translation' ) . '<br/>' .
msgid "WPML String Translation is attempting to write .mo files with translations to folder:"
msgstr ""
#
# $text .= '<p>' . esc_html__( 'This folder appears to be not writable. This is blocking translation for strings from appearing on the site.',
# 'wpml-string-translation' ) . '</p>';
msgid "This folder appears to be not writable. This is blocking translation for strings from appearing on the site."
msgstr ""
#
# $text .= '<p>' . esc_html__( 'To resolve this, please contact your hosting company and request that they make that folder writable.',
# 'wpml-string-translation' ) . '</p>';
msgid "To resolve this, please contact your hosting company and request that they make that folder writable."
msgstr ""
# $link = '<a href="' . $url . '" target="_blank" rel="noreferrer noopener" >' .
# esc_html__( "WPML's documentation on troubleshooting .mo files generation.",
# 'wpml-string-translation' ) .
msgid "WPML's documentation on troubleshooting .mo files generation."
msgstr ""
#
# $text .= '<p>' . sprintf( esc_html__( 'For more details, see %s.', 'wpml-string-translation' ),
# $link ) . '</p>';
msgid "For more details, see %s."
msgstr ""
# AjaxFactory::ACTION_SHOW_GENERATE_DIALOG,
# esc_attr__( 'Show custom MO Files Pre-generation dialog box', 'wpml-string-translation' ),
# false
msgid "Show custom MO Files Pre-generation dialog box"
msgstr ""
# AjaxFactory::ACTION_CLEANUP,
# esc_attr__( 'Cleanup and optimize string tables', 'wpml-string-translation' ),
# esc_attr__( 'Cleanup and optimization completed!', 'wpml-string-translation' )
msgid "Cleanup and optimize string tables"
msgstr ""
# esc_attr__( 'Cleanup and optimize string tables', 'wpml-string-translation' ),
# esc_attr__( 'Cleanup and optimization completed!', 'wpml-string-translation' )
# );
msgid "Cleanup and optimization completed!"
msgstr ""
# if ( ! $taxonomy || ! $source_lang ) {
# wp_send_json_error( __( 'Missing parameters', 'wpml-string-translation' ) );
# return;
msgid "Missing parameters"
msgstr ""
# if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], self::NONCE_TAXONOMY_TRANSLATION ) ) {
# wp_send_json_error( __( 'Invalid nonce', 'wpml-string-translation' ) );
# return false;
msgid "Invalid nonce"
msgstr ""
# } else {
# wp_send_json_error( __( 'Nonce value is invalid', 'wpml-string-translation' ) );
# }
msgid "Nonce value is invalid"
msgstr ""
# return '<span class="icon otgs-ico-warning"></span> '
# . __( "Automatic string registration will remain active for %s. Please visit the site's front-end to allow WPML to find strings for translation.", 'wpml-string-translation' );
# }
msgid "Automatic string registration will remain active for %s. Please visit the site's front-end to allow WPML to find strings for translation."
msgstr ""
# public function getFeatureDisabledDescription() {
# return __( '* This feature is only intended for sites that are in development. It will significantly slow down the site, but help you find strings that WPML cannot detect in the PHP code.', 'wpml-string-translation' );
# }
msgid "* This feature is only intended for sites that are in development. It will significantly slow down the site, but help you find strings that WPML cannot detect in the PHP code."
msgstr ""
# $model = array(
# 'section_label' => __( 'Strings in the plugins', 'wpml-string-translation' ),
# 'scan_button_label' => __( 'Scan selected plugins for strings', 'wpml-string-translation' ),
msgid "Strings in the plugins"
msgstr ""
# 'section_label' => __( 'Strings in the plugins', 'wpml-string-translation' ),
# 'scan_button_label' => __( 'Scan selected plugins for strings', 'wpml-string-translation' ),
# 'completed_title' => __( 'Completely translated strings', 'wpml-string-translation' ),
msgid "Scan selected plugins for strings"
msgstr ""
# 'scan_button_label' => __( 'Scan selected plugins for strings', 'wpml-string-translation' ),
# 'completed_title' => __( 'Completely translated strings', 'wpml-string-translation' ),
# 'needs_update_title' => __( 'Strings in need of translation', 'wpml-string-translation' ),
msgid "Completely translated strings"
msgstr ""
# 'completed_title' => __( 'Completely translated strings', 'wpml-string-translation' ),
# 'needs_update_title' => __( 'Strings in need of translation', 'wpml-string-translation' ),
# 'component' => __( 'Plugin', 'wpml-string-translation' ),
msgid "Strings in need of translation"
msgstr ""
# 'needs_update_title' => __( 'Strings in need of translation', 'wpml-string-translation' ),
# 'component' => __( 'Plugin', 'wpml-string-translation' ),
# 'domain' => __( 'Textdomain', 'wpml-string-translation' ),
msgid "Plugin"
msgstr ""
# 'component' => __( 'Plugin', 'wpml-string-translation' ),
# 'domain' => __( 'Textdomain', 'wpml-string-translation' ),
# 'all_text' => __( 'All', 'wpml-string-translation' ),
msgid "Textdomain"
msgstr ""
# 'domain' => __( 'Textdomain', 'wpml-string-translation' ),
# 'all_text' => __( 'All', 'wpml-string-translation' ),
# 'active_text' => __( 'Active', 'wpml-string-translation' ),
msgid "All"
msgstr ""
# 'all_text' => __( 'All', 'wpml-string-translation' ),
# 'active_text' => __( 'Active', 'wpml-string-translation' ),
# 'inactive_text' => __( 'Inactive', 'wpml-string-translation' ),
msgid "Active"
msgstr ""
# 'active_text' => __( 'Active', 'wpml-string-translation' ),
# 'inactive_text' => __( 'Inactive', 'wpml-string-translation' ),
# 'type' => 'plugin',
msgid "Inactive"
msgstr ""
# if ( ! array_key_exists( 'TextDomain', $plugin_data ) ) {
# $plugin_data['TextDomain'] = __( 'No TextDomain', 'wpml-string-translation' );
# }
msgid "No TextDomain"
msgstr ""
# 'domain_link' => add_query_arg( array( 'context' => $domain), $this->base_st_url ),
# 'title_needs_translation' => sprintf( __( 'Translate strings in %s', 'wpml-string-translation' ), $domain),
# 'title_all_strings' => sprintf( __( 'All strings in %s', 'wpml-string-translation' ), $domain),
msgid "Translate strings in %s"
msgstr ""
# 'title_needs_translation' => sprintf( __( 'Translate strings in %s', 'wpml-string-translation' ), $domain),
# 'title_all_strings' => sprintf( __( 'All strings in %s', 'wpml-string-translation' ), $domain),
# );
msgid "All strings in %s"
msgstr ""
# $model = array(
# 'section_label' => __( 'Strings in the themes', 'wpml-string-translation' ),
# 'scan_button_label' => __( 'Scan selected themes for strings', 'wpml-string-translation' ),
msgid "Strings in the themes"
msgstr ""
# 'section_label' => __( 'Strings in the themes', 'wpml-string-translation' ),
# 'scan_button_label' => __( 'Scan selected themes for strings', 'wpml-string-translation' ),
# 'completed_title' => __( 'Completely translated strings', 'wpml-string-translation' ),
msgid "Scan selected themes for strings"
msgstr ""
# 'needs_update_title' => __( 'Strings in need of translation', 'wpml-string-translation' ),
# 'component' => __( 'Theme', 'wpml-string-translation' ),
# 'domain' => __( 'Textdomain', 'wpml-string-translation' ),
msgid "Theme"
msgstr ""
# 'value' => 1,
# 'label' => __( 'Use theme or plugin text domains when gettext calls do not use a string literal', 'wpml-string-translation' ),
# 'tooltip' => __( "Some themes and plugins don't properly set the textdomain (second argument) in GetText calls. When you select this option, WPML will assume that the strings found in GetText calls in the PHP files of the theme and plugin should have the textdomain with the theme/plugin's name.", 'wpml-string-translation' ),
msgid "Use theme or plugin text domains when gettext calls do not use a string literal"
msgstr ""
# 'label' => __( 'Use theme or plugin text domains when gettext calls do not use a string literal', 'wpml-string-translation' ),
# 'tooltip' => __( "Some themes and plugins don't properly set the textdomain (second argument) in GetText calls. When you select this option, WPML will assume that the strings found in GetText calls in the PHP files of the theme and plugin should have the textdomain with the theme/plugin's name.", 'wpml-string-translation' ),
# 'checked' => checked( true, ! empty( $this->st_settings['use_header_text_domains_when_missing'] ), false ),
msgid "Some themes and plugins don't properly set the textdomain (second argument) in GetText calls. When you select this option, WPML will assume that the strings found in GetText calls in the PHP files of the theme and plugin should have the textdomain with the theme/plugin's name."
msgstr ""
# return array(
# 'buttonLabel' => __( 'Recreate ST DB cache tables', 'wpml-string-translation' ),
# 'description' => __( 'Recreate String Translation cache tables when they are missing or are invalid.', 'wpml-string-translation' ),
msgid "Recreate ST DB cache tables"
msgstr ""
# 'buttonLabel' => __( 'Recreate ST DB cache tables', 'wpml-string-translation' ),
# 'description' => __( 'Recreate String Translation cache tables when they are missing or are invalid.', 'wpml-string-translation' ),
# 'successMsg' => esc_js( __( 'Done', 'wpml-string-translation' ) ),
msgid "Recreate String Translation cache tables when they are missing or are invalid."
msgstr ""
# 'description' => __( 'Recreate String Translation cache tables when they are missing or are invalid.', 'wpml-string-translation' ),
# 'successMsg' => esc_js( __( 'Done', 'wpml-string-translation' ) ),
# 'nonce' => wp_create_nonce( 'wpml-st-upgrade-db-cache-command-nonce' ),
msgid "Done"
msgstr ""
# if ( $_FILES[ 'icl_po_file' ][ 'size' ] === 0 ) {
# $this->errors = esc_html__( 'File upload error', 'wpml-string-translation' );
# return null;
msgid "File upload error"
msgstr ""
# protected function get_privacy_policy() {
# return __( 'WPML String Translation will send all strings to WPML’s Advanced Translation Editor and to the translation services which are used.', 'wpml-string-translation' );
# }
msgid "WPML String Translation will send all strings to WPML’s Advanced Translation Editor and to the translation services which are used."
msgstr ""
# 'strings' => array(
# 'toggle_slugs_table' => sprintf( __( 'Set different slugs in different languages for %s.', 'wpml-string-translation' ), $custom_type->labels->name ),
# 'slug_status_incomplete' => __( "Not marked as 'complete'. Press 'Save' to enable.", 'wpml-string-translation' ),
msgid "Set different slugs in different languages for %s."
msgstr ""
# 'toggle_slugs_table' => sprintf( __( 'Set different slugs in different languages for %s.', 'wpml-string-translation' ), $custom_type->labels->name ),
# 'slug_status_incomplete' => __( "Not marked as 'complete'. Press 'Save' to enable.", 'wpml-string-translation' ),
# 'original_label' => __( '(original)', 'wpml-string-translation' ),
msgid "Not marked as 'complete'. Press 'Save' to enable."
msgstr ""
# 'slug_status_incomplete' => __( "Not marked as 'complete'. Press 'Save' to enable.", 'wpml-string-translation' ),
# 'original_label' => __( '(original)', 'wpml-string-translation' ),
# ),
msgid "(original)"
msgstr ""
# $model['has_missing_translations_message'] = sprintf(
# esc_html__(
# '%s slugs are set to be translated, but they are missing their translation',
msgid "%s slugs are set to be translated, but they are missing their translation"
msgstr ""
# 'positions' => $positions,
# 'no_results_label' => __( 'No records found', 'wpml-string-translation' ),
# 'highlight_color' => $highlight_color,
msgid "No records found"
msgstr ""
# ?>
# <a class="thickbox" title="<?php esc_attr_e( 'view in source', 'wpml-string-translation' ) ?>"
# href="<?php echo esc_url( $thickbox_url ); ?>">
msgid "view in source"
msgstr ""
# <img src="<?php echo WPML_ST_URL ?>/res/img/view-in-source.png" width="16" height="16"
# alt="<?php esc_attr_e( 'view in page', 'wpml-string-translation' ) ?>"/>
# </a>
msgid "view in page"
msgstr ""
# <td colspan="6" align="center">
# <?php esc_html_e( 'No strings found', 'wpml-string-translation' ) ?>
# </td>
msgid "No strings found"
msgstr ""
# <td scope="col" class="manage-column column-cb check-column"><input type="checkbox"/></td>
# <th scope="col"><?php esc_html_e( 'Domain', 'wpml-string-translation' ) ?></th>
# <?php if ( $this->additional_columns_to_render->contains( 'context' ) ) : ?>
msgid "Domain"
msgstr ""
# <?php if ( $this->additional_columns_to_render->contains( 'context' ) ) : ?>
# <th scope="col"><?php esc_html_e( 'Context', 'wpml-string-translation' ) ?></th>
# <?php endif; ?>
msgid "Context"
msgstr ""
# <?php if ( $this->additional_columns_to_render->contains( 'name' ) ) : ?>
# <th scope="col"><?php esc_html_e( 'Name', 'wpml-string-translation' ) ?></th>
# <?php endif; ?>
msgid "Name"
msgstr ""
# <?php if ( $this->additional_columns_to_render->contains( 'view' ) ) : ?>
# <th scope="col"><?php esc_html_e( 'View', 'wpml-string-translation' ) ?></th>
# <?php endif; ?>
msgid "View"
msgstr ""
# <?php endif; ?>
# <th scope="col"><?php esc_html_e( 'String', 'wpml-string-translation' ) ?></th>
# <th scope="col" class="wpml-col-languages"
msgid "String"
msgstr ""
# class="wpml-change-language-dialog"
# title="<?php _e( 'Language of domains', 'wpml-string-translation' ); ?>"
# style="display:none"
msgid "Language of domains"
msgstr ""
# style="display:none"
# data-button-text="<?php _e( 'Apply', 'wpml-string-translation' ); ?>"
# data-cancel-text="<?php _e( 'Cancel', 'wpml-string-translation' ); ?>" >
msgid "Apply"
msgstr ""
# data-button-text="<?php _e( 'Apply', 'wpml-string-translation' ); ?>"
# data-cancel-text="<?php _e( 'Cancel', 'wpml-string-translation' ); ?>" >
# <label for="wpml-domain-select">
msgid "Cancel"
msgstr ""
# <label for="wpml-domain-select">
# <?php _e( 'Select for which domain to set the language: ', 'wpml-string-translation' ); ?>
# </label>
msgid "Select for which domain to set the language: "
msgstr ""
# <select id="wpml-domain-select">
# <option value="" selected="selected"><?php _e( '-- Please select --', 'wpml-string-translation' ); ?></option>
# <?php
msgid "-- Please select --"
msgstr ""
# <p class="wpml-cdl-info">
# <?php _e( 'This domain currently has the following strings:', 'wpml-string-translation'); ?>
# </p>
msgid "This domain currently has the following strings:"
msgstr ""
# <td class="manage-column column-cb check-column"><input class="js-all-check" type="checkbox" value="all" /></td>
# <th><?php _e( 'Current source language', 'wpml-string-translation' ); ?></th>
# <th class="num"><?php _e( 'Number of strings', 'wpml-string-translation' ); ?></th>
msgid "Current source language"
msgstr ""
# <th><?php _e( 'Current source language', 'wpml-string-translation' ); ?></th>
# <th class="num"><?php _e( 'Number of strings', 'wpml-string-translation' ); ?></th>
# </tr>
msgid "Number of strings"
msgstr ""
# <div class="js-lang-select-area wpml-cdl-info">
# <label for="wpml-source-domain-language-change"><?php _e( 'Set the source language of these strings to:', 'wpml-string-translation'); ?></label>
# <?php
msgid "Set the source language of these strings to:"
msgstr ""
# <input id="wpml-cdl-set-default" type="checkbox" class="js-default" value="use-as-default" checked="checked" />
# <?php _e( 'Use this language as the default language for new strings in this domain', 'wpml-string-translation'); ?>
# </label>
msgid "Use this language as the default language for new strings in this domain"
msgstr ""
# 'class' => 'wpml-select2-button',
# 'please_select_text' => __( 'Change the language of selected strings', 'wpml-string-translation' ),
# 'disabled' => true
msgid "Change the language of selected strings"
msgstr ""
# 'strings' => array(
# 'empty_text' => __( 'Change translation priority of selected strings', 'wpml-string-translation' ),
# )
msgid "Change translation priority of selected strings"
msgstr ""
# $strings = array(
# 'title' => __( 'Dismiss all notices', 'wpml-string-translation' ),
# 'message' => __( 'Also prevent similar messages in the future?', 'wpml-string-translation' ),
msgid "Dismiss all notices"
msgstr ""
# 'title' => __( 'Dismiss all notices', 'wpml-string-translation' ),
# 'message' => __( 'Also prevent similar messages in the future?', 'wpml-string-translation' ),
# 'no' => __( 'No - keep showing these message', 'wpml-string-translation' ),
msgid "Also prevent similar messages in the future?"
msgstr ""
# 'message' => __( 'Also prevent similar messages in the future?', 'wpml-string-translation' ),
# 'no' => __( 'No - keep showing these message', 'wpml-string-translation' ),
# 'yes' => __( 'Yes - disable these notifications completely', 'wpml-string-translation' ),
msgid "No - keep showing these message"
msgstr ""
# 'no' => __( 'No - keep showing these message', 'wpml-string-translation' ),
# 'yes' => __( 'Yes - disable these notifications completely', 'wpml-string-translation' ),
# );
msgid "Yes - disable these notifications completely"
msgstr ""
# 'files' => $files,
# 'no_files_message' => __( 'Files already scanned.', 'wpml-string-translation' ),
# );
msgid "Files already scanned."
msgstr ""
# $blocks['php']['data']['mbstring'] = array(
# 'label' => __( 'Multibyte String extension', 'wpml-string-translation' ),
# 'value' => $is_mbstring_extension_loaded ? __( 'Loaded', 'wpml-string-translation' ) : __( 'Not loaded', 'wpml-string-translation' ),
msgid "Multibyte String extension"
msgstr ""
# 'label' => __( 'Multibyte String extension', 'wpml-string-translation' ),
# 'value' => $is_mbstring_extension_loaded ? __( 'Loaded', 'wpml-string-translation' ) : __( 'Not loaded', 'wpml-string-translation' ),
# 'url' => 'http://php.net/manual/book.mbstring.php',
msgid "Loaded"
msgstr ""
# 'label' => __( 'Multibyte String extension', 'wpml-string-translation' ),
# 'value' => $is_mbstring_extension_loaded ? __( 'Loaded', 'wpml-string-translation' ) : __( 'Not loaded', 'wpml-string-translation' ),
# 'url' => 'http://php.net/manual/book.mbstring.php',
msgid "Not loaded"
msgstr ""
# 'messages' => array(
# __( 'Multibyte String extension is required for WPML String Translation.', 'wpml-string-translation' ) => 'https://wpml.org/home/minimum-requirements/',
# ),
msgid "Multibyte String extension is required for WPML String Translation."
msgstr ""
# private function get_short_notice_message() {
# $message = _x( 'WPML cannot replace .mo files because of technical problems in the String Translation table.',
# 'MO Import blocked short 1/3', 'wpml-string-translation' );
msgctxt "MO Import blocked short 1/3"
msgid "WPML cannot replace .mo files because of technical problems in the String Translation table."
msgstr ""
#
# $message .= ' ' . _x( 'WPML support team knows how to fix it.',
# 'MO Import blocked short 2/3', 'wpml-string-translation' );
msgctxt "MO Import blocked short 2/3"
msgid "WPML support team knows how to fix it."
msgstr ""
#
# $message .= ' ' . sprintf( _x( 'Please add a message in the relevant <a href="%s" target="_blank" >support thread</a> and we\'ll fix it for you.',
# 'MO Import blocked short 3/3', 'wpml-string-translation' ), $this->link );
msgctxt "MO Import blocked short 3/3"
msgid "Please add a message in the relevant <a href=\"%s\" target=\"_blank\" >support thread</a> and we'll fix it for you."
msgstr ""
# private function display_notice() {
# $message = _x( 'There is a problem with the String Translation table in your site.',
# 'MO Import blocked 1/4', 'wpml-string-translation' );
msgctxt "MO Import blocked 1/4"
msgid "There is a problem with the String Translation table in your site."
msgstr ""
#
# $message .= ' ' . _x( 'This problem is not causing a problem running the site right now, but can become a critical issue in the future.',
# 'MO Import blocked 2/4', 'wpml-string-translation' );
msgctxt "MO Import blocked 2/4"
msgid "This problem is not causing a problem running the site right now, but can become a critical issue in the future."
msgstr ""
#
# $message .= ' ' . _x( 'WPML support team knows how to fix it.',
# 'MO Import blocked 3/4', 'wpml-string-translation' );
msgctxt "MO Import blocked 3/4"
msgid "WPML support team knows how to fix it."
msgstr ""
#
# $message .= ' ' . sprintf( _x( 'Please add a message in the relevant <a href="%s" target="_blank">support thread</a> and we\'ll fix it for you.',
# 'MO Import blocked 4/4', 'wpml-string-translation' ), $this->link );
msgctxt "MO Import blocked 4/4"
msgid "Please add a message in the relevant <a href=\"%s\" target=\"_blank\">support thread</a> and we'll fix it for you."
msgstr ""
# $text = '<p>' . sprintf(
# esc_html__( 'We have detected a problem with some tables in the database. Please contact %sWPML support%s to get this fixed.', 'wpml-string-translation' ),
# '<a href="https://wpml.org/forums/forum/english-support/" class="otgs-external-link" rel="noopener" target="_blank">',
msgid "We have detected a problem with some tables in the database. Please contact %sWPML support%s to get this fixed."
msgstr ""
# <p>
# <?php esc_html_e( "WPML needs to update the database. This update will help improve WPML's performance when fetching translated strings.", 'wpml-string-translation' ); ?>
# <br /><br />
msgid "WPML needs to update the database. This update will help improve WPML's performance when fetching translated strings."
msgstr ""
# <br /><br />
# <button class="wpml-st-upgrade-migrate-originals"><?php esc_html_e( 'Update Now', 'wpml-string-translation' ); ?></button> <span class="spinner" style="float: none"></span>
# </p>
msgid "Update Now"
msgstr ""
# <p>
# <?php esc_html_e( 'The database has been updated.', 'wpml-string-translation' ); ?>
# <br /><br />
msgid "The database has been updated."
msgstr ""
# <br /><br />
# <button class="wpml-st-upgrade-migrate-originals-close"><?php esc_html_e( 'Close', 'wpml-string-translation' ); ?></button>
# </p>
msgid "Close"
msgstr ""
# public function __construct() {
# $widget_ops = array( 'classname' => 'widget_text_icl', 'description' => __( 'Multilingual arbitrary text or HTML', 'wpml-string-translation' ) );
# parent::__construct( 'text_icl', __( 'Multilingual Text', 'wpml-string-translation' ), $widget_ops );
msgid "Multilingual arbitrary text or HTML"
msgstr ""
# $widget_ops = array( 'classname' => 'widget_text_icl', 'description' => __( 'Multilingual arbitrary text or HTML', 'wpml-string-translation' ) );
# parent::__construct( 'text_icl', __( 'Multilingual Text', 'wpml-string-translation' ), $widget_ops );
# }
msgid "Multilingual Text"
msgstr ""
# case ICL_STRING_TRANSLATION_COMPLETE:
# return __( 'Translation complete', 'wpml-string-translation' );
#
msgid "Translation complete"
msgstr ""
# case ICL_STRING_TRANSLATION_PARTIAL:
# return __( 'Partial translation', 'wpml-string-translation' );
#
msgid "Partial translation"
msgstr ""
# case ICL_STRING_TRANSLATION_NEEDS_UPDATE:
# return __( 'Translation needs update', 'wpml-string-translation' );
#
msgid "Translation needs update"
msgstr ""
# case ICL_STRING_TRANSLATION_NOT_TRANSLATED:
# return __( 'Not translated', 'wpml-string-translation' );
#
msgid "Not translated"
msgstr ""
# case ICL_STRING_TRANSLATION_WAITING_FOR_TRANSLATOR:
# return __( 'Waiting for translator', 'wpml-string-translation' );
#
msgid "Waiting for translator"
msgstr ""
# <div class="error wpml-admin-notice wpml-st-inactive wpml-inactive">
# <p><?php esc_html_e( 'Please activate WPML Multilingual CMS to have WPML String Translation working.', 'wpml-string-translation' ); ?></p>
# </div>
msgid "Please activate WPML Multilingual CMS to have WPML String Translation working."
msgstr ""
# <div class="message error wpml-admin-notice wpml-st-inactive wpml-not-configured">
# <p><?php esc_html_e( 'WPML String Translation is enabled but not effective. Please finish the installation of WPML first.', 'wpml-string-translation' ); ?></p>
# </div>
msgid "WPML String Translation is enabled but not effective. Please finish the installation of WPML first."
msgstr ""
# class="message error wpml-admin-notice wpml-st-inactive wpml-outdated">
# <p><?php esc_html_e( 'WPML String Translation is enabled but not effective, because WPML is outdated. Please update WPML first.', 'wpml-string-translation' ); ?></p>
# </div>
msgid "WPML String Translation is enabled but not effective, because WPML is outdated. Please update WPML first."
msgstr ""
# $html = '<div class="wrap">';
# $html .= '<h2>' . __( 'Auto-download WordPress translations', 'wpml-string-translation' ) . '</h2>';
#
msgid "Auto-download WordPress translations"
msgstr ""
# private function render_nothing_to_be_added() {
# $html = '<p>' . __( 'There is nothing to be updated or to be added.', 'wpml-string-translation' ) . '</p>';
#
msgid "There is nothing to be updated or to be added."
msgstr ""
# $html .= '<p><a href="' . admin_url( 'admin.php?page=' . ICL_PLUGIN_FOLDER . '/menu/theme-localization.php' ) . '"';
# $html .= 'class="button-secondary">' . __( 'Check other languages', 'wpml-string-translation' ) . '</a></p>';
#
msgid "Check other languages"
msgstr ""
#
# $html = '<h3>' . sprintf( __( 'Updated translations (%d)', 'wpml-string-translation' ), count( $updated_translations ) ) . '</h3>';
# $html .= '<table id="icl_admo_list_table" class="widefat">';
msgid "Updated translations (%d)"
msgstr ""
# $html .= '<th>' . __( 'String', 'wpml-string-translation' ) . '</th>';
# $html .= '<th style="text-align:center;">' . __( 'Existing translation', 'wpml-string-translation' ) . '</th>';
# $html .= '<th style="text-align:center;">' . __( 'New translation', 'wpml-string-translation' ) . '</th>';
msgid "Existing translation"
msgstr ""
# $html .= '<th style="text-align:center;">' . __( 'Existing translation', 'wpml-string-translation' ) . '</th>';
# $html .= '<th style="text-align:center;">' . __( 'New translation', 'wpml-string-translation' ) . '</th>';
# $html .= '</tr></thead> <tbody>';
msgid "New translation"
msgstr ""
#
# $html = '<h3>' . sprintf( __( 'New translations (%d)', 'wpml-string-translation' ), count( $new_translations ) ) . '</h3>';
# $html .= '<table class="widefat">';
msgid "New translations (%d)"
msgstr ""
# $html .= '<th>' . __( 'String', 'wpml-string-translation' ) . '</th>';
# $html .= '<th>' . __( 'Translation', 'wpml-string-translation' ) . '</th>';
# $html .= '</tr></thead><tbody>';
msgid "Translation"
msgstr ""
# $html .= '<label><input type="checkbox" name="add_new" value="' . base64_encode( serialize( $new_translations ) ) . '" checked="checked" /> ';
# $html .= __( 'Add the new translations.', 'wpml-string-translation' ) . '</label>';
#
msgid "Add the new translations."
msgstr ""
#
# $link_to_bottom_of_page = '<a href="#adm-proceed">' . __( 'bottom of this page', 'wpml-string-translation' ) . '</a>';
#
msgid "bottom of this page"
msgstr ""
# $html = '<br /><div class="icl_cyan_box">';
# $html .= sprintf( __( 'This update includes %d new strings and %d updated strings. You can review the strings below. Then, go to the %s and click on the Proceed button.', 'wpml-string-translation' ), $number_of_new_strings, $number_of_updated_strings, $link_to_bottom_of_page );
# $html .= '</div>';
msgid "This update includes %d new strings and %d updated strings. You can review the strings below. Then, go to the %s and click on the Proceed button."
msgstr ""
# private function render_translations_updated_response() {
# $html = '<p><strong>' . __( 'Success!', 'wpml-string-translation' ) . '</strong></p>';
# foreach ( $this->user_messages as $message ) {
msgid "Success!"
msgstr ""
# if ( ! $this->version ) {
# $html .= __( 'Missing version number for translation.', 'wpml-string-translation' );
# } elseif ( ! isset( $this->active_languages[ $this->language ] ) ) {
msgid "Missing version number for translation."
msgstr ""
# } elseif ( ! isset( $this->active_languages[ $this->language ] ) ) {
# $html .= sprintf( __( 'Invalid language: %s', 'wpml-string-translation' ), $this->$language );
# }
msgid "Invalid language: %s"
msgstr ""
# } else {
# $this->user_errors[ ] = __( 'No action performed. Please select the strings that you need to update or add.', 'wpml-string-translation' );
# $res = $this->user_errors;
msgid "No action performed. Please select the strings that you need to update or add."
msgstr ""
# if ( ! empty( $translations_add ) ) {
# $this->user_messages[ ] = sprintf( _n( '%d new translation was added.', '%d new translations were added.', count( $translations_add ), 'wpml-string-translation' ), count( $translations_add ) );
# }
msgid "%d new translation was added."
msgstr ""
# if ( ! empty( $translations_add ) ) {
# $this->user_messages[ ] = sprintf( _n( '%d new translation was added.', '%d new translations were added.', count( $translations_add ), 'wpml-string-translation' ), count( $translations_add ) );
# }
msgid "%d new translations were added."
msgstr ""
# if ( $translations_updated ) {
# $this->user_messages[ ] = sprintf( _n( '%d translation was updated.', '%d translations were updated.', $translations_updated, 'wpml-string-translation' ), $translations_updated );
# }
msgid "%d translation was updated."
msgstr ""
# if ( $translations_updated ) {
# $this->user_messages[ ] = sprintf( _n( '%d translation was updated.', '%d translations were updated.', $translations_updated, 'wpml-string-translation' ), $translations_updated );
# }
msgid "%d translations were updated."
msgstr ""
# if ( $result['strings_found'] ) {
# $result['scan_successful_message'] .= __( ' They were added to the string translation table.', 'wpml-string-translation' );
# }
msgid " They were added to the string translation table."
msgstr ""
# $result = array(
# 'scan_successful_message' => esc_html__( 'Scan successful! WPML found %s strings.', 'wpml-string-translation' ),
# 'files_processed_message' => esc_html__( 'The following files were processed:', 'wpml-string-translation' ),
msgid "Scan successful! WPML found %s strings."
msgstr ""
# 'scan_successful_message' => esc_html__( 'Scan successful! WPML found %s strings.', 'wpml-string-translation' ),
# 'files_processed_message' => esc_html__( 'The following files were processed:', 'wpml-string-translation' ),
# 'files_processed' => $this->get_scanned_files(),
msgid "The following files were processed:"
msgstr ""
#
# $this->add_stat( sprintf( __( 'Scanning file: %s', 'wpml-string-translation' ), $file ) );
# $this->add_scanned_file( $file );
msgid "Scanning file: %s"
msgstr ""
# } else {
# $this->add_stat( sprintf( __( 'Skipping file: %s', 'wpml-string-translation' ), $file ) );
# }
msgid "Skipping file: %s"
msgstr ""
# if ( empty( $this->strings ) ) {
# $this->error_str = __( 'No string found', 'wpml-string-translation' );
# }
msgid "No string found"
msgstr ""
#
# $this->metabox_data[ 'title' ] = __( 'WPML Translation', 'wpml-string-translation' );
# if ( $this->is_package_language_active( ) ) {
msgid "WPML Translation"
msgstr ""
# if ( $this->is_package_language_active( ) ) {
# $this->metabox_data[ 'translate_title' ] = __( 'Send to translation', 'wpml-string-translation' );
# } else {
msgid "Send to translation"
msgstr ""
# } else {
# $this->metabox_data[ 'translate_title' ] = __( 'Translate strings', 'wpml-string-translation' );
# }
msgid "Translate strings"
msgstr ""
# if ( $this->got_package() ) {
# $this->metabox_data[ 'statuses_title' ] = __( 'Translation status:', 'wpml-string-translation' );
# $this->init_translation_statuses();
msgid "Translation status:"
msgstr ""
# $this->init_translation_statuses();
# $this->metabox_data[ 'package_language_title' ] = sprintf( __( 'Language of this %s is %s', 'wpml-string-translation' ), $this->package->kind, $this->get_lang_selector( ) );
# } else {
msgid "Language of this %s is %s"
msgstr ""
# $this->metabox_data[ 'package_language_title' ] = '';
# $this->metabox_data[ 'statuses_title' ] = __( 'There is nothing to translate.', 'wpml-string-translation' );
# }
msgid "There is nothing to translate."
msgstr ""
# case ICL_TM_IN_PROGRESS:
# $res->status = __( 'In progress', 'wpml-string-translation' );
# break;
msgid "In progress"
msgstr ""
# case ICL_TM_COMPLETE:
# $res->status = __( 'Complete', 'wpml-string-translation' );
# break;
msgid "Complete"
msgstr ""
# }
# $res->status .= __( 'Needs update', 'wpml-string-translation' );
# }
msgid "Needs update"
msgstr ""
# if ( $tm->is_in_basket( $language_data[ 'code' ] ) ) {
# $status_value = __( 'In translation basket', 'wpml-string-translation' );
# } else {
msgid "In translation basket"
msgstr ""
# 'type' => 'update',
# 'text' => __( 'You cannot add packages in this language to the basket since it already contains posts, packages or strings of another source language!
# Either submit the current basket and then add the post or delete the posts of differing language in the current basket', 'wpml-string-translation' )
msgid "You cannot add packages in this language to the basket since it already contains posts, packages or strings of another source language!\n\t\t\t\t\tEither submit the current basket and then add the post or delete the posts of differing language in the current basket"
msgstr ""
#
# $select_one_lang_message = __( 'Please select at least one language to translate into.', 'wpml-string-translation' );
#
msgid "Please select at least one language to translate into."
msgstr ""
# 'type' => 'error',
# 'text' => __( 'Please select at least one document to translate.', 'wpml-string-translation' )
# ) );
msgid "Please select at least one document to translate."
msgstr ""
# 'type' => 'update',
# 'text' => sprintf( __( 'Post "%s" will be ignored for %s, because translation is already in progress.',
# 'wpml-string-translation' ), $post_title, $language_name )
msgid "Post \"%s\" will be ignored for %s, because translation is already in progress."
msgstr ""
# 'type' => 'update',
# 'text' => sprintf( __( 'Post "%s" will be ignored for %s, because translation is already waiting for translator.',
# 'wpml-string-translation' ), $post_title, $language_name )
msgid "Post \"%s\" will be ignored for %s, because translation is already waiting for translator."
msgstr ""
#
# $table_title = __( 'Package Management', 'wpml-string-translation' );
# $package_kind_label = __( 'Display packages for this kind:', 'wpml-string-translation' );
msgid "Package Management"
msgstr ""
# $table_title = __( 'Package Management', 'wpml-string-translation' );
# $package_kind_label = __( 'Display packages for this kind:', 'wpml-string-translation' );
# $package_kind_options[ - 1 ] = __( 'Display packages for this kind:', 'wpml-string-translation' );
msgid "Display packages for this kind:"
msgstr ""
#
# <input id="delete_packages" type="button" class="button-primary" value="<?php echo __( 'Delete Selected Packages', 'wpml-string-translation' ) ?>" disabled="disabled"/>
#
msgid "Delete Selected Packages"
msgstr ""
# <span class="spinner"></span>
# <span style="display:none" class="js-delete-confirm-message"><?php echo __( "Are you sure you want to delete these packages?\nTheir strings and translations will be deleted too.", 'wpml-string-translation' ) ?></span>
#
msgid "Are you sure you want to delete these packages?\nTheir strings and translations will be deleted too."
msgstr ""
# </th>
# <th scope="col"><?php echo __( 'Kind', 'wpml-string-translation' ) ?></th>
# <th scope="col"><?php echo __( 'Name', 'wpml-string-translation' ) ?></th>
msgid "Kind"
msgstr ""
# <th scope="col"><?php echo __( 'Name', 'wpml-string-translation' ) ?></th>
# <th scope="col"><?php echo __( 'Info', 'wpml-string-translation' ) ?></th>
# </tr>
msgid "Info"
msgstr ""
# public function render_string_package_status( $string_count, $translation_in_progress, $default_package_language ) {
# $package_statuses[ ] = sprintf( __( 'Contains %s strings', 'wpml-string-translation' ), $string_count );
# if ( $translation_in_progress ) {
msgid "Contains %s strings"
msgstr ""
# if ( $translation_in_progress ) {
# $package_statuses[ ] = '(' . __( 'Translation is in progress', 'wpml-string-translation' ) . ')';
# }
msgid "Translation is in progress"
msgstr ""
# }
# $package_statuses[ ] = __( 'Default package language', 'wpml-string-translation' ) . ': ' . $default_package_language;
#
msgid "Default package language"
msgstr ""
# <td colspan="6" align="center">
# <strong><?php echo __( 'No packages found', 'wpml-string-translation' ) ?></strong>
# </td>
msgid "No packages found"
msgstr ""
# <label for="select_all_package_<?php echo $position; ?>" style="display: none;">
# <?php _e( 'Select All', 'wpml-string-translation' ) ?>
# </label>
msgid "Select All"
msgstr ""
# if ( ! $all_ok ) {
# $response[ 'error' ] = __( 'Some of the strings selected belong to packages. You can only change the language of these strings if all strings in the packages are selected.', 'wpml-string-translation');
# }
msgid "Some of the strings selected belong to packages. You can only change the language of these strings if all strings in the packages are selected."
msgstr ""
# <p>
# <?php printf( __( 'WPML Package Translation is enabled but not effective. It requires <a href="%s">WPML</a>, String Translation and Translation Management in order to work.', 'wpml-string-translation' ), 'http://wpml.org/' ); ?>
# </p>
msgid "WPML Package Translation is enabled but not effective. It requires <a href=\"%s\">WPML</a>, String Translation and Translation Management in order to work."
msgstr ""
# $menu['order'] = 1300;
# $menu['page_title'] = __( 'Packages', 'wpml-string-translation' );
# $menu['menu_title'] = __( 'Packages', 'wpml-string-translation' );
msgid "Packages"
msgstr ""
# $menu['order'] = 800;
# $menu['page_title'] = __( 'String Translation', 'wpml-string-translation' );
# $menu['menu_title'] = __( 'String Translation', 'wpml-string-translation' );
msgid "String Translation"
msgstr ""
# $links[ ] = '<a href="admin.php?page=' . WPML_ST_FOLDER . '/menu/string-translation.php">' .
# __( 'Configure', 'wpml-string-translation' ) . '</a>';
# }
msgid "Configure"
msgstr ""
# <div class="updated">
# <p><?php _e( 'Strings translations updated', 'wpml-string-translation' ); ?></p>
# </div>
msgid "Strings translations updated"
msgstr ""
# $html .= '<tr>';
# $html .= '<td>' . sprintf( __( "Updated %s translation is available", 'wpml-string-translation' ),
# '<strong>' . $l['display_name'] . '</strong>' ) . '</td>';
msgid "Updated %s translation is available"
msgstr ""
# $html .= '<td align="right">';
# $html .= '<a href="' . admin_url( 'admin.php?page=' . WPML_ST_FOLDER . '/menu/string-translation.php&download_mo=' . $language . '&version=' . $version_key ) . '" class="button-secondary">' . __( 'Review changes and update', 'wpml-string-translation' ) . '</a>';
# $html .= '</td>';
msgid "Review changes and update"
msgstr ""
# } else {
# $html .= __( 'No updates found.', 'wpml-string-translation' );
# }
msgid "No updates found."
msgstr ""
# }
# $load_xml_error_message .= sprintf(__('Failed downloading the language information file.', 'wpml-string-translation'), $errors);
# $load_xml_error_message .= '<br/>' . sprintf(__('Errors: %s', 'wpml-string-translation'), $errors);
msgid "Failed downloading the language information file."
msgstr ""
# $load_xml_error_message .= sprintf(__('Failed downloading the language information file.', 'wpml-string-translation'), $errors);
# $load_xml_error_message .= '<br/>' . sprintf(__('Errors: %s', 'wpml-string-translation'), $errors);
# } else {
msgid "Errors: %s"
msgstr ""
# } else {
# $load_xml_error_message .= __('Failed downloading the language information file. Please go back and try a little later.', 'wpml-string-translation');
# }
msgid "Failed downloading the language information file. Please go back and try a little later."
msgstr ""
# echo '<label><input type="checkbox" name="icl_convert" value="1" /> '
# . __('Convert to multilingual widget', 'wpml-string-translation') . '</label>';
# } else {
msgid "Convert to multilingual widget"
msgstr ""
# if (icl_widget_text_convert_to_multilingual($widget, $instance) === TRUE) {
# _e('This widget is converted to multilingual', 'wpml-string-translation');
# }
msgid "This widget is converted to multilingual"
msgstr ""
# if (!isset($_POST['sidebar']) || !isset($sidebars[$_POST['sidebar']])) {
# _e('Converting to multilingual widget failed. No sidebar specified.', 'wpml-string-translation');
# return FALSE;
msgid "Converting to multilingual widget failed. No sidebar specified."
msgstr ""
# if (isset($icl_widgets_text[$icl_widget->number])) {
# _e('Widget is already converted', 'wpml-string-translation');
# return FALSE;
msgid "Widget is already converted"
msgstr ""
# <div class="wrap">
# <h2><?php echo __( 'Admin Texts Translation', 'wpml-string-translation' ) ?></h2>
#
msgid "Admin Texts Translation"
msgstr ""
# <a href="<?php echo admin_url( 'admin.php?page=' . WPML_ST_FOLDER . '/menu/string-translation.php' ); ?>">
# « <?php _e( 'Return to String Translation', 'wpml-string-translation' ); ?>
# </a>
msgid "Return to String Translation"
msgstr ""
#
# $createOption( __( 'All strings', 'wpml-string-translation' ), false );
# $createOption( WPML_ST_String_Statuses::get_status( ICL_TM_COMPLETE ), ICL_TM_COMPLETE );
msgid "All strings"
msgstr ""
# $createOption( WPML_ST_String_Statuses::get_status( ICL_TM_COMPLETE ), ICL_TM_COMPLETE );
# $createOption( __( 'Translation needed', 'wpml-string-translation' ), ICL_TM_NOT_TRANSLATED );
# $createOption( __( 'Waiting for translator', 'wpml-string-translation' ), ICL_TM_WAITING_FOR_TRANSLATOR );
msgid "Translation needed"
msgstr ""
# $createOption( __( 'Waiting for translator', 'wpml-string-translation' ), ICL_TM_WAITING_FOR_TRANSLATOR );
# $createOption( __( 'Partial Translation', 'wpml-string-translation' ), ICL_STRING_TRANSLATION_PARTIAL );
# ?>
msgid "Partial Translation"
msgstr ""
# data-confirm="<?php echo esc_attr__( "Are you sure you want to delete these strings?\nTheir translations will be deleted too.", 'wpml-string-translation' ) ?>"
# data-error="<?php echo __( "WPML could not delete the strings", 'wpml-string-translation' ) ?>"
# disabled="disabled"/>
msgid "WPML could not delete the strings"
msgstr ""
# $hl_color = !empty($string_settings['hl_color']) ? $string_settings['hl_color'] : $hl_color_default;
# $hl_color_label = __( 'Highlight color for strings', 'wpml-string-translation' );
# $color_picker_args = array(
msgid "Highlight color for strings"
msgstr ""
# ?>
# <?php printf(__('Translating users of types: %s', 'wpml-string-translation'), $tustr); ?>
#
msgid "Translating users of types: %s"
msgstr ""
# onclick="location.href='admin.php?page=<?php echo htmlspecialchars( $_GET['page'], ENT_QUOTES ) ?>'"/>
# <input class="js-wpml-btn-add-strings button-primary" type="submit" value="<?php echo esc_attr__( 'Add selected strings', 'wpml-string-translation' ); ?>"/></span><span class="spinner" style="float: left"></span>
# </p>
msgid "Add selected strings"
msgstr ""
# <input type="button" class="button button-secondary" id="icl_st_delete_selected"
# value="<?php echo esc_attr__( 'Delete selected strings', 'wpml-string-translation' ) ?>"
# data-confirm="<?php echo esc_attr__( "Are you sure you want to delete these strings?\nTheir translations will be deleted too.", 'wpml-string-translation' ) ?>"
msgid "Delete selected strings"
msgstr ""
# value="<?php echo esc_attr__( 'Delete selected strings', 'wpml-string-translation' ) ?>"
# data-confirm="<?php echo esc_attr__( "Are you sure you want to delete these strings?\nTheir translations will be deleted too.", 'wpml-string-translation' ) ?>"
# data-error="<?php echo __( "WPML could not delete the strings", 'wpml-string-translation' ) ?>"
msgid "Are you sure you want to delete these strings?\nTheir translations will be deleted too."
msgstr ""
# <div id="dashboard_wpml_stsel_1" class="postbox">
# <div class="handlediv" title="<?php echo esc_attr__( 'Click to toggle', 'wpml-string-translation' ); ?>">
# <br/>
msgid "Click to toggle"
msgstr ""
# <p class="wpml-st-excluded-info"
# data-all-included="<?php echo esc_attr__('Strings from all text domains will be auto-registered', 'wpml-string-translation') ?>"
# data-all-excluded="<?php echo esc_attr__('Strings from all text domains are excluded', 'wpml-string-translation') ?>"
msgid "Strings from all text domains will be auto-registered"
msgstr ""
# data-all-included="<?php echo esc_attr__('Strings from all text domains will be auto-registered', 'wpml-string-translation') ?>"
# data-all-excluded="<?php echo esc_attr__('Strings from all text domains are excluded', 'wpml-string-translation') ?>"
# data-excluded-preview="<?php echo esc_attr__('You excluded: ', 'wpml-string-translation') ?>"
msgid "Strings from all text domains are excluded"
msgstr ""
# data-all-excluded="<?php echo esc_attr__('Strings from all text domains are excluded', 'wpml-string-translation') ?>"
# data-excluded-preview="<?php echo esc_attr__('You excluded: ', 'wpml-string-translation') ?>"
# data-included-preview="<?php echo esc_attr__('You included: ', 'wpml-string-translation') ?>"
msgid "You excluded: "
msgstr ""
# data-excluded-preview="<?php echo esc_attr__('You excluded: ', 'wpml-string-translation') ?>"
# data-included-preview="<?php echo esc_attr__('You included: ', 'wpml-string-translation') ?>"
# data-preview-suffix="<?php echo esc_attr__('and others', 'wpml-string-translation') ?>"
msgid "You included: "
msgstr ""
# data-included-preview="<?php echo esc_attr__('You included: ', 'wpml-string-translation') ?>"
# data-preview-suffix="<?php echo esc_attr__('and others', 'wpml-string-translation') ?>"
# >
msgid "and others"
msgstr ""
# class="button-secondary js-wpml-autoregister-edit-contexts"
# value="<?php echo esc_attr__('Edit', 'wpml-string-translation')?>"
# />
msgid "Edit"
msgstr ""
# style="display:none;"
# title="<?php echo esc_attr__('Auto-register strings from these text domains', 'wpml-string-translation');?>"
# >
msgid "Auto-register strings from these text domains"
msgstr ""
# <div id="wpml-st-filter-and-select-all-box">
# <input type="input" name="search" placeholder="<?php echo esc_attr__('Search', 'wpml-string-translation')?>" />
#
msgid "Search"
msgstr ""
# <p>
# <input class="button" name="icl_po_upload" id="icl_po_upload" type="submit" value="<?php echo esc_attr__( 'Submit', 'wpml-string-translation' ) ?>"/>
# <span id="icl_st_err_domain" class="icl_error_text" style="display:none"><?php echo esc_html__( 'Please enter a domain!', 'wpml-string-translation' ) ?></span>
msgid "Submit"
msgstr ""
#
# <h2><?php echo esc_html__( 'String translation', 'wpml-string-translation' ) ?></h2>
#
msgid "String translation"
msgstr ""
#
# <p><?php printf( esc_html__( "These are the strings that we found in your .po file. Please carefully review them. Then, click on the 'add' or 'cancel' buttons at the %sbottom of this screen%s. You can exclude individual strings by clearing the check boxes next to them.", 'wpml-string-translation' ), '<a href="#add_po_strings_confirm">', '</a>' ); ?></p>
# <form method="post" id="wpml_add_strings" action="<?php echo admin_url("admin.php?page=" . WPML_ST_FOLDER . "/menu/string-translation.php");?>">
msgid "These are the strings that we found in your .po file. Please carefully review them. Then, click on the 'add' or 'cancel' buttons at the %sbottom of this screen%s. You can exclude individual strings by clearing the check boxes next to them."
msgstr ""
# <?php if($str['name'] != md5($str['string'])): ?>
# <i><?php printf( esc_html__( 'Name: %s', 'wpml-string-translation' ), $str['name'] ) ?></i><br/>
# <?php endif ?>
msgid "Name: %s"
msgstr ""
# <p style="line-height:220%;">
# <?php echo esc_html__( 'Display:', 'wpml-string-translation' ); ?>
# <select name="icl_st_filter_status">
msgid "Display:"
msgstr ""
# <span style="white-space:nowrap">
# <?php echo esc_html__( 'In domain:', 'wpml-string-translation' ) ?>
# <select name="icl_st_filter_context">
msgid "In domain:"
msgstr ""
# <option value=""
# <?php if ( $context_filter === false ): ?>selected="selected"<?php endif; ?>><?php echo esc_html__( 'All domains', 'wpml-string-translation' ) ?></option>
# <?php foreach ( $icl_contexts as $v ): ?>
msgid "All domains"
msgstr ""
# <span style="white-space:nowrap">
# <?php echo esc_html__( 'With Priority:', 'wpml-string-translation' ) ?>
# <select name="icl-st-filter-translation-priority">
msgid "With Priority:"
msgstr ""
# <label>
# <?php echo esc_html__( 'Search for:', 'wpml-string-translation' ) ?>
# <input type="text" id="icl_st_filter_search" value="<?php echo $search_filter ?>" />
msgid "Search for:"
msgstr ""
# <input type="checkbox" id="icl_st_filter_search_em" value="1" <?php if($exact_match):?>checked="checked"<?php endif;?> />
# <?php echo esc_html__( 'Exact match', 'wpml-string-translation' ) ?>
# </label>
msgid "Exact match"
msgstr ""
# />
# <?php echo esc_html__( 'Include translations', 'wpml-string-translation' ) ?>
# </label>
msgid "Include translations"
msgstr ""
# <span style="white-space:nowrap">
# <?php printf( esc_html__( 'Showing only strings that contain %s', 'wpml-string-translation' ), '<i>' . esc_html( $search_filter ) . '</i>' ); ?>
# <input class="button" type="button" value="<?php esc_attr_e( 'Exit search', 'wpml-string-translation' ) ?>" id="icl_st_filter_search_remove"/>
msgid "Showing only strings that contain %s"
msgstr ""
# <div class="tablenav-pages">
# <a href="<?php echo esc_url( $url_show_paginated_results ); ?>"><?php printf( esc_html__( 'Display %d results per page', 'wpml-string-translation' ), $sitepress_settings['st']['strings_per_page'] ); ?></a>
# </div>
msgid "Display %d results per page"
msgstr ""
# if ( $page_links ) {
# $page_links_text = sprintf( '<span class="displaying-num">' . esc_html__( 'Displaying %s–%s of %s', 'wpml-string-translation' ) . '</span>%s',
# number_format_i18n( ( $paged - 1 )*$wp_query->query_vars['posts_per_page'] + 1 ),
msgid "Displaying %s–%s of %s"
msgstr ""
# <?php
# echo esc_html__( 'Strings per page:', 'wpml-string-translation' );
#
msgid "Strings per page:"
msgstr ""
# </select>
# <a href="<?php echo esc_url( $url_show_all_results ); ?>"><?php echo esc_html__( 'Display all results', 'wpml-string-translation' ); ?></a>
# </div>
msgid "Display all results"
msgstr ""
# <div id="wpml-st-package-incomplete"
# style="display:none;color:red;"><?php echo esc_html__( "You have selected strings belonging to a package. Please select all strings from the affected package or unselect these strings.", 'wpml-string-translation' ) ?></div>
# <input type="button" class="button button-secondary" id="icl_st_delete_selected"
msgid "You have selected strings belonging to a package. Please select all strings from the affected package or unselect these strings."
msgstr ""
# <h3 class="hndle">
# <span><?php echo esc_html__( 'Track where strings appear on the site', 'wpml-string-translation' ) ?></span>
# </h3>
msgid "Track where strings appear on the site"
msgstr ""
# <div class="inside">
# <p class="sub"><?php echo esc_html__( "WPML can keep track of where strings are used on the public pages. Activating this feature will enable the 'view in page' functionality and make translation easier.", 'wpml-string-translation' ) ?></p>
# <form id="icl_st_track_strings" name="icl_st_track_strings" action="">
msgid "WPML can keep track of where strings are used on the public pages. Activating this feature will enable the 'view in page' functionality and make translation easier."
msgstr ""
# <h3 class="hndle">
# <span><?php echo esc_html__('Auto register strings for translation', 'wpml-string-translation')?></span>
# </h3>
msgid "Auto register strings for translation"
msgstr ""
# >
# <?php echo esc_html__( 'Look for strings while pages are rendered', 'wpml-string-translation' )?>
# </label>
msgid "Look for strings while pages are rendered"
msgstr ""
# <input type="checkbox" name="select_all" <?php checked( false, $has_excluded); ?> />
# <span><?php echo esc_html__( 'Select all', 'wpml-string-translation' )?></span>
# </p>
msgid "Select all"
msgstr ""
# <h3 class="hndle">
# <span><?php echo esc_html__( 'Import / export .po', 'wpml-string-translation' ) ?></span>
# </h3>
msgid "Import / export .po"
msgstr ""
# <div class="inside">
# <h5><?php echo esc_html__( 'Import', 'wpml-string-translation' ) ?></h5>
# <form id="icl_st_po_form" action="" name="icl_st_po_form" method="post" enctype="multipart/form-data">
msgid "Import"
msgstr ""
# <p class="sub">
# <label for="icl_po_file"><?php echo esc_html__( '.po file:', 'wpml-string-translation' ) ?></label>
# <input id="icl_po_file" class="button primary" type="file" name="icl_po_file" />
msgid ".po file:"
msgstr ""
# <input type="checkbox" name="icl_st_po_translations" id="icl_st_po_translations" />
# <label for="icl_st_po_translations"><?php echo esc_html__( 'Also create translations according to the .po file', 'wpml-string-translation' ) ?></label>
# <select name="icl_st_po_language" id="icl_st_po_language" style="display:none">
msgid "Also create translations according to the .po file"
msgstr ""
# <p class="sub" style="line-height:2.3em" >
# <?php echo esc_html__( 'Select what the strings are for:', 'wpml-string-translation' ); ?>
# <?php if(!empty($available_contexts)): ?>
msgid "Select what the strings are for:"
msgstr ""
# <a href="#"
# onclick="var __nxt = jQuery(this).parent().next(); jQuery(this).prev().val(''); jQuery(this).parent().fadeOut('fast',function(){__nxt.fadeIn('fast')});return false;"><?php echo esc_html__( 'new', 'wpml-string-translation' ) ?></a>
# </span>
msgid "new"
msgstr ""
# <a href="#"
# onclick="var __prv = jQuery(this).parent().prev(); jQuery(this).prev().val(''); jQuery(this).parent().fadeOut('fast',function(){__prv.fadeIn('fast')});return false;"><?php echo esc_html__( 'select from existing', 'wpml-string-translation' ) ?></a>
# <?php endif ?>
msgid "select from existing"
msgstr ""
# <input class="button" name="icl_po_upload" id="icl_po_upload" type="submit" value="<?php echo esc_attr__( 'Submit', 'wpml-string-translation' ) ?>"/>
# <span id="icl_st_err_domain" class="icl_error_text" style="display:none"><?php echo esc_html__( 'Please enter a domain!', 'wpml-string-translation' ) ?></span>
# <span id="icl_st_err_po" class="icl_error_text" style="display:none"><?php echo esc_html__( 'Please select the .po file to upload!', 'wpml-string-translation' ) ?></span>
msgid "Please enter a domain!"
msgstr ""
# <span id="icl_st_err_domain" class="icl_error_text" style="display:none"><?php echo esc_html__( 'Please enter a domain!', 'wpml-string-translation' ) ?></span>
# <span id="icl_st_err_po" class="icl_error_text" style="display:none"><?php echo esc_html__( 'Please select the .po file to upload!', 'wpml-string-translation' ) ?></span>
# </p>
msgid "Please select the .po file to upload!"
msgstr ""
# <?php if(!empty($icl_contexts)):?>
# <h5><?php echo esc_html__( 'Export strings into .po/.pot file', 'wpml-string-translation' ) ?></h5>
# <?php
msgid "Export strings into .po/.pot file"
msgstr ""
# <div class="below-h2 error">
# <?php echo esc_html__( 'PO export may be glitchy. We are working to fix it.', 'wpml-string-translation' ); ?>
# </div>
msgid "PO export may be glitchy. We are working to fix it."
msgstr ""
# <p>
# <?php echo esc_html__( 'Select domain:', 'wpml-string-translation' ) ?>
# <select name="icl_st_e_context" id="icl_st_e_context">
msgid "Select domain:"
msgstr ""
# <input type="checkbox" name="icl_st_pe_translations" id="icl_st_pe_translations" checked="checked" value="1" onchange="if(jQuery(this).attr('checked'))jQuery('#icl_st_e_language').fadeIn('fast'); else jQuery('#icl_st_e_language').fadeOut('fast')" />
# <label for="icl_st_pe_translations"><?php echo esc_html__( 'Also include translations', 'wpml-string-translation' ) ?></label>
# <select name="icl_st_e_language" id="icl_st_e_language">
msgid "Also include translations"
msgstr ""
# <h3 class="hndle">
# <span><?php echo esc_html__( 'More options', 'wpml-string-translation' ) ?></span>
# </h3>
msgid "More options"
msgstr ""
# }else{
# $tustr = esc_html__( 'none', 'wpml-string-translation' );
# }
msgid "none"
msgstr ""
# $tustr .= '</span>';
# $tustr .= ' <a href="#" onclick="jQuery(\'#icl_st_tusers\').slideToggle();return false;">' . esc_html__( 'edit', 'wpml-string-translation' ) . '</a>';
#
msgid "edit"
msgstr ""
# <?php printf( esc_html__( 'Showing only strings that contain %s', 'wpml-string-translation' ), '<i>' . esc_html( $search_filter ) . '</i>' ); ?>
# <input class="button" type="button" value="<?php esc_attr_e( 'Exit search', 'wpml-string-translation' ) ?>" id="icl_st_filter_search_remove"/>
# </span>
msgid "Exit search"
msgstr ""
# <select name="icl-st-filter-translation-priority">
# <option value=""><?php esc_html_e( 'All Translation Priorities', 'wpml-string-translation' ) ?></option>
# <?php
msgid "All Translation Priorities"
msgstr ""
# <?php if( ! empty( $icl_contexts ) ): ?>
# <p><a href="#" id="wpml-language-of-domains-link"><?php esc_html_e( 'Languages of domains', 'wpml-string-translation' ); ?></a></p>
# <?php endif; ?>
msgid "Languages of domains"
msgstr ""
# </p>
# <p><a href="https://wpml.org/faq/prevent-performance-issues-with-wpml/?utm_source=wpmlplugin&utm_campaign=product&utm_medium=plugin&utm_term=performance" target="_blank"><?php esc_html_e( 'Performance considerations', 'wpml-string-translation' ) ?> »</a></p>
# </li>
msgid "Performance considerations"
msgstr ""
#
# <a href="admin.php?page=<?php echo WPML_ST_FOLDER ?>/menu/string-translation.php&trop=1"><?php esc_html_e( 'Translate texts in admin screens »', 'wpml-string-translation' ); ?></a>
#
msgid "Translate texts in admin screens »"
msgstr ""
#
# $anchor_text = esc_attr_x( 'String Tracking', 'String Tracking warning: sentence 1, anchor text', 'wpml-string-translation' );
# $message_sentences[] = esc_html_x( '%s allows you to see where strings come from, so you can translate them accurately.', 'String Tracking warning: sentence 1', 'wpml-string-translation' );
msgctxt "String Tracking warning: sentence 1, anchor text"
msgid "String Tracking"
msgstr ""
# $anchor_text = esc_attr_x( 'String Tracking', 'String Tracking warning: sentence 1, anchor text', 'wpml-string-translation' );
# $message_sentences[] = esc_html_x( '%s allows you to see where strings come from, so you can translate them accurately.', 'String Tracking warning: sentence 1', 'wpml-string-translation' );
# $message_sentences[] = esc_html_x( 'It needs to parse the PHP source files and the output HTML.', 'String Tracking warning: sentence 2', 'wpml-string-translation' );
msgctxt "String Tracking warning: sentence 1"
msgid "%s allows you to see where strings come from, so you can translate them accurately."
msgstr ""
# $message_sentences[] = esc_html_x( '%s allows you to see where strings come from, so you can translate them accurately.', 'String Tracking warning: sentence 1', 'wpml-string-translation' );
# $message_sentences[] = esc_html_x( 'It needs to parse the PHP source files and the output HTML.', 'String Tracking warning: sentence 2', 'wpml-string-translation' );
# $message_sentences[] = esc_html_x( 'This feature is CPU-intensive and should only be used while you are developing sites.', 'String Tracking warning: sentence 3', 'wpml-string-translation' );
msgctxt "String Tracking warning: sentence 2"
msgid "It needs to parse the PHP source files and the output HTML."
msgstr ""
# $message_sentences[] = esc_html_x( 'It needs to parse the PHP source files and the output HTML.', 'String Tracking warning: sentence 2', 'wpml-string-translation' );
# $message_sentences[] = esc_html_x( 'This feature is CPU-intensive and should only be used while you are developing sites.', 'String Tracking warning: sentence 3', 'wpml-string-translation' );
# $message_sentences[] = esc_html_x( 'Remember to turn it off before going to production, to avoid performance problems.', 'String Tracking warning: sentence 4', 'wpml-string-translation' );
msgctxt "String Tracking warning: sentence 3"
msgid "This feature is CPU-intensive and should only be used while you are developing sites."
msgstr ""
# $message_sentences[] = esc_html_x( 'This feature is CPU-intensive and should only be used while you are developing sites.', 'String Tracking warning: sentence 3', 'wpml-string-translation' );
# $message_sentences[] = esc_html_x( 'Remember to turn it off before going to production, to avoid performance problems.', 'String Tracking warning: sentence 4', 'wpml-string-translation' );
#
msgctxt "String Tracking warning: sentence 4"
msgid "Remember to turn it off before going to production, to avoid performance problems."
msgstr ""
# <div class="wpml-section-header">
# <h3><?php esc_html_e( 'Slug translations', 'wpml-string-translation' ) ?></h3>
# </div>
msgid "Slug translations"
msgstr ""
# <input type="checkbox" name="icl_slug_translation_on" value="1" <?php checked( 1, $slug_translation_settings->is_enabled(), true ) ?> />
# <?php esc_html_e( 'Translate custom post and taxonomy base slugs (via WPML String Translation).', 'wpml-string-translation' ) ?>
# </label>
msgid "Translate custom post and taxonomy base slugs (via WPML String Translation)."
msgstr ""
# <span class="icl_ajx_response" id="icl_ajx_response_sgtr"></span>
# <input type="submit" class="button-primary" value="<?php esc_html_e( 'Save', 'wpml-string-translation' )?>" />
# </p>
msgid "Save"
msgstr ""
# <div class="icl_cyan_box">
# <?php printf(__('This update includes %d new strings and %d updated strings. You can review the strings below. Then, go to the <a%s>bottom of this page</a> and click on the Proceed button.', 'wpml-string-translation'),
# isset($translations['new']) ? count($translations['new']) : 0,
msgid "This update includes %d new strings and %d updated strings. You can review the strings below. Then, go to the <a%s>bottom of this page</a> and click on the Proceed button."
msgstr ""
# <p class="submit">
# <input type="submit" class="button-primary" value="<?php esc_attr_e('Proceed', 'wpml-string-translation') ?>" />
# <a class="button-secondary" href="<?php echo admin_url('admin.php?page=' . ICL_PLUGIN_FOLDER . '/menu/theme-localization.php') ?>"><?php _e('Cancel', 'wpml-string-translation') ?></a>
msgid "Proceed"
msgstr ""