wpml-translation-management.po
217 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
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
# 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"
# public function add_items( $tab_items ) {
# $tab_items['custom-xml-config']['caption'] = __( 'Custom XML Configuration', 'wpml-translation-management' );
# $tab_items['custom-xml-config']['callback'] = array( $this, 'build_content' );
msgid "Custom XML Configuration"
msgstr ""
#
# $messageText = sprintf( __( 'To translate your content, go to %1$s. Or, go to the %2$s tab to automatically translate your content in bulk.', 'wpml-translation-management' ), $translationsLink, $automaticTranslationTabLink );
#
msgid "To translate your content, go to %1$s. Or, go to the %2$s tab to automatically translate your content in bulk."
msgstr ""
# }
# $translationsText = esc_html__(
# 'WPML → Translations',
msgid "WPML → Translations"
msgstr ""
#
# $automaticTranslationTabText = esc_html__(
# 'Automatic Translation',
msgid "Automatic Translation"
msgstr ""
# wp_send_json_error(
# __(
# 'You have attempted to submit data in a not legit way.',
msgid "You have attempted to submit data in a not legit way."
msgstr ""
# return array(
# 'id' => __( 'ID', 'wpml-translation-management' ),
# 'title' => __( 'Title', 'wpml-translation-management' ),
msgid "ID"
msgstr ""
# 'id' => __( 'ID', 'wpml-translation-management' ),
# 'title' => __( 'Title', 'wpml-translation-management' ),
# 'languages' => __( 'Languages', 'wpml-translation-management' ),
msgid "Title"
msgstr ""
# 'title' => __( 'Title', 'wpml-translation-management' ),
# 'languages' => __( 'Languages', 'wpml-translation-management' ),
# 'batch_name' => __( 'Batch name', 'wpml-translation-management' ),
msgid "Languages"
msgstr ""
# 'languages' => __( 'Languages', 'wpml-translation-management' ),
# 'batch_name' => __( 'Batch name', 'wpml-translation-management' ),
# 'translator' => __( 'Translated by', 'wpml-translation-management' ),
msgid "Batch name"
msgstr ""
# 'batch_name' => __( 'Batch name', 'wpml-translation-management' ),
# 'translator' => __( 'Translated by', 'wpml-translation-management' ),
# 'sent_date' => __( 'Sent on', 'wpml-translation-management' ),
msgid "Translated by"
msgstr ""
# 'translator' => __( 'Translated by', 'wpml-translation-management' ),
# 'sent_date' => __( 'Sent on', 'wpml-translation-management' ),
# 'deadline' => __( 'Deadline', 'wpml-translation-management' ),
msgid "Sent on"
msgstr ""
# 'sent_date' => __( 'Sent on', 'wpml-translation-management' ),
# 'deadline' => __( 'Deadline', 'wpml-translation-management' ),
# 'status' => __( 'Status', 'wpml-translation-management' ),
msgid "Deadline"
msgstr ""
# 'deadline' => __( 'Deadline', 'wpml-translation-management' ),
# 'status' => __( 'Status', 'wpml-translation-management' ),
# );
msgid "Status"
msgstr ""
# 'batch_name' => __( 'Batch name', 'wpml-translation-management' ),
# 'language' => __( 'Language', 'wpml-translation-management' ),
# 'sent_date' => __( 'Sent on', 'wpml-translation-management' ),
msgid "Language"
msgstr ""
# return array(
# 'name' => __( 'String package job', 'wpml-translation-management' ),
# 'url' => null,
msgid "String package job"
msgstr ""
# } else {
# $name = __( 'Local', 'wpml-translation-management' );
# }
msgid "Local"
msgstr ""
# return [
# 'header' => __( 'Cannot Connect to the Internet', 'wpml-translation-management' ),
# 'description' => sprintf( $description, self::getSupportLink(), $uuid ),
msgid "Cannot Connect to the Internet"
msgstr ""
# return [
# 'header' => __( 'WPML’s Advanced Translation Editor is not working', 'wpml-translation-management' ),
# 'description' => self::invalidResponseDescription( $uuid ),
msgid "WPML’s Advanced Translation Editor is not working"
msgstr ""
# public static function respondedWithError() {
# return __( "WPML's Advanced Translation Editor responded with an error", 'wpml-translation-management' );
# }
msgid "WPML's Advanced Translation Editor responded with an error"
msgstr ""
# public static function serverUnavailableHeader() {
# return __( 'WPML’s Advanced Translation Editor is not responding', 'wpml-translation-management' );
# }
msgid "WPML’s Advanced Translation Editor is not responding"
msgstr ""
# return '<a href="https://wpml.org/forums/forum/english-support/" target="_blank" rel="noreferrer">'
# . __( 'WPML support', 'wpml-translation-management' ) . '</a>';
# }
msgid "WPML support"
msgstr ""
# public static function bodyWithoutRequiredFields() {
# return __( 'The body does not contain the required fields', 'wpml-translation-management' );
# }
msgid "The body does not contain the required fields"
msgstr ""
# public static function uuidAlreadyExists() {
# return __( 'UUID already exists', 'wpml-translation-management' );
# }
msgid "UUID already exists"
msgstr ""
# public static function offline( $uuid ) {
# $description = _x( 'WPML needs an Internet connection to translate your site’s content. It seems that your server is not allowing external connections, or your network is temporarily down.', 'part1', 'wpml-translation-management' );
# $description .= _x( 'If this is the first time you’re seeing this message, please wait a minute and reload the page. If the problem persists, contact %1$s for help and mention that your website ID is %2$s.', 'part2', 'wpml-translation-management' );
msgctxt "part1"
msgid "WPML needs an Internet connection to translate your site’s content. It seems that your server is not allowing external connections, or your network is temporarily down."
msgstr ""
# $description = _x( 'WPML needs an Internet connection to translate your site’s content. It seems that your server is not allowing external connections, or your network is temporarily down.', 'part1', 'wpml-translation-management' );
# $description .= _x( 'If this is the first time you’re seeing this message, please wait a minute and reload the page. If the problem persists, contact %1$s for help and mention that your website ID is %2$s.', 'part2', 'wpml-translation-management' );
#
msgctxt "part2"
msgid "If this is the first time you’re seeing this message, please wait a minute and reload the page. If the problem persists, contact %1$s for help and mention that your website ID is %2$s."
msgstr ""
# public static function invalidResponseDescription( $uuid ) {
# $description = _x( 'WPML cannot connect to the translation editor. If this is the first time you’re seeing this message, please wait a minute and reload the page.', 'part1', 'wpml-translation-management' );
# $description .= _x( 'If the problem persists, contact %1$s for help and mention that your website ID is %2$s.', 'part2', 'wpml-translation-management' );
msgctxt "part1"
msgid "WPML cannot connect to the translation editor. If this is the first time you’re seeing this message, please wait a minute and reload the page."
msgstr ""
# $description = _x( 'WPML cannot connect to the translation editor. If this is the first time you’re seeing this message, please wait a minute and reload the page.', 'part1', 'wpml-translation-management' );
# $description .= _x( 'If the problem persists, contact %1$s for help and mention that your website ID is %2$s.', 'part2', 'wpml-translation-management' );
#
msgctxt "part2"
msgid "If the problem persists, contact %1$s for help and mention that your website ID is %2$s."
msgstr ""
# $entry->eventType = EventsTypes::SERVER_ATE;
# $entry->description = __( 'Saving of Language mapping to ATE failed', 'wpml-translation-management' );
# $entry->extraData = $data;
msgid "Saving of Language mapping to ATE failed"
msgstr ""
# sprintf(
# __( 'There was a problem communicating with ATE: %s ', 'wpml-translation-management' ),
# '(<i>' . $message . '</i>)'
msgid "There was a problem communicating with ATE: %s "
msgstr ""
#
# $message = __( '%1$s jobs added to the Advanced Translation Editor.', 'wpml-translation-management' );
# $this->add_message( 'updated', sprintf( $message, count( $created_jobs ) ), 'wpml_tm_ate_create_job' );
msgid "%1$s jobs added to the Advanced Translation Editor."
msgstr ""
# 'error',
# __(
# 'Jobs could not be created in Advanced Translation Editor. Please try again or contact the WPML support for help.',
msgid "Jobs could not be created in Advanced Translation Editor. Please try again or contact the WPML support for help."
msgstr ""
# $message = '<p>'
# . __( 'Advanced Translation Editor error:', 'wpml-translation-management' )
# . '</p><p>'
msgid "Advanced Translation Editor error:"
msgstr ""
# $resend_link = '<a href="' . $mcsetup_page . '">'
# . esc_html__( 'Resend that email', 'wpml-translation-management' )
# . '</a>';
msgid "Resend that email"
msgstr ""
# $message .= '<p>'
# . esc_html__( 'WPML cannot send these documents to translation because the Advanced Translation Editor is not fully set-up yet.', 'wpml-translation-management' )
# . '</p><p>'
msgid "WPML cannot send these documents to translation because the Advanced Translation Editor is not fully set-up yet."
msgstr ""
# . '</p><p>'
# . esc_html__( 'Please open the confirmation email that you received and click on the link inside it to confirm your email.', 'wpml-translation-management' )
# . '</p><p>'
msgid "Please open the confirmation email that you received and click on the link inside it to confirm your email."
msgstr ""
# public function classic_editor_message() {
# $main_message = esc_html__( "This site can use WPML's Advanced Translation Editor, but you did not receive permission to use it. You are still translating with WPML's classic translation editor. Please ask your site's Translation Manager to enable the Advanced Translation Editor for you.", 'wpml-translation-management' );
# $learn_more = esc_html__( "Learn more about WPML's Advanced Translation Editor", 'wpml-translation-management' );
msgid "This site can use WPML's Advanced Translation Editor, but you did not receive permission to use it. You are still translating with WPML's classic translation editor. Please ask your site's Translation Manager to enable the Advanced Translation Editor for you."
msgstr ""
# $main_message = esc_html__( "This site can use WPML's Advanced Translation Editor, but you did not receive permission to use it. You are still translating with WPML's classic translation editor. Please ask your site's Translation Manager to enable the Advanced Translation Editor for you.", 'wpml-translation-management' );
# $learn_more = esc_html__( "Learn more about WPML's Advanced Translation Editor", 'wpml-translation-management' );
# $short_message = esc_html__( 'Advanced Translation Editor is disabled.', 'wpml-translation-management' );
msgid "Learn more about WPML's Advanced Translation Editor"
msgstr ""
# $learn_more = esc_html__( "Learn more about WPML's Advanced Translation Editor", 'wpml-translation-management' );
# $short_message = esc_html__( 'Advanced Translation Editor is disabled.', 'wpml-translation-management' );
# $more = esc_html__( 'More', 'wpml-translation-management' );
msgid "Advanced Translation Editor is disabled."
msgstr ""
# $short_message = esc_html__( 'Advanced Translation Editor is disabled.', 'wpml-translation-management' );
# $more = esc_html__( 'More', 'wpml-translation-management' );
# $request_activation = esc_html__( 'Request activation from', 'wpml-translation-management' );
msgid "More"
msgstr ""
# $more = esc_html__( 'More', 'wpml-translation-management' );
# $request_activation = esc_html__( 'Request activation from', 'wpml-translation-management' );
# $link = DocPage::aboutATE();
msgid "Request activation from"
msgstr ""
# $message = sprintf(
# esc_html__( 'An email has been sent to %s', 'wpml-translation-management' ),
# $manager->user_login
msgid "An email has been sent to %s"
msgstr ""
# $message = sprintf(
# esc_html__( 'Sorry, the email could not be sent to %s for an unknown reason.', 'wpml-translation-management' ),
# $manager->user_login
msgid "Sorry, the email could not be sent to %s for an unknown reason."
msgstr ""
# <a class="js-minimize otgs-notice-toggle">
# <?php esc_html_e( 'Minimize', 'wpml-translation-management' ); ?>
# </a>
msgid "Minimize"
msgstr ""
# WPML_PLUGIN_FOLDER . '/menu/support.php',
# __( 'Advanced Translation Editor Error Logs', 'wpml-translation-management' ),
# 'ATE logs',
msgid "Advanced Translation Editor Error Logs"
msgstr ""
# <a href="<?php echo admin_url( 'admin.php?page=' . Hooks::SUBMENU_HANDLE ); ?>">
# <?php echo sprintf( esc_html__( 'Error Logs (%d)', 'wpml-translation-management' ), $this->logs->count() ); ?>
# </a>
msgid "Error Logs (%d)"
msgstr ""
# <h2 id="ate-log">
# <?php esc_html_e( 'Advanced Translation Editor', 'wpml-translation-management' ); ?>
# </h2>
msgid "Advanced Translation Editor"
msgstr ""
# <th class="date">
# <span><?php esc_html_e( 'Date', 'wpml-translation-management' ); ?></span>
# </th>
msgid "Date"
msgstr ""
# <th class="event">
# <span><?php esc_html_e( 'Event', 'wpml-translation-management' ); ?></span>
# </th>
msgid "Event"
msgstr ""
# <th class="description">
# <span><?php esc_html_e( 'Description', 'wpml-translation-management' ); ?></span>
# </th>
msgid "Description"
msgstr ""
# <th class="wpml-job-id">
# <span><?php esc_html_e( 'WPML Job ID', 'wpml-translation-management' ); ?></span>
# </th>
msgid "WPML Job ID"
msgstr ""
# <th class="ate-job-id">
# <span><?php esc_html_e( 'ATE Job ID', 'wpml-translation-management' ); ?></span>
# </th>
msgid "ATE Job ID"
msgstr ""
# <th class="extra-data">
# <span><?php esc_html_e( 'Extra data', 'wpml-translation-management' ); ?></span>
# </th>
msgid "Extra data"
msgstr ""
# <td colspan="6" class="title column-title has-row-actions column-primary">
# <?php esc_html_e( 'No entries', 'wpml-translation-management' ); ?>
# </td>
msgid "No entries"
msgstr ""
# if ( Relation::propEq( 'reviewCompleted', 'inWPML', $_GET ) ) {
# $text = esc_html__( "You've completed reviewing everything. WPML will let you know when there's new content to review.", 'wpml-translation-management' );
# wpml_get_admin_notices()->add_notice(
msgid "You've completed reviewing everything. WPML will let you know when there's new content to review."
msgstr ""
# <svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 0C10.8 0 0 10.8 0 24C0 37.2 10.8 48 24 48C37.2 48 48 37.2 48 24C48 10.8 37.2 0 24 0ZM24 43.5C13.2 43.5 4.5 34.8 4.5 24C4.5 13.2 13.2 4.5 24 4.5C34.8 4.5 43.5 13.2 43.5 24C43.5 34.8 34.8 43.5 24 43.5Z" fill="url(#paint0_linear)"/><path d="M24 10.2C22.5 10.2 21 11.4 21 13.2C21 15 22.2 16.2 24 16.2C25.8 16.2 27 15 27 13.2C27 11.4 25.5 10.2 24 10.2ZM24 20.4C22.8 20.4 21.9 21.3 21.9 22.5V35.7C21.9 36.9 22.8 37.8 24 37.8C25.2 37.8 26.1 36.9 26.1 35.7V22.5C26.1 21.3 25.2 20.4 24 20.4Z" fill="url(#paint1_linear)"/><defs><linearGradient id="paint0_linear" x1="38.6667" y1="6.66666" x2="8" y2="48" gradientUnits="userSpaceOnUse"><stop stop-color="#27AD95"/><stop offset="1" stop-color="#2782AD"/></linearGradient><linearGradient id="paint1_linear" x1="38.6667" y1="6.66666" x2="8" y2="48" gradientUnits="userSpaceOnUse"><stop stop-color="#27AD95"/><stop offset="1" stop-color="#2782AD"/></linearGradient></defs></svg>
# <h2>'. esc_html__( 'Preview is not available', 'wpml-translation-management' ) .'</h2>
# <p>'. sprintf(esc_html__( 'Click %sEdit Translation%s in the toolbar above to review your translation in the editor.', 'wpml-translation-management' ), '<strong>', '</strong>') .'</p>
msgid "Preview is not available"
msgstr ""
# <h2>'. esc_html__( 'Preview is not available', 'wpml-translation-management' ) .'</h2>
# <p>'. sprintf(esc_html__( 'Click %sEdit Translation%s in the toolbar above to review your translation in the editor.', 'wpml-translation-management' ), '<strong>', '</strong>') .'</p>
# </div>
msgid "Click %sEdit Translation%s in the toolbar above to review your translation in the editor."
msgstr ""
# self::getLanguageName( $langProp ),
# Fns::unary( partial( 'sprintf', __( 'Review %s language', 'wpml-translation-management' ) ) )
# );
msgid "Review %s language"
msgstr ""
# self::getLanguageName( $langProp ),
# Fns::unary( partial( 'sprintf', __( 'Edit %s translation', 'wpml-translation-management' ) ) )
# );
msgid "Edit %s translation"
msgstr ""
# $content = $isTranslationManager
# ? __(
# "There is an issue with automatic translation that needs your attention.",
msgid "There is an issue with automatic translation that needs your attention."
msgstr ""
# )
# : __(
# " There is an issue with automatic translation that needs attention from a translation manager.",
msgid " There is an issue with automatic translation that needs attention from a translation manager."
msgstr ""
#
# $fix = __( 'Fix it to continue translating automatically', 'wpml-translation-management' );
#
msgid "Fix it to continue translating automatically"
msgstr ""
#
# $translate = __( 'Translate content myself', 'wpml-translation-management' );
#
msgid "Translate content myself"
msgstr ""
# return [
# 'tooltip' => __(
# 'Processing translation (could take a few minutes)',
msgid "Processing translation (could take a few minutes)"
msgstr ""
# ),
# 'refreshing' => __( 'Refreshing translation status', 'wpml-translation-management' ),
# 'inProgress' => __( 'Translation in progress', 'wpml-translation-management' ),
msgid "Refreshing translation status"
msgstr ""
# 'refreshing' => __( 'Refreshing translation status', 'wpml-translation-management' ),
# 'inProgress' => __( 'Translation in progress', 'wpml-translation-management' ),
# 'editTranslation' => __( 'Edit translation', 'wpml-translation-management' ),
msgid "Translation in progress"
msgstr ""
# 'inProgress' => __( 'Translation in progress', 'wpml-translation-management' ),
# 'editTranslation' => __( 'Edit translation', 'wpml-translation-management' ),
# 'status' => __( 'Processing translation', 'wpml-translation-management' ),
msgid "Edit translation"
msgstr ""
# 'editTranslation' => __( 'Edit translation', 'wpml-translation-management' ),
# 'status' => __( 'Processing translation', 'wpml-translation-management' ),
# 'automaticTranslation' => __( 'This content is being automatically translated. If you want to do something different with it cancel translation jobs first.', 'wpml-translation-management' ),
msgid "Processing translation"
msgstr ""
# 'status' => __( 'Processing translation', 'wpml-translation-management' ),
# 'automaticTranslation' => __( 'This content is being automatically translated. If you want to do something different with it cancel translation jobs first.', 'wpml-translation-management' ),
# 'notEnoughCredit' => self::getNotEnoughCreditPopup(),
msgid "This content is being automatically translated. If you want to do something different with it cancel translation jobs first."
msgstr ""
# 'notEnoughCredit' => self::getNotEnoughCreditPopup(),
# 'cancelled' => __( 'Translation has been cancelled', 'wpml-translation-management' ),
# ];
msgid "Translation has been cancelled"
msgstr ""
# $txt = sprintf(
# __( "Your default language, %s, must be mapped to a supported language in order to use automatic translation.", 'wpml-translation-management' ),
# Obj::prop( 'english_name', $defaultLanguage )
msgid "Your default language, %s, must be mapped to a supported language in order to use automatic translation."
msgstr ""
# $txt = sprintf(
# __( "The following language(s) on your site must be mapped to a supported language in order to use automatic translation: %s", 'wpml-translation-management' ),
# Lst::join( ', ', Lst::pluck( 'english_name', $languages ) )
msgid "The following language(s) on your site must be mapped to a supported language in order to use automatic translation: %s"
msgstr ""
# return sprintf(
# __( "It's not possible to use automatic translation with your current language setup, as the following languages are mapped to the same language as the default: %s", 'wpml-translation-management' ),
# Lst::join( ', ', Lst::pluck( 'english_name', $languages ) )
msgid "It's not possible to use automatic translation with your current language setup, as the following languages are mapped to the same language as the default: %s"
msgstr ""
# sprintf(
# __(
# 'Failed step: %s',
msgid "Failed step: %s"
msgstr ""
#
# $button_label = __( 'Try again', 'wpml-translation-management' );
# $button_url = add_query_arg(
msgid "Try again"
msgstr ""
# $wpml_support_action = $this->notices->get_new_notice_action(
# __(
# 'WPML Support',
msgid "WPML Support"
msgstr ""
# $action = $this->notices->get_new_notice_action(
# __(
# 'Error details',
msgid "Error details"
msgstr ""
#
# $title = '<h3>' . esc_html__(
# 'ICanLocalize migration could not complete',
msgid "ICanLocalize migration could not complete"
msgstr ""
# ) . '</h3>';
# $message[] = esc_html__(
# 'WPML needs to update your connection to ICanLocalize, but could not complete the change.',
msgid "WPML needs to update your connection to ICanLocalize, but could not complete the change."
msgstr ""
# if ( $locked ) {
# $message[] = esc_html__(
# 'Please contact WPML support and give them the following debug information:',
msgid "Please contact WPML support and give them the following debug information:"
msgstr ""
# } else {
# $message[] = esc_html__(
# 'Please wait a few minutes and try again to see if there’s a temporary problem.',
msgid "Please wait a few minutes and try again to see if there’s a temporary problem."
msgstr ""
# 'https://wpml.org/forums/topic/im-not-sure-if-i-need-to-run-icanlocalize-migration/?utm_source=plugin&utm_medium=gui&utm_campaign=wpmltm',
# esc_html__( 'Ask us', 'wpml-translation-management' )
# );
msgid "Ask us"
msgstr ""
#
# $button_label = esc_html__( 'Start the update', 'wpml-translation-management' );
#
msgid "Start the update"
msgstr ""
#
# $message[] = esc_html__(
# 'WPML 3.9 changes the way it works with ICanLocalize. This requires WPML to move to a new interface with ICanLocalize.',
msgid "WPML 3.9 changes the way it works with ICanLocalize. This requires WPML to move to a new interface with ICanLocalize."
msgstr ""
# );
# $message[] = esc_html__(
# 'If you are in a production site, you have to run this update before you can send more content for translation and receive completed translations.',
msgid "If you are in a production site, you have to run this update before you can send more content for translation and receive completed translations."
msgstr ""
# );
# $message[] = esc_html__(
# "If this is not your production site (it's a staging or testing site), please do not run the update.",
msgid "If this is not your production site (it's a staging or testing site), please do not run the update."
msgstr ""
# );
# $message[] = esc_html__(
# 'Running this update on a non-production site will make it impossible to correctly run it on the production site.',
msgid "Running this update on a non-production site will make it impossible to correctly run it on the production site."
msgstr ""
# $message[] = '';
# $message[] = sprintf( esc_html__( 'Not sure? %s.', 'wpml-translation-management' ), $ask_us_link );
# $message[] = '';
msgid "Not sure? %s."
msgstr ""
#
# $message[] = esc_html__(
# 'WPML updated your connection to ICanLocalize. You can continue sending content to translation.',
msgid "WPML updated your connection to ICanLocalize. You can continue sending content to translation."
msgstr ""
#
# $label = esc_html__( 'This is indeed my production site', 'wpml-translation-management' );
#
msgid "This is indeed my production site"
msgstr ""
# $model = array(
# 'title' => __( 'Migration to ICL 2.0', 'wpml-translation-management' ),
# 'data' => array(
msgid "Migration to ICL 2.0"
msgstr ""
# 'data' => array(
# __( 'Number of attempts made',
# 'wpml-translation-management' ) => $this->progress->get_current_attempts_count(),
msgid "Number of attempts made"
msgstr ""
# 'wpml-translation-management' ) => $this->progress->get_current_attempts_count(),
# __( 'Last attempt was on',
# 'wpml-translation-management' ) => date( self::TIMESTAMP_FORMAT,
msgid "Last attempt was on"
msgstr ""
# $this->progress->get_last_attempt_timestamp() ),
# __( 'Last error', 'wpml-translation-management' ) => $this->progress->get_last_migration_error(),
# ),
msgid "Last error"
msgstr ""
# 'type' => 'secondary',
# 'label' => __( 'Rollback migration (use at your own risk!)',
# 'wpml-translation-management' ),
msgid "Rollback migration (use at your own risk!)"
msgstr ""
# 'id' => 'translate',
# 'title' => $img . __( 'Edit Translation', 'wpml-translation-management' ),
# 'href' => admin_url() . $translateLink,
msgid "Edit Translation"
msgstr ""
# '<div class="wpml-display-flex wpml-display-flex-center">%1$s <a class="button wpml-margin-left-sm" href="%2$s">%3$s</a></div>',
# __( "WPML didn't manage to translate this page.", 'wpml-translation-management' ),
# Jobs::getEditUrl( $returnUrl, Obj::prop( 'jobId', $params ) ),
msgid "WPML didn't manage to translate this page."
msgstr ""
# sprintf(
# __( 'WPML tried to translate this page three times and failed. To get it fixed, contact %s', 'wpml-translation-management' ),
# '<a target=\'_blank\' href="https://wpml.org/forums/forum/english-support/">' . __( 'WPML support', 'wpml-translation-management' ) . '</a>'
msgid "WPML tried to translate this page three times and failed. To get it fixed, contact %s"
msgstr ""
# sprintf(
# __( 'WPML’s Advanced Translation Editor is enabled but not activated. Go to %s to resolve the issue.', 'wpml-translation-management' ),
# '<a href="' . UIPage::getTMDashboard() . '">' . __( 'WPML Translation Management Dashboard', 'wpml-translation-management' ) . '</a>'
msgid "WPML’s Advanced Translation Editor is enabled but not activated. Go to %s to resolve the issue."
msgstr ""
# __( 'WPML’s Advanced Translation Editor is enabled but not activated. Go to %s to resolve the issue.', 'wpml-translation-management' ),
# '<a href="' . UIPage::getTMDashboard() . '">' . __( 'WPML Translation Management Dashboard', 'wpml-translation-management' ) . '</a>'
# )
msgid "WPML Translation Management Dashboard"
msgstr ""
# 'username' => $to_manager->display_name,
# 'intro_message_1' => sprintf( __( 'The translator %1$s is requesting to use the Advanced Translation Editor on site %2$s.', 'wpml-translation-management' ), $from_user->display_name, $site_name ),
# 'setup' => __( 'Advanced Translation Editor settings', 'wpml-translation-management' ),
msgid "The translator %1$s is requesting to use the Advanced Translation Editor on site %2$s."
msgstr ""
# 'intro_message_1' => sprintf( __( 'The translator %1$s is requesting to use the Advanced Translation Editor on site %2$s.', 'wpml-translation-management' ), $from_user->display_name, $site_name ),
# 'setup' => __( 'Advanced Translation Editor settings', 'wpml-translation-management' ),
# 'reminder' => sprintf( __( '* Remember, your login name for %1$s is %2$s. If you need help with your password, use the password reset in the login page.', 'wpml-translation-management' ), $site_name, $to_manager->user_login ),
msgid "Advanced Translation Editor settings"
msgstr ""
# 'setup' => __( 'Advanced Translation Editor settings', 'wpml-translation-management' ),
# 'reminder' => sprintf( __( '* Remember, your login name for %1$s is %2$s. If you need help with your password, use the password reset in the login page.', 'wpml-translation-management' ), $site_name, $to_manager->user_login ),
# );
msgid "* Remember, your login name for %1$s is %2$s. If you need help with your password, use the password reset in the login page."
msgstr ""
# $message = $this->email_view->render_model( $model, self::REQUEST_ACTIVATION_TEMPLATE );
# $subject = sprintf( __( "Request to use WPML's Advanced Translation Editor by %s", 'wpml-translation-management' ), $site_name );
#
msgid "Request to use WPML's Advanced Translation Editor by %s"
msgstr ""
# public function get_subject() {
# return __( 'Translation updates for %1$s for %2$s', 'wpml-translation-management' );
# }
msgid "Translation updates for %1$s for %2$s"
msgstr ""
# public function get_summary_text() {
# return __( 'Today %1$s had the following %2$s translation updates', 'wpml-translation-management' );
# }
msgid "Today %1$s had the following %2$s translation updates"
msgstr ""
# 'strings' => array(
# 'jobs_waiting' => __( 'Jobs that are waiting for translation', 'wpml-translation-management' ),
# 'original_page' => __( 'Original Page', 'wpml-translation-management' ),
msgid "Jobs that are waiting for translation"
msgstr ""
# 'jobs_waiting' => __( 'Jobs that are waiting for translation', 'wpml-translation-management' ),
# 'original_page' => __( 'Original Page', 'wpml-translation-management' ),
# 'translation' => __( 'Translation', 'wpml-translation-management' ),
msgid "Original Page"
msgstr ""
# 'original_page' => __( 'Original Page', 'wpml-translation-management' ),
# 'translation' => __( 'Translation', 'wpml-translation-management' ),
# 'translator' => __( 'Translator', 'wpml-translation-management' ),
msgid "Translation"
msgstr ""
# 'translation' => __( 'Translation', 'wpml-translation-management' ),
# 'translator' => __( 'Translator', 'wpml-translation-management' ),
# 'updated' => __( 'Updated / Translated', 'wpml-translation-management' ),
msgid "Translator"
msgstr ""
# 'translator' => __( 'Translator', 'wpml-translation-management' ),
# 'updated' => __( 'Updated / Translated', 'wpml-translation-management' ),
# 'date' => __( 'Date', 'wpml-translation-management' ),
msgid "Updated / Translated"
msgstr ""
# 'date' => __( 'Date', 'wpml-translation-management' ),
# 'your_deadline' => __( 'Your deadline', 'wpml-translation-management' ),
# 'translation_languages' => __( 'Translation languages', 'wpml-translation-management' ),
msgid "Your deadline"
msgstr ""
# 'your_deadline' => __( 'Your deadline', 'wpml-translation-management' ),
# 'translation_languages' => __( 'Translation languages', 'wpml-translation-management' ),
# 'number_of_pages' => __( 'Number of pages', 'wpml-translation-management' ),
msgid "Translation languages"
msgstr ""
# 'translation_languages' => __( 'Translation languages', 'wpml-translation-management' ),
# 'number_of_pages' => __( 'Number of pages', 'wpml-translation-management' ),
# 'number_of_strings' => __( 'Number of strings', 'wpml-translation-management' ),
msgid "Number of pages"
msgstr ""
# 'number_of_pages' => __( 'Number of pages', 'wpml-translation-management' ),
# 'number_of_strings' => __( 'Number of strings', 'wpml-translation-management' ),
# 'number_of_words' => __( 'Number of words', 'wpml-translation-management' ),
msgid "Number of strings"
msgstr ""
# 'number_of_strings' => __( 'Number of strings', 'wpml-translation-management' ),
# 'number_of_words' => __( 'Number of words', 'wpml-translation-management' ),
# 'undefined' => __( 'Undefined', 'wpml-translation-management' ),
msgid "Number of words"
msgstr ""
# 'number_of_words' => __( 'Number of words', 'wpml-translation-management' ),
# 'undefined' => __( 'Undefined', 'wpml-translation-management' ),
# ),
msgid "Undefined"
msgstr ""
# 'improve_quality' => array(
# 'title' => __( 'Want to improve the quality of your site’s translation?', 'wpml-translation-management' ),
# 'options' => array(
msgid "Want to improve the quality of your site’s translation?"
msgstr ""
# 'link_url' => admin_url( 'admin.php?page=' . WPML_PLUGIN_FOLDER . '/menu/languages.php#wpml-translation-feedback-options' ),
# 'link_text' => __( 'Translation Feedback', 'wpml-translation-management' ),
# 'text' => __( 'Allow visitors to tell you about translation issues by enabling %s', 'wpml-translation-management' ),
msgid "Translation Feedback"
msgstr ""
# 'link_text' => __( 'Translation Feedback', 'wpml-translation-management' ),
# 'text' => __( 'Allow visitors to tell you about translation issues by enabling %s', 'wpml-translation-management' ),
# ),
msgid "Allow visitors to tell you about translation issues by enabling %s"
msgstr ""
# 'link_url' => admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php&sm=translators' ),
# 'link_text' => __( 'translation services that are integrated with WPML', 'wpml-translation-management' ),
# 'text' => __( 'Try one of the %s', 'wpml-translation-management' ),
msgid "translation services that are integrated with WPML"
msgstr ""
# 'link_text' => __( 'translation services that are integrated with WPML', 'wpml-translation-management' ),
# 'text' => __( 'Try one of the %s', 'wpml-translation-management' ),
# ),
msgid "Try one of the %s"
msgstr ""
# $this->jobs[ $manager_id ][ WPML_TM_Jobs_Summary::JOBS_WAITING_KEY ][ $lang_pair ] = array(
# 'lang_pair' => $job->get_source_language_code( true ) . ' ' . __( 'to', 'wpml-translation-management' ) . ' ' . $job->get_language_code( true ),
# 'number_of_strings' => $number_of_strings,
msgid "to"
msgstr ""
# public function get_subject() {
# return __( 'Translation updates for %1$s until %2$s', 'wpml-translation-management' );
# }
msgid "Translation updates for %1$s until %2$s"
msgstr ""
# public function get_summary_text() {
# return __( 'This week %1$s had the following %2$s translation updates', 'wpml-translation-management' );
# }
msgid "This week %1$s had the following %2$s translation updates"
msgstr ""
# $notifications_url = esc_url( admin_url( 'admin.php?page=' . WPML_TM_FOLDER . WPML_Translation_Management::PAGE_SLUG_SETTINGS . '&sm=notifications' ) );
# $notifications_text = esc_html__( 'WPML Notification Settings', 'wpml-translation-management' );
# $notifications_link = '<a href="' . $notifications_url . '" style="color: #ffffff;">' . $notifications_text . '</a>';
msgid "WPML Notification Settings"
msgstr ""
# $bottom_text = sprintf(
# esc_html__(
# 'To stop receiving notifications, log-in to %s and change your preferences.',
msgid "To stop receiving notifications, log-in to %s and change your preferences."
msgstr ""
# /* translators: Promote translation services: %s replaced by "professional translation services integrated with WPML" */
# $promoteA = esc_html_x( 'Need faster translation work? Try one of the %s.', 'Promote translation services: %s replaced by "professional translation services integrated with WPML"', 'wpml-translation-management' );
# /* translators: Promote translation services: Promote translation services: used to build a link to the translation services page */
msgctxt "Promote translation services: %s replaced by \"professional translation services integrated with WPML\""
msgid "Need faster translation work? Try one of the %s."
msgstr ""
# /* translators: Promote translation services: Promote translation services: used to build a link to the translation services page */
# $promoteB = esc_html_x( 'professional translation services integrated with WPML', 'Promote translation services: used to build a link to the translation services page', 'wpml-translation-management' );
#
msgctxt "Promote translation services: used to build a link to the translation services page"
msgid "professional translation services integrated with WPML"
msgstr ""
# 'username' => $manager->display_name,
# 'intro_message_1' => __( 'This is a quick reminder about translation jobs that you sent and are behind schedule.', 'wpml-translation-management' ),
# 'intro_message_2' => __( 'The deadline that you set for the following jobs has passed:', 'wpml-translation-management' ),
msgid "This is a quick reminder about translation jobs that you sent and are behind schedule."
msgstr ""
# 'intro_message_1' => __( 'This is a quick reminder about translation jobs that you sent and are behind schedule.', 'wpml-translation-management' ),
# 'intro_message_2' => __( 'The deadline that you set for the following jobs has passed:', 'wpml-translation-management' ),
# 'jobs' => $jobs,
msgid "The deadline that you set for the following jobs has passed:"
msgstr ""
# 'jobs' => $jobs,
# 'job_deadline_details' => __( 'deadline: %1$s, late by %2$d days', 'wpml-translation-management' ),
# 'message_to_translation_jobs' => $message_to_translation_jobs,
msgid "deadline: %1$s, late by %2$d days"
msgstr ""
# $to = $manager->display_name . ' <' . $manager->user_email . '>';
# $subject = esc_html__( 'Overdue translation jobs report', 'wpml-translation-management' );
# $message = $this->email_view->render_model( $model, self::OVERDUE_JOBS_REPORT_TEMPLATE );
msgid "Overdue translation jobs report"
msgstr ""
# /* translators: List of translation jobs: %s replaced by "list of translation jobs" */
# $message_to_translation_jobsA = esc_html_x( 'You can see all the jobs that you sent and their deadlines in the %s.', 'List of translation jobs: %s replaced by "list of translation jobs"', 'wpml-translation-management' );
# /* translators: List of translation jobs: used to build a link to the translation jobs page */
msgctxt "List of translation jobs: %s replaced by \"list of translation jobs\""
msgid "You can see all the jobs that you sent and their deadlines in the %s."
msgstr ""
# /* translators: List of translation jobs: used to build a link to the translation jobs page */
# $message_to_translation_jobsB = esc_html_x( 'list of translation jobs', 'List of translation jobs: used to build a link to the translation jobs page', 'wpml-translation-management' );
#
msgctxt "List of translation jobs: used to build a link to the translation jobs page"
msgid "list of translation jobs"
msgstr ""
# $translator = get_userdata( $translator_id );
# $title = __( 'You have been assigned to new translation job(s):', 'wpml-translation-management' );
# $render_jobs_list = $this->email_template->render_jobs_list( $language_pairs, $translator_id, $title );
msgid "You have been assigned to new translation job(s):"
msgstr ""
# $assigned_jobs = $this->email_template->get_assigned_jobs();
# $title_singular = __( 'There is 1 job, which you can take (not specifically assigned to you):', 'wpml-translation-management' );
# $title_plural = __( 'There are %s jobs, which you can take (not specifically assigned to you):', 'wpml-translation-management' );
msgid "There is 1 job, which you can take (not specifically assigned to you):"
msgstr ""
# $title_singular = __( 'There is 1 job, which you can take (not specifically assigned to you):', 'wpml-translation-management' );
# $title_plural = __( 'There are %s jobs, which you can take (not specifically assigned to you):', 'wpml-translation-management' );
# $unassigned_jobs_body = $this->email_template->render_jobs_list(
msgid "There are %s jobs, which you can take (not specifically assigned to you):"
msgstr ""
# $translators = $this->batch_report->get_unassigned_translators();
# $title_singular = __( 'There is 1 job waiting for a translator:', 'wpml-translation-management' );
# $title_plural = __( 'There are %s jobs waiting for a translator:', 'wpml-translation-management' );
msgid "There is 1 job waiting for a translator:"
msgstr ""
# $title_singular = __( 'There is 1 job waiting for a translator:', 'wpml-translation-management' );
# $title_plural = __( 'There are %s jobs waiting for a translator:', 'wpml-translation-management' );
#
msgid "There are %s jobs waiting for a translator:"
msgstr ""
# private function get_subject_assigned_job() {
# return sprintf( __( 'New translation job from %s', 'wpml-translation-management' ), get_bloginfo( 'name' ) );
# }
msgid "New translation job from %s"
msgstr ""
# private function get_subject_unassigned_job() {
# return sprintf( __( 'Job waiting for a translator in %s', 'wpml-translation-management' ), get_bloginfo( 'name' ) );
# }
msgid "Job waiting for a translator in %s"
msgstr ""
# 'strings' => array(
# 'strings_text' => __( 'Strings', 'wpml-translation-management' ),
# 'start_translating_text' => __( 'start translating', 'wpml-translation-management' ),
msgid "Strings"
msgstr ""
# 'strings_text' => __( 'Strings', 'wpml-translation-management' ),
# 'start_translating_text' => __( 'start translating', 'wpml-translation-management' ),
# 'take' => _x( 'take it', 'Take a translation job waiting for a translator', 'wpml-translation-management' ),
msgid "start translating"
msgstr ""
# 'original_link' => get_permalink( $element['element_id'] ),
# 'original_text' => sprintf( __( 'Link to original document %d', 'wpml-translation-management' ), $element['element_id'] ),
# 'start_translating_link' => admin_url(
msgid "Link to original document %d"
msgstr ""
# $model['lang_pairs'][$lang_pair] = array(
# 'title' => sprintf( __( 'From %1$s to %2$s:', 'wpml-translation-management' ), $source_lang['english_name'], $target_lang['english_name'] ),
# 'elements' => $model_elements,
msgid "From %1$s to %2$s:"
msgstr ""
# $bottom_text = sprintf(
# __(
# 'You are receiving this email because you have a translator
msgid "You are receiving this email because you have a translator \n\t\t\taccount in %1$s. To stop receiving notifications, \n\t\t\tlog-in to %2$s and unselect \"Send me a notification email \n\t\t\twhen there is something new to translate\". Please note that \n\t\t\tthis will take you out of the translators pool."
msgstr ""
# if ( WPML_TM_ATE_Status::is_enabled_and_activated() ) {
# $link = '<a href="https://wpml.org/documentation/translating-your-contents/advanced-translation-editor/?utm_source=plugin&utm_medium=gui&utm_campaign=wpmltm">' . __( "WPML's Advanced Translation Editor", 'wpml-translation-management' ) . '</a>';
#
msgid "WPML's Advanced Translation Editor"
msgstr ""
#
# $sentence = sprintf( __( "Need help translating? Read how to use %s.", 'wpml-translation-management' ), $link );
# }
msgid "Need help translating? Read how to use %s."
msgstr ""
# 'start_translating_text' => __( 'start translating', 'wpml-translation-management' ),
# 'take' => _x( 'take it', 'Take a translation job waiting for a translator', 'wpml-translation-management' ),
# 'strings_link' => admin_url(
msgctxt "Take a translation job waiting for a translator"
msgid "take it"
msgstr ""
# $model = array(
# 'greetings' => sprintf( __( 'Dear %s,', 'wpml-translation-management' ), $username ),
# );
msgid "Dear %s,"
msgstr ""
# $model = array(
# 'greetings' => sprintf( __( 'Hi %s,', 'wpml-translation-management' ), $first_name ),
# );
msgid "Hi %s,"
msgstr ""
# 'wpml_footer' => sprintf(
# esc_html__( 'Generated by WPML plugin, running on %s.', 'wpml-translation-management' ),
# '<a href="' . $site_url . '" style="color: #ffffff;">' . $site_url . '</a>'
msgid "Generated by WPML plugin, running on %s."
msgstr ""
# $footer = sprintf(
# __( 'You can view your other translation jobs here: %s', 'wpml-translation-management' ),
# $tj_url
msgid "You can view your other translation jobs here: %s"
msgstr ""
# $footer .= sprintf(
# __(
# "This message was automatically sent by Translation Management running on %1\$s. To stop receiving these notifications contact the system administrator at %2\$s.\n\nThis email is not monitored for replies.",
msgid "This message was automatically sent by Translation Management running on %1$s. To stop receiving these notifications contact the system administrator at %2$s.\n\nThis email is not monitored for replies."
msgstr ""
# $footer = "\n--\n" . sprintf(
# __(
# "This message was automatically sent by Translation Management running on %1\$s. To stop receiving these notifications, go to Notification Settings, or contact the system administrator at %2\$s.\n\nThis email is not monitored for replies.",
msgid "This message was automatically sent by Translation Management running on %1$s. To stop receiving these notifications, go to Notification Settings, or contact the system administrator at %2$s.\n\nThis email is not monitored for replies."
msgstr ""
# $model = array(
# 'view_jobs_text' => __( 'View translation jobs', 'wpml-translation-management' ),
# 'username' => $manager->display_name,
msgid "View translation jobs"
msgstr ""
# $mail['subject'] = sprintf(
# __( 'Translator has updated translation job for %s', 'wpml-translation-management' ),
# get_bloginfo( 'name' )
msgid "Translator has updated translation job for %s"
msgstr ""
# $mail['subject'] = sprintf(
# __( 'Translator has completed translation job for %s', 'wpml-translation-management' ),
# get_bloginfo( 'name' )
msgid "Translator has completed translation job for %s"
msgstr ""
# $model['needs_help'] = array(
# 'title' => __( 'Need help with translation?', 'wpml-translation-management' ),
# 'options_or' => __( 'or', 'wpml-translation-management' ),
msgid "Need help with translation?"
msgstr ""
# 'title' => __( 'Need help with translation?', 'wpml-translation-management' ),
# 'options_or' => __( 'or', 'wpml-translation-management' ),
# 'translators_link' => admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php&sm=translators' ),
msgid "or"
msgstr ""
# 'translators_link' => admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php&sm=translators' ),
# 'translators_text' => __( 'Manage your translators', 'wpml-translation-management' ),
# 'translation_services_link' => admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php&sm=translators' ),
msgid "Manage your translators"
msgstr ""
# 'translation_services_link' => admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php&sm=translators' ),
# 'translation_services_text' => __( 'try a translation service', 'wpml-translation-management' ),
# );
msgid "try a translation service"
msgstr ""
#
# $subject = sprintf( __( 'Translator job updated for %s', 'wpml-translation-management' ), get_bloginfo( 'name' ) );
# $placeholder = esc_html__(
msgid "Translator job updated for %s"
msgstr ""
#
# $subject = sprintf( __( 'Translator job canceled for %s', 'wpml-translation-management' ), get_bloginfo( 'name' ) );
# $placeholder = esc_html__(
msgid "Translator job canceled for %s"
msgstr ""
# if ( $job->is_completed_on_time() ) {
# $model['deadline_status'] = __( 'The translation job was completed on time.', 'wpml-translation-management' );
# } else {
msgid "The translation job was completed on time."
msgstr ""
# $mail['to'] = $translator->display_name . ' <' . $translator->user_email . '>';
# $mail['subject'] = sprintf( __( 'Removed from translation job on %s', 'wpml-translation-management' ), get_bloginfo( 'name' ) );
# $mail['body'] = sprintf(
msgid "Removed from translation job on %s"
msgstr ""
# $mail['body'] = sprintf(
# __( 'You have been removed from the translation job "%1$s" for %2$s to %3$s.', 'wpml-translation-management' ),
# $doc_title,
msgid "You have been removed from the translation job \"%1$s\" for %2$s to %3$s."
msgstr ""
# $mail['subject'] = sprintf(
# __( 'Translator has resigned from job on %s', 'wpml-translation-management' ),
# get_bloginfo( 'name' )
msgid "Translator has resigned from job on %s"
msgstr ""
# );
# $original_doc_title = $doc_title ? $doc_title : __( 'Deleted', 'wpml-translation-management' );
# $mail['body'] = sprintf(
msgid "Deleted"
msgstr ""
# $mail['body'] = sprintf(
# __(
# 'Translator %1$s has resigned from the translation job "%2$s" for %3$s to %4$s.%5$sView translation jobs: %6$s',
msgid "Translator %1$s has resigned from the translation job \"%2$s\" for %3$s to %4$s.%5$sView translation jobs: %6$s"
msgstr ""
# );
# $body_placeholder = esc_html__(
# 'The translator %1$shas updated the translation job for "%2$s" from %3$s to %4$s.',
msgid "The translator %1$shas updated the translation job for \"%2$s\" from %3$s to %4$s."
msgstr ""
# );
# $body_placeholder = esc_html__(
# 'The translator %1$shas completed the translation job for "%2$s" from %3$s to %4$s.',
msgid "The translator %1$shas completed the translation job for \"%2$s\" from %3$s to %4$s."
msgstr ""
# $subject = sprintf( __( 'Translator job updated for %s', 'wpml-translation-management' ), get_bloginfo( 'name' ) );
# $placeholder = esc_html__(
# 'A new translation for %1$s from %2$s to %3$s was created on the Translation Service. It’s ready to download and will be applied next time the Translation Service delivers completed translations to your site or when you manually fetch them.',
msgid "A new translation for %1$s from %2$s to %3$s was created on the Translation Service. It’s ready to download and will be applied next time the Translation Service delivers completed translations to your site or when you manually fetch them."
msgstr ""
# $subject = sprintf( __( 'Translator job canceled for %s', 'wpml-translation-management' ), get_bloginfo( 'name' ) );
# $placeholder = esc_html__(
# 'The translation for %1$s from %2$s to %3$s was canceled on the Translation Service. You can send this document to translation again from the Translation Dashboard.',
msgid "The translation for %1$s from %2$s to %3$s was canceled on the Translation Service. You can send this document to translation again from the Translation Dashboard."
msgstr ""
# $model['deadline_status'] = sprintf(
# _n(
# 'This translation job is overdue by %s day.',
msgid "This translation job is overdue by %s day."
msgstr ""
# $model['deadline_status'] = sprintf(
# _n(
# 'This translation job is overdue by %s day.',
msgid "This translation job is overdue by %s days."
msgstr ""
# $text = sprintf(
# __(
# "You can't edit this translation, because this translation to %s is already in progress.",
msgid "You can't edit this translation, because this translation to %s is already in progress."
msgstr ""
# } elseif ( $this->is_in_basket( $trid, $lang ) ) {
# $text = __(
# 'Cannot edit this item, because it is currently in the translation basket.',
msgid "Cannot edit this item, because it is currently in the translation basket."
msgstr ""
# $language = $this->sitepress->get_language_details( $lang );
# $text = sprintf( __( 'Edit the %s translation', 'wpml-translation-management' ), $language['display_name'] );
# } elseif ( ! $this->is_lang_pair_allowed( $lang, $source_lang, $original_post_id ) ) {
msgid "Edit the %s translation"
msgstr ""
# $text = sprintf(
# __( 'You don\'t have the rights to translate from %1$s to %2$s', 'wpml-translation-management' ),
# $source_language['display_name'],
msgid "You don't have the rights to translate from %1$s to %2$s"
msgstr ""
# if ( $this->isTranslateEverythingInProgress( $original_post_id, $lang ) ) {
# $text = __( 'WPML is translating your content automatically. You can monitor the progress in the admin bar.', 'wpml-translation-management' );
# }
msgid "WPML is translating your content automatically. You can monitor the progress in the admin bar."
msgstr ""
# public function getOriginal( stdClass $job ) {
# return $this->get( $job, __( 'View original', 'wpml-translation-management' ) );
# }
msgid "View original"
msgstr ""
# if ( $translatedId ) {
# return $this->get( $job, __( 'View', 'wpml-translation-management' ), $translatedId );
# }
msgid "View"
msgstr ""
# esc_html(
# __( 'There is a problem connecting to automatic translation. Please check your internet connection and try again in a few minutes. If you continue to see this message, please %s.', 'wpml-translation-management' )
# ),
msgid "There is a problem connecting to automatic translation. Please check your internet connection and try again in a few minutes. If you continue to see this message, please %s."
msgstr ""
# $supportLink = '<a target="_blank" rel="nofollow" href="' . esc_url( $supportUrl ) . '">'
# . esc_html__( 'contact our support team', 'wpml-translation-management' )
# . '</a>';
msgid "contact our support team"
msgstr ""
# $select_attributes_name = 'filter[from_lang]';
# $select_attributes_label = __( 'in', 'wpml-translation-management' );
#
msgid "in"
msgstr ""
# <p class="wpml-tm-dashboard-paragraph-extra-space-bottom">
# <?php echo sprintf( __( 'WPML is automatically translating published %s.', 'wpml-translation-management' ), $postTypes ); ?>
# <br />
msgid "WPML is automatically translating published %s."
msgstr ""
# do_action( 'display_basket_notification', 'tm_dashboard_top' );
# $this->heading( __( '1. Select items for translation', 'wpml-translation-management' ) );
# $this->display_post_type_select();
msgid "1. Select items for translation"
msgstr ""
# $option_status = array(
# -1 => esc_html__( 'All translation statuses', 'wpml-translation-management' ),
# ICL_TM_NOT_TRANSLATED => esc_html__(
msgid "All translation statuses"
msgstr ""
# -1 => esc_html__( 'All translation statuses', 'wpml-translation-management' ),
# ICL_TM_NOT_TRANSLATED => esc_html__(
# 'Not translated or needs updating',
msgid "Not translated or needs updating"
msgstr ""
# ),
# ICL_TM_NEEDS_UPDATE => esc_html__( 'Needs updating', 'wpml-translation-management' ),
# ICL_TM_IN_PROGRESS => esc_html__( 'Translation in progress', 'wpml-translation-management' ),
msgid "Needs updating"
msgstr ""
# ICL_TM_IN_PROGRESS => esc_html__( 'Translation in progress', 'wpml-translation-management' ),
# ICL_TM_COMPLETE => esc_html__( 'Translation complete', 'wpml-translation-management' ),
# );
msgid "Translation complete"
msgstr ""
# $basket_locked_string .= sprintf(
# esc_html__(
# 'Language filtering has been disabled because you already have items in %s in the basket.',
msgid "Language filtering has been disabled because you already have items in %s in the basket."
msgstr ""
# $basket_locked_string .= '<br/>';
# $basket_locked_string .= esc_html__(
# 'To re-enable it, please empty the basket or send it for translation.',
msgid "To re-enable it, please empty the basket or send it for translation."
msgstr ""
# <h2 class="wpml-tm-dashboard-h2">
# <?php _e( 'Translate other content', 'wpml-translation-management' ); ?>
# </h2>
msgid "Translate other content"
msgstr ""
# <br />
# <?php _e( 'To translate other content, select your items for translation and your preferred translation options below.', 'wpml-translation-management' ); ?>
# </p>
msgid "To translate other content, select your items for translation and your preferred translation options below."
msgstr ""
# ?>
# <select id="filter_tstatus" name="filter[tstatus]" title="<?php esc_attr_e( 'Translation status', 'wpml-translation-management' ); ?>">
# <?php
msgid "Translation status"
msgstr ""
# ?>
# <select id="filter_type" name="filter[type]" title="<?php esc_attr_e( 'Element type', 'wpml-translation-management' ); ?>">
# <option value=""><?php esc_html_e( 'All types', 'wpml-translation-management' ); ?></option>
msgid "Element type"
msgstr ""
# ?>
# <select id="filter_status" name="filter[status]" title="<?php esc_attr_e( 'Publish status', 'wpml-translation-management' ); ?>">
# <option value=""><?php esc_html_e( 'All statuses', 'wpml-translation-management' ); ?></option>
msgid "Publish status"
msgstr ""
# ?>
# <select id="filter_translation_priority" name="filter[translation_priority]" title="<?php esc_attr_e( 'Priority', 'wpml-translation-management' ); ?>">
# <option value=""><?php esc_html_e( 'All Translation Priorities', 'wpml-translation-management' ); ?></option>
msgid "Priority"
msgstr ""
# class="button-secondary" type="submit"
# value="<?php esc_attr_e( 'Filter', 'wpml-translation-management' ); ?>"/>
#
msgid "Filter"
msgstr ""
# <label for="filter_to_lang">
# <?php esc_html_e( 'translated to', 'wpml-translation-management' ); ?>
# </label>
msgid "translated to"
msgstr ""
# <select id="filter_to_lang" name="filter[to_lang]">
# <option value=""><?php esc_html_e( 'Any language', 'wpml-translation-management' ); ?></option>
# <?php
msgid "Any language"
msgstr ""
# <select id="filter_type" name="filter[type]" title="<?php esc_attr_e( 'Element type', 'wpml-translation-management' ); ?>">
# <option value=""><?php esc_html_e( 'All types', 'wpml-translation-management' ); ?></option>
# <?php
msgid "All types"
msgstr ""
# <label for="<?php echo self::PARENT_SELECT_ID; ?>">
# <?php esc_html_e( 'parent', 'wpml-translation-management' ); ?>
# </label>
msgid "parent"
msgstr ""
# <select id="filter_status" name="filter[status]" title="<?php esc_attr_e( 'Publish status', 'wpml-translation-management' ); ?>">
# <option value=""><?php esc_html_e( 'All statuses', 'wpml-translation-management' ); ?></option>
# <?php
msgid "All statuses"
msgstr ""
# <select id="filter_translation_priority" name="filter[translation_priority]" title="<?php esc_attr_e( 'Priority', 'wpml-translation-management' ); ?>">
# <option value=""><?php esc_html_e( 'All Translation Priorities', 'wpml-translation-management' ); ?></option>
# <?php
msgid "All Translation Priorities"
msgstr ""
#
# <a type="reset" href="<?php echo esc_url( $reset_url ); ?>" class="wpml-reset-filter"><i class="otgs-ico-close"> </i><?php esc_html_e( 'Reset filter', 'wpml-translation-management' ); ?></a>
#
msgid "Reset filter"
msgstr ""
# public function get_title() {
# return $this->data->title ? $this->data->title : __( '(missing title)', 'wpml-translation-management' );
# }
msgid "(missing title)"
msgstr ""
# $post_link_factory = new WPML_TM_Post_Link_Factory( $this->sitepress );
# $post_edit_link = $post_link_factory->edit_link_anchor( $current_document->ID, __( 'Edit', 'wpml-translation-management' ) );
# $post_view_link = $post_link_factory->view_link_anchor( $current_document->ID, __( 'View', 'wpml-translation-management' ) );
msgid "Edit"
msgstr ""
# if ( $note ) {
# $this->note_text = __( 'Edit note for the translators', 'wpml-translation-management' );
# $this->note_icon_class = 'otgs-ico-note-edit-o';
msgid "Edit note for the translators"
msgstr ""
# } else {
# $this->note_text = __( 'Add note for the translators', 'wpml-translation-management' );
# $this->note_icon_class = 'otgs-ico-note-add-o';
msgid "Add note for the translators"
msgstr ""
# if ( $needsReview ) {
# $translation_status_text = esc_attr( __( 'Needs review', 'wpml-translation-management' ) );
# } else {
msgid "Needs review"
msgstr ""
# case ICL_TM_NOT_TRANSLATED:
# $translation_status_text = esc_attr( __( 'Not translated', 'wpml-translation-management' ) );
# break;
msgid "Not translated"
msgstr ""
# $translation_status_text = $automatic
# ? esc_attr( __( 'Waiting for translation', 'wpml-translation-management' ) )
# : esc_attr( __( 'Waiting for translator', 'wpml-translation-management' ) );
msgid "Waiting for translation"
msgstr ""
# ? esc_attr( __( 'Waiting for translation', 'wpml-translation-management' ) )
# : esc_attr( __( 'Waiting for translator', 'wpml-translation-management' ) );
# break;
msgid "Waiting for translator"
msgstr ""
# case ICL_TM_IN_BASKET:
# $translation_status_text = esc_attr( __( 'In basket', 'wpml-translation-management' ) );
# break;
msgid "In basket"
msgstr ""
# case ICL_TM_IN_PROGRESS:
# $translation_status_text = esc_attr( __( 'In progress', 'wpml-translation-management' ) );
# $has_jobs_in_progress = true;
msgid "In progress"
msgstr ""
# $translation_status_text = esc_attr(
# __(
# 'Translation ready to download',
msgid "Translation ready to download"
msgstr ""
# case ICL_TM_DUPLICATE:
# $translation_status_text = esc_attr( __( 'Duplicate', 'wpml-translation-management' ) );
# break;
msgid "Duplicate"
msgstr ""
# case ICL_TM_COMPLETE:
# $translation_status_text = esc_attr( __( 'Complete', 'wpml-translation-management' ) );
# break;
msgid "Complete"
msgstr ""
# case ICL_TM_NEEDS_UPDATE:
# $translation_status_text = ' - ' . esc_attr( __( 'needs update', 'wpml-translation-management' ) );
# break;
msgid "needs update"
msgstr ""
# case ICL_TM_ATE_NEEDS_RETRY:
# $translation_status_text = esc_attr( __( 'In progress', 'wpml-translation-management' ) ) . ' - ' . esc_attr( __( 'needs retry', 'wpml-translation-management' ) );
# break;
msgid "needs retry"
msgstr ""
# <label for="post_note_<?php echo $current_document->ID; ?>">
# <?php _e( 'Note for the translators', 'wpml-translation-management' ); ?>
# </label>
msgid "Note for the translators"
msgstr ""
# <td style="border-bottom:none">
# <input type="button" class="icl_tn_cancel button" value="<?php _e( 'Cancel', 'wpml-translation-management' ); ?>" />
# <input class="icl_tn_post_id" type="hidden" value="<?php echo $current_document->ID; ?>"/>
msgid "Cancel"
msgstr ""
# <td align="right" style="border-bottom:none">
# <input type="button" class="icl_tn_save button-primary" value="<?php _e( 'Save', 'wpml-translation-management' ); ?>"/>
# </td>
msgid "Save"
msgstr ""
# "
# title="<?php esc_attr_e( 'Check status and get translations', 'wpml-translation-management' ); ?>"
# </a>
msgid "Check status and get translations"
msgstr ""
# <span class="displaying-num">
# <?php echo sprintf( esc_html__( 'Displaying %1$s–%2$s of %3$s', 'wpml-translation-management' ), $page_from, $page_to, $page_total ); ?>
# </span>
msgid "Displaying %1$s–%2$s of %3$s"
msgstr ""
# 'strings' => [
# 'bulkActions' => __( 'Bulk actions', 'wpml-translation-management' ),
# 'cancelJobs' => __( 'Cancel jobs', 'wpml-translation-management' ),
msgid "Bulk actions"
msgstr ""
# 'bulkActions' => __( 'Bulk actions', 'wpml-translation-management' ),
# 'cancelJobs' => __( 'Cancel jobs', 'wpml-translation-management' ),
# 'getTranslations' => __( 'Get translations', 'wpml-translation-management' ),
msgid "Cancel jobs"
msgstr ""
# 'cancelJobs' => __( 'Cancel jobs', 'wpml-translation-management' ),
# 'getTranslations' => __( 'Get translations', 'wpml-translation-management' ),
# 'apply' => __( 'Apply', 'wpml-translation-management' ),
msgid "Get translations"
msgstr ""
# 'getTranslations' => __( 'Get translations', 'wpml-translation-management' ),
# 'apply' => __( 'Apply', 'wpml-translation-management' ),
# 'firstPage' => __( 'First page', 'wpml-translation-management' ),
msgid "Apply"
msgstr ""
# 'apply' => __( 'Apply', 'wpml-translation-management' ),
# 'firstPage' => __( 'First page', 'wpml-translation-management' ),
# 'previousPage' => __( 'Previous page', 'wpml-translation-management' ),
msgid "First page"
msgstr ""
# 'firstPage' => __( 'First page', 'wpml-translation-management' ),
# 'previousPage' => __( 'Previous page', 'wpml-translation-management' ),
# 'nextPage' => __( 'Next page', 'wpml-translation-management' ),
msgid "Previous page"
msgstr ""
# 'previousPage' => __( 'Previous page', 'wpml-translation-management' ),
# 'nextPage' => __( 'Next page', 'wpml-translation-management' ),
# 'lastPage' => __( 'Last page', 'wpml-translation-management' ),
msgid "Next page"
msgstr ""
# 'nextPage' => __( 'Next page', 'wpml-translation-management' ),
# 'lastPage' => __( 'Last page', 'wpml-translation-management' ),
# 'listNavigation' => __( 'Navigation', 'wpml-translation-management' ),
msgid "Last page"
msgstr ""
# 'lastPage' => __( 'Last page', 'wpml-translation-management' ),
# 'listNavigation' => __( 'Navigation', 'wpml-translation-management' ),
# 'totalItemsText' => __( '0 items', 'wpml-translation-management' ),
msgid "Navigation"
msgstr ""
# 'listNavigation' => __( 'Navigation', 'wpml-translation-management' ),
# 'totalItemsText' => __( '0 items', 'wpml-translation-management' ),
# 'of' => __( 'of', 'wpml-translation-management' ),
msgid "0 items"
msgstr ""
# 'totalItemsText' => __( '0 items', 'wpml-translation-management' ),
# 'of' => __( 'of', 'wpml-translation-management' ),
# 'selectTranslator' => __( 'Select translator', 'wpml-translation-management' ),
msgid "of"
msgstr ""
# 'of' => __( 'of', 'wpml-translation-management' ),
# 'selectTranslator' => __( 'Select translator', 'wpml-translation-management' ),
# 'assignTranslator' => __( 'Assign', 'wpml-translation-management' ),
msgid "Select translator"
msgstr ""
# 'selectTranslator' => __( 'Select translator', 'wpml-translation-management' ),
# 'assignTranslator' => __( 'Assign', 'wpml-translation-management' ),
# 'externalActions' => __( 'External Actions', 'wpml-translation-management' ),
msgid "Assign"
msgstr ""
# 'assignTranslator' => __( 'Assign', 'wpml-translation-management' ),
# 'externalActions' => __( 'External Actions', 'wpml-translation-management' ),
# 'actions' => __( 'Actions', 'wpml-translation-management' ),
msgid "External Actions"
msgstr ""
# 'externalActions' => __( 'External Actions', 'wpml-translation-management' ),
# 'actions' => __( 'Actions', 'wpml-translation-management' ),
# 'externalActionsTooltip' => __(
msgid "Actions"
msgstr ""
# 'actions' => __( 'Actions', 'wpml-translation-management' ),
# 'externalActionsTooltip' => __(
# 'Actions that will happen on the translation service',
msgid "Actions that will happen on the translation service"
msgstr ""
# ),
# 'selectAll' => __( 'Select all', 'wpml-translation-management' ),
# 'filters' => [
msgid "Select all"
msgstr ""
# 'filters' => [
# 'id' => __( 'Job ID', 'wpml-translation-management' ),
# 'title' => __( 'Title', 'wpml-translation-management' ),
msgid "Job ID"
msgstr ""
# 'anyLanguage' => __( 'Any language', 'wpml-translation-management' ),
# 'languageFrom' => __( 'from', 'wpml-translation-management' ),
# 'languageTo' => __( 'to', 'wpml-translation-management' ),
msgid "from"
msgstr ""
# 'filter' => __( 'Filter', 'wpml-translation-management' ),
# 'asc' => __( 'Ascending', 'wpml-translation-management' ),
# 'desc' => __( 'Descending', 'wpml-translation-management' ),
msgid "Ascending"
msgstr ""
# 'asc' => __( 'Ascending', 'wpml-translation-management' ),
# 'desc' => __( 'Descending', 'wpml-translation-management' ),
# 'sort' => __( 'Sort', 'wpml-translation-management' ),
msgid "Descending"
msgstr ""
# 'desc' => __( 'Descending', 'wpml-translation-management' ),
# 'sort' => __( 'Sort', 'wpml-translation-management' ),
# 'direction' => __( 'Direction', 'wpml-translation-management' ),
msgid "Sort"
msgstr ""
# 'sort' => __( 'Sort', 'wpml-translation-management' ),
# 'direction' => __( 'Direction', 'wpml-translation-management' ),
# 'firstSort' => __( 'sort by', 'wpml-translation-management' ),
msgid "Direction"
msgstr ""
# 'direction' => __( 'Direction', 'wpml-translation-management' ),
# 'firstSort' => __( 'sort by', 'wpml-translation-management' ),
# 'secondSort' => __( 'then sort by', 'wpml-translation-management' ),
msgid "sort by"
msgstr ""
# 'firstSort' => __( 'sort by', 'wpml-translation-management' ),
# 'secondSort' => __( 'then sort by', 'wpml-translation-management' ),
# 'translatedBy' => __( 'translated by', 'wpml-translation-management' ),
msgid "then sort by"
msgstr ""
# 'secondSort' => __( 'then sort by', 'wpml-translation-management' ),
# 'translatedBy' => __( 'translated by', 'wpml-translation-management' ),
# 'with' => __( 'with', 'wpml-translation-management' ),
msgid "translated by"
msgstr ""
# 'translatedBy' => __( 'translated by', 'wpml-translation-management' ),
# 'with' => __( 'with', 'wpml-translation-management' ),
# 'sentBetween' => __( 'sent between', 'wpml-translation-management' ),
msgid "with"
msgstr ""
# 'with' => __( 'with', 'wpml-translation-management' ),
# 'sentBetween' => __( 'sent between', 'wpml-translation-management' ),
# 'deadline' => __( 'with deadline between', 'wpml-translation-management' ),
msgid "sent between"
msgstr ""
# 'sentBetween' => __( 'sent between', 'wpml-translation-management' ),
# 'deadline' => __( 'with deadline between', 'wpml-translation-management' ),
# 'reset' => __( 'Reset filters', 'wpml-translation-management' ),
msgid "with deadline between"
msgstr ""
# 'deadline' => __( 'with deadline between', 'wpml-translation-management' ),
# 'reset' => __( 'Reset filters', 'wpml-translation-management' ),
# 'selectStatus' => __( 'Select status', 'wpml-translation-management' ),
msgid "Reset filters"
msgstr ""
# 'reset' => __( 'Reset filters', 'wpml-translation-management' ),
# 'selectStatus' => __( 'Select status', 'wpml-translation-management' ),
# ],
msgid "Select status"
msgstr ""
# 'progressMessages' => [
# 'loadingJobs' => __( 'Loading jobs...', 'wpml-translation-management' ),
# 'applyingTranslations' => __( 'Downloading translations...', 'wpml-translation-management' ),
msgid "Loading jobs..."
msgstr ""
# 'loadingJobs' => __( 'Loading jobs...', 'wpml-translation-management' ),
# 'applyingTranslations' => __( 'Downloading translations...', 'wpml-translation-management' ),
# 'syncBatch' => __( 'Synchronizing batch...', 'wpml-translation-management' ),
msgid "Downloading translations..."
msgstr ""
# 'applyingTranslations' => __( 'Downloading translations...', 'wpml-translation-management' ),
# 'syncBatch' => __( 'Synchronizing batch...', 'wpml-translation-management' ),
# 'cancelJobs' => __( 'Canceling jobs...', 'wpml-translation-management' ),
msgid "Synchronizing batch..."
msgstr ""
# 'syncBatch' => __( 'Synchronizing batch...', 'wpml-translation-management' ),
# 'cancelJobs' => __( 'Canceling jobs...', 'wpml-translation-management' ),
# 'assignTranslator' => __( 'Assigning translator...', 'wpml-translation-management' ),
msgid "Canceling jobs..."
msgstr ""
# 'cancelJobs' => __( 'Canceling jobs...', 'wpml-translation-management' ),
# 'assignTranslator' => __( 'Assigning translator...', 'wpml-translation-management' ),
# 'downloadingXliff' => __( 'Downloading XLIFF file...', 'wpml-translation-management' ),
msgid "Assigning translator..."
msgstr ""
# 'assignTranslator' => __( 'Assigning translator...', 'wpml-translation-management' ),
# 'downloadingXliff' => __( 'Downloading XLIFF file...', 'wpml-translation-management' ),
# 'fixingJob' => __( 'Refreshing...'),
msgid "Downloading XLIFF file..."
msgstr ""
# 'confirmations' => [
# 'applyingTranslations' => __( 'Translations downloaded', 'wpml-translation-management' ),
# 'syncBatch' => __(
msgid "Translations downloaded"
msgstr ""
# 'applyingTranslations' => __( 'Translations downloaded', 'wpml-translation-management' ),
# 'syncBatch' => __(
# 'Batch synchronization has been sent',
msgid "Batch synchronization has been sent"
msgstr ""
# ),
# 'cancelJobs' => __( 'Jobs canceled', 'wpml-translation-management' ),
# 'assignTranslator' => __( 'Translator assigned', 'wpml-translation-management' ),
msgid "Jobs canceled"
msgstr ""
# 'cancelJobs' => __( 'Jobs canceled', 'wpml-translation-management' ),
# 'assignTranslator' => __( 'Translator assigned', 'wpml-translation-management' ),
# 'downloadingXliff' => __( 'XLIFF file downloaded', 'wpml-translation-management' ),
msgid "Translator assigned"
msgstr ""
# 'assignTranslator' => __( 'Translator assigned', 'wpml-translation-management' ),
# 'downloadingXliff' => __( 'XLIFF file downloaded', 'wpml-translation-management' ),
# 'jobFixed' => __( 'Job status updated.' ),
msgid "XLIFF file downloaded"
msgstr ""
# 'checkStatus' => [
# 'active' => __( 'Check status', 'wpml-translation-management' ),
# 'completed' => __( 'Translation is ready, no need to check its status', 'wpml-translation-management' ),
msgid "Check status"
msgstr ""
# 'active' => __( 'Check status', 'wpml-translation-management' ),
# 'completed' => __( 'Translation is ready, no need to check its status', 'wpml-translation-management' ),
# 'cancelled' => __( 'Translation is cancelled, no need to check its status', 'wpml-translation-management' ),
msgid "Translation is ready, no need to check its status"
msgstr ""
# 'completed' => __( 'Translation is ready, no need to check its status', 'wpml-translation-management' ),
# 'cancelled' => __( 'Translation is cancelled, no need to check its status', 'wpml-translation-management' ),
# 'readyToDownload' => __( 'Translation is ready to download, no need to check its status', 'wpml-translation-management' ),
msgid "Translation is cancelled, no need to check its status"
msgstr ""
# 'cancelled' => __( 'Translation is cancelled, no need to check its status', 'wpml-translation-management' ),
# 'readyToDownload' => __( 'Translation is ready to download, no need to check its status', 'wpml-translation-management' ),
# 'alreadySynced' => __( 'Translation has already been synchronized, no need to check its status', 'wpml-translation-management' ),
msgid "Translation is ready to download, no need to check its status"
msgstr ""
# 'readyToDownload' => __( 'Translation is ready to download, no need to check its status', 'wpml-translation-management' ),
# 'alreadySynced' => __( 'Translation has already been synchronized, no need to check its status', 'wpml-translation-management' ),
# 'local' => __( 'This is a local job, no need to check its status', 'wpml-translation-management' ),
msgid "Translation has already been synchronized, no need to check its status"
msgstr ""
# 'alreadySynced' => __( 'Translation has already been synchronized, no need to check its status', 'wpml-translation-management' ),
# 'local' => __( 'This is a local job, no need to check its status', 'wpml-translation-management' ),
# ],
msgid "This is a local job, no need to check its status"
msgstr ""
# 'fixJob' => [
# 'active' => __( 'Refresh job status', 'wpml-translation-management' ),
# 'disabled' => __( 'Status is up to date.', 'wpml-translation-management' ),
msgid "Refresh job status"
msgstr ""
# 'active' => __( 'Refresh job status', 'wpml-translation-management' ),
# 'disabled' => __( 'Status is up to date.', 'wpml-translation-management' ),
# 'error' => __( 'Failed to fix job status. Please try again later.' ),
msgid "Status is up to date."
msgstr ""
# 'downloadXLIFF' => [
# 'activeIconText' => __( 'Download the translated XLIFF file', 'wpml-translation-management' ),
# 'localJob' => __(
msgid "Download the translated XLIFF file"
msgstr ""
# 'activeIconText' => __( 'Download the translated XLIFF file', 'wpml-translation-management' ),
# 'localJob' => __(
# 'This is a local job so it does not have an XLIFF file to download',
msgid "This is a local job so it does not have an XLIFF file to download"
msgstr ""
# ),
# 'notReady' => __(
# 'You cannot download the translation as it has not been completed',
msgid "You cannot download the translation as it has not been completed"
msgstr ""
# ),
# 'canceled' => __(
# 'You cannot download the XLIFF file because TS_NAME has canceled the job',
msgid "You cannot download the XLIFF file because TS_NAME has canceled the job"
msgstr ""
# 'cancel' => [
# 'activeIconText' => __( 'Cancel job', 'wpml-translation-management' ),
# // translators: "%s" is replaced with the name of the translation service associated with the job.
msgid "Cancel job"
msgstr ""
# // translators: "%s" is replaced with the name of the translation service associated with the job.
# 'notLocalJob' => sprintf( __( 'Contact %s for cancellation', 'wpml-translation-management' ), $translation_service['name'] ),
# 'alreadyFinished' => __( 'The job is already finished', 'wpml-translation-management' ),
msgid "Contact %s for cancellation"
msgstr ""
# 'notLocalJob' => sprintf( __( 'Contact %s for cancellation', 'wpml-translation-management' ), $translation_service['name'] ),
# 'alreadyFinished' => __( 'The job is already finished', 'wpml-translation-management' ),
# 'alreadyCanceled' => __( 'The job is already canceled', 'wpml-translation-management' ),
msgid "The job is already finished"
msgstr ""
# 'alreadyFinished' => __( 'The job is already finished', 'wpml-translation-management' ),
# 'alreadyCanceled' => __( 'The job is already canceled', 'wpml-translation-management' ),
# ],
msgid "The job is already canceled"
msgstr ""
# 'activeIconText' => __( 'Get translations', 'wpml-translation-management' ),
# 'localJob' => __(
# 'You cannot download the translation for a local job',
msgid "You cannot download the translation for a local job"
msgstr ""
# ),
# 'completed' => __(
# 'You have already downloaded this job',
msgid "You have already downloaded this job"
msgstr ""
# ),
# 'canceled' => __(
# 'You cannot download this job because TS_NAME has canceled it',
msgid "You cannot download this job because TS_NAME has canceled it"
msgstr ""
# return array(
# ICL_TM_NOT_TRANSLATED => __( 'Cancelled', 'wpml-translation-management' ),
# ICL_TM_WAITING_FOR_TRANSLATOR => __( 'Waiting for translator', 'wpml-translation-management' ),
msgid "Cancelled"
msgstr ""
# ICL_TM_IN_PROGRESS => __( 'In progress', 'wpml-translation-management' ),
# ICL_TM_NEEDS_UPDATE => __( 'Needs update', 'wpml-translation-management' ),
# ICL_TM_TRANSLATION_READY_TO_DOWNLOAD => __(
msgid "Needs update"
msgstr ""
# ),
# ICL_TM_COMPLETE => __( 'Completed', 'wpml-translation-management' ),
# );
msgid "Completed"
msgstr ""
# 'value' => 'any',
# 'label' => __( 'Anyone', 'wpml-translation-management' ),
# ),
msgid "Anyone"
msgstr ""
# 'value' => 'any-service',
# 'label' => __( 'Any Translation Service', 'wpml-translation-management' ),
# );
msgid "Any Translation Service"
msgstr ""
# 'value' => 'any-local-translator',
# 'label' => __( 'Any WordPress Translator', 'wpml-translation-management' ),
# );
msgid "Any WordPress Translator"
msgstr ""
# 'message' => array(
# 'status' => __( 'Advanced Translation Editor is not active yet', 'wpml-translation-management' ),
# 'text' => __(
msgid "Advanced Translation Editor is not active yet"
msgstr ""
# 'status' => __( 'Advanced Translation Editor is not active yet', 'wpml-translation-management' ),
# 'text' => __(
# 'Request activation to receive an email with directions to activate the service.',
msgid "Request activation to receive an email with directions to activate the service."
msgstr ""
# ),
# 'button' => __( 'Request activation', 'wpml-translation-management' ),
# ),
msgid "Request activation"
msgstr ""
# 'message' => array(
# 'status' => __( 'Advanced Translation Editor is being activated', 'wpml-translation-management' ),
# 'text' => '',
msgid "Advanced Translation Editor is being activated"
msgstr ""
# 'message' => array(
# 'status' => __( 'Advanced Translation Editor is enabled and active', 'wpml-translation-management' ),
# 'text' => '',
msgid "Advanced Translation Editor is enabled and active"
msgstr ""
# ),
# 'button' => __( 'Advanced Translation Editor is active', 'wpml-translation-management' ),
# ),
msgid "Advanced Translation Editor is active"
msgstr ""
# 'message' => array(
# 'status' => __( "WPML's Advanced Translation Editor is enabled, but not all your translators can use it.", 'wpml-translation-management' ),
# 'text' => '',
msgid "WPML's Advanced Translation Editor is enabled, but not all your translators can use it."
msgstr ""
# public function get_synchronize_button_text() {
# return __( 'Synchronize translators and translation managers', 'wpml-translation-management' );
# }
msgid "Synchronize translators and translation managers"
msgstr ""
# 'strings' => [
# 'error_help' => sprintf( esc_html__( 'Please try again in a few minutes. If the problem persists, please contact %s.', 'wpml-translation-management' ), $wpml_support_link ),
# ],
msgid "Please try again in a few minutes. If the problem persists, please contact %s."
msgstr ""
# if ( array_key_exists( 'wizard', $args ) ) {
# $this->model['strings']['error_help'] = esc_html__( 'You can continue the Translation Management configuration later by going to WPML -> Settings -> Translation Editor.', 'wpml-translation-management' );
# }
msgid "You can continue the Translation Management configuration later by going to WPML -> Settings -> Translation Editor."
msgstr ""
# $this->custom_field_options = array(
# WPML_IGNORE_CUSTOM_FIELD => __( "Don't translate", 'wpml-translation-management' ),
# WPML_COPY_CUSTOM_FIELD => __( 'Copy from original to translation', 'wpml-translation-management' ),
msgid "Don't translate"
msgstr ""
# WPML_IGNORE_CUSTOM_FIELD => __( "Don't translate", 'wpml-translation-management' ),
# WPML_COPY_CUSTOM_FIELD => __( 'Copy from original to translation', 'wpml-translation-management' ),
# WPML_COPY_ONCE_CUSTOM_FIELD => __( 'Copy once', 'wpml-translation-management' ),
msgid "Copy from original to translation"
msgstr ""
# WPML_COPY_CUSTOM_FIELD => __( 'Copy from original to translation', 'wpml-translation-management' ),
# WPML_COPY_ONCE_CUSTOM_FIELD => __( 'Copy once', 'wpml-translation-management' ),
# WPML_TRANSLATE_CUSTOM_FIELD => __( 'Translate', 'wpml-translation-management' ),
msgid "Copy once"
msgstr ""
# WPML_COPY_ONCE_CUSTOM_FIELD => __( 'Copy once', 'wpml-translation-management' ),
# WPML_TRANSLATE_CUSTOM_FIELD => __( 'Translate', 'wpml-translation-management' ),
# );
msgid "Translate"
msgstr ""
# 'text' => $this->settings_factory->show_system_fields ?
# __( 'Hide system fields', 'wpml-translation-management' ) :
# __( 'Show system fields', 'wpml-translation-management' ),
msgid "Hide system fields"
msgstr ""
# __( 'Hide system fields', 'wpml-translation-management' ) :
# __( 'Show system fields', 'wpml-translation-management' ),
# );
msgid "Show system fields"
msgstr ""
# <div class="wpml-flex-table-cell text-center">
# <?php echo esc_html_x( 'Copy', 'Verb', 'wpml-translation-management' ); ?>
# </div>
msgctxt "Verb"
msgid "Copy"
msgstr ""
# array(
# 'message' => __( 'Invalid Request.', 'wpml-translation-management' ),
# )
msgid "Invalid Request."
msgstr ""
# 'strings' => array(
# 'displaying' => __( 'Displaying', 'wpml-translation-management' ),
# 'of' => __( 'of', 'wpml-translation-management' ),
msgid "Displaying"
msgstr ""
# 'of' => __( 'of', 'wpml-translation-management' ),
# 'display_all' => __( 'Display all results', 'wpml-translation-management' ),
# 'display_less' => __( 'Display 20 results per page', 'wpml-translation-management' ),
msgid "Display all results"
msgstr ""
# 'display_all' => __( 'Display all results', 'wpml-translation-management' ),
# 'display_less' => __( 'Display 20 results per page', 'wpml-translation-management' ),
# 'nothing_found' => __( 'Nothing found', 'wpml-translation-management' ),
msgid "Display 20 results per page"
msgstr ""
# 'display_less' => __( 'Display 20 results per page', 'wpml-translation-management' ),
# 'nothing_found' => __( 'Nothing found', 'wpml-translation-management' ),
# ),
msgid "Nothing found"
msgstr ""
# protected function get_title() {
# return __( 'Custom Fields Translation', 'wpml-translation-management' );
# }
msgid "Custom Fields Translation"
msgstr ""
# public function get_no_data_message() {
# return __( 'No custom fields found. It is possible that they will only show up here after you add more posts after installing a new plugin.', 'wpml-translation-management' );
# }
msgid "No custom fields found. It is possible that they will only show up here after you add more posts after installing a new plugin."
msgstr ""
# if('name' === $id) {
# $header = __( 'Custom fields', 'wpml-translation-management' );
# }
msgid "Custom fields"
msgstr ""
# 'strings' => array(
# 'search_for' => __( 'Search for', 'wpml-translation-management' ),
# ),
msgid "Search for"
msgstr ""
# protected function get_title() {
# return __( 'Custom Term Meta Translation', 'wpml-translation-management' );
# }
msgid "Custom Term Meta Translation"
msgstr ""
# public function get_no_data_message() {
# return __( 'No term meta found. It is possible that they will only show up here after you add/create them.', 'wpml-translation-management' );
# }
msgid "No term meta found. It is possible that they will only show up here after you add/create them."
msgstr ""
# if ( 'name' === $id ) {
# $header = __( 'Term Meta', 'wpml-translation-management' );
# }
msgid "Term Meta"
msgstr ""
#
# $main_message = __( 'Adjust links in posts so they point to the translated content', 'wpml-translation-management' );
# $complete_message = __( 'All posts have been processed. %s links were changed to point to the translated content.', 'wpml-translation-management' );
msgid "Adjust links in posts so they point to the translated content"
msgstr ""
# $main_message = __( 'Adjust links in posts so they point to the translated content', 'wpml-translation-management' );
# $complete_message = __( 'All posts have been processed. %s links were changed to point to the translated content.', 'wpml-translation-management' );
# $string_count = 0;
msgid "All posts have been processed. %s links were changed to point to the translated content."
msgstr ""
# $string_count = $strings->get_number_to_be_fixed();
# $main_message = __( 'Adjust links in posts and strings so they point to the translated content', 'wpml-translation-management' );
# $complete_message = __( 'All posts and strings have been processed. %s links were changed to point to the translated content.', 'wpml-translation-management' );
msgid "Adjust links in posts and strings so they point to the translated content"
msgstr ""
# $main_message = __( 'Adjust links in posts and strings so they point to the translated content', 'wpml-translation-management' );
# $complete_message = __( 'All posts and strings have been processed. %s links were changed to point to the translated content.', 'wpml-translation-management' );
# }
msgid "All posts and strings have been processed. %s links were changed to point to the translated content."
msgstr ""
# $data_attributes = array(
# 'post-message' => esc_attr__( 'Processing posts... %1$s of %2$s done.', 'wpml-translation-management' ),
# 'post-count' => $post_count,
msgid "Processing posts... %1$s of %2$s done."
msgstr ""
# 'post-count' => $post_count,
# 'string-message' => esc_attr__( 'Processing strings... %1$s of %2$s done.', 'wpml-translation-management' ),
# 'string-count' => $string_count,
msgid "Processing strings... %1$s of %2$s done."
msgstr ""
# }
# $output .= '>' . esc_html__( 'Scan now and adjust links', 'wpml-translation-management' ) . '</button>';
# $output .= '<span class="spinner"> </span>';
msgid "Scan now and adjust links"
msgstr ""
# date_i18n( $format, $last_picked_up ) :
# __( 'never', 'wpml-translation-management' );
#
msgid "never"
msgstr ""
# 'jobs_committed' => $isCurrentUserOnlyTranslator ? $this->jobsSentToCurrentUserWhoIsTheOnlyTranslator() : $this->jobsSentDefaultMessage(),
# 'jobs_committing' => __( 'Working...', 'wpml-translation-management' ),
# 'error_occurred' => __( 'An error occurred:', 'wpml-translation-management' ),
msgid "Working..."
msgstr ""
# 'jobs_committing' => __( 'Working...', 'wpml-translation-management' ),
# 'error_occurred' => __( 'An error occurred:', 'wpml-translation-management' ),
# 'error_not_allowed' => __(
msgid "An error occurred:"
msgstr ""
# 'error_occurred' => __( 'An error occurred:', 'wpml-translation-management' ),
# 'error_not_allowed' => __(
# 'You are not allowed to run this action.',
msgid "You are not allowed to run this action."
msgstr ""
# ),
# 'batch' => __( 'Batch', 'wpml-translation-management' ),
# 'error_no_translators' => __( 'No selected translators!', 'wpml-translation-management' ),
msgid "Batch"
msgstr ""
# 'batch' => __( 'Batch', 'wpml-translation-management' ),
# 'error_no_translators' => __( 'No selected translators!', 'wpml-translation-management' ),
# 'rollbacks' => __( 'Rollback jobs...', 'wpml-translation-management' ),
msgid "No selected translators!"
msgstr ""
# 'error_no_translators' => __( 'No selected translators!', 'wpml-translation-management' ),
# 'rollbacks' => __( 'Rollback jobs...', 'wpml-translation-management' ),
# 'rolled' => __( 'Batch rolled back', 'wpml-translation-management' ),
msgid "Rollback jobs..."
msgstr ""
# 'rollbacks' => __( 'Rollback jobs...', 'wpml-translation-management' ),
# 'rolled' => __( 'Batch rolled back', 'wpml-translation-management' ),
# 'errors' => __( 'Errors:', 'wpml-translation-management' ),
msgid "Batch rolled back"
msgstr ""
# 'rolled' => __( 'Batch rolled back', 'wpml-translation-management' ),
# 'errors' => __( 'Errors:', 'wpml-translation-management' ),
# 'sending_batch' => $isCurrentUserOnlyTranslator ?
msgid "Errors:"
msgstr ""
# 'sending_batch' => $isCurrentUserOnlyTranslator ?
# __( 'Preparing your content for translation', 'wpml-translation-management' )
# : __( 'Sending your jobs to translation', 'wpml-translation-management' ),
msgid "Preparing your content for translation"
msgstr ""
# __( 'Preparing your content for translation', 'wpml-translation-management' )
# : __( 'Sending your jobs to translation', 'wpml-translation-management' ),
# 'sending_batch_to_ts' => __(
msgid "Sending your jobs to translation"
msgstr ""
# : __( 'Sending your jobs to translation', 'wpml-translation-management' ),
# 'sending_batch_to_ts' => __(
# 'Sending your jobs to professional translation',
msgid "Sending your jobs to professional translation"
msgstr ""
# '<p>%s</p><p>%s <a href="%s"><strong>%s</strong></a></p>',
# __( 'Ready!', 'wpml-translation-management' ),
# /* translators: This text is followed by 'Translation Queue'. eg To translate those jobs, go to the Translation Queue */
msgid "Ready!"
msgstr ""
# /* translators: This text is followed by 'Translation Queue'. eg To translate those jobs, go to the Translation Queue */
# __( 'To translate those jobs, go to ', 'wpml-translation-management' ),
# admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/translations-queue.php' ),
msgid "To translate those jobs, go to "
msgstr ""
# $this->dismissNotices->renderCheckbox( self::ATE_AUTOMATIC_TRANSLATION_SUGGESTION ),
# __( 'Don’t offer this again', 'wpml-translation-management' )
# );
msgid "Don’t offer this again"
msgstr ""
# $translation_dashboard_url = admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php' );
# $translation_dashboard_text = esc_html__( 'Translation Dashboard', 'wpml-translation-management' );
# $translation_dashboard_link = '<a href="' . esc_url( $translation_dashboard_url ) . '">' . $translation_dashboard_text . '</a>';
msgid "Translation Dashboard"
msgstr ""
# $translation_notifications_url = admin_url( 'admin.php?page=' . WPML_TM_FOLDER . \WPML_Translation_Management::PAGE_SLUG_SETTINGS . '&sm=notifications' );
# $translation_notifications_text = esc_html__(
# 'WPML → Settings → Translation notifications',
msgid "WPML → Settings → Translation notifications"
msgstr ""
# $template,
# esc_html__( 'All done. What happens next?', 'wpml-translation-management' ),
# esc_html__(
msgid "All done. What happens next?"
msgstr ""
# esc_html__( 'All done. What happens next?', 'wpml-translation-management' ),
# esc_html__(
# 'WPML sent emails to the translators, telling them about the new work from you.',
msgid "WPML sent emails to the translators, telling them about the new work from you."
msgstr ""
# sprintf(
# esc_html__(
# 'Your translators should log-in to their accounts in this site and go to %1$sWPML → Translations%2$s. There, they will see the jobs that are waiting for them.',
msgid "Your translators should log-in to their accounts in this site and go to %1$sWPML → Translations%2$s. There, they will see the jobs that are waiting for them."
msgstr ""
# sprintf(
# esc_html__(
# 'You can always follow the progress of translation in the %1$s. For a more detailed view and to cancel jobs, visit the %2$s list.',
msgid "You can always follow the progress of translation in the %1$s. For a more detailed view and to cancel jobs, visit the %2$s list."
msgstr ""
# sprintf(
# esc_html__(
# 'You can control email notifications to translators and yourself in %s.',
msgid "You can control email notifications to translators and yourself in %s."
msgstr ""
# $template,
# esc_html__( 'Want to translate your content automatically?', 'wpml-translation-management' ),
# sprintf(
msgid "Want to translate your content automatically?"
msgstr ""
# sprintf(
# esc_html__(
# 'Go to %s and click the %sAutomatic Translation%s tab to create an account and start each month with 2,000 free translation credits!',
msgid "Go to %s and click the %sAutomatic Translation%s tab to create an account and start each month with 2,000 free translation credits!"
msgstr ""
# $message .= sprintf(
# esc_html__(
# 'You can check the status of these jobs in %s.',
msgid "You can check the status of these jobs in %s."
msgstr ""
# $url = admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php&sm=jobs' );
# $text = esc_html__( 'WPML → Translation Jobs', 'wpml-translation-management' );
# $link = '<a href="' . esc_url( $url ) . '">' . $text . '</a>';
msgid "WPML → Translation Jobs"
msgstr ""
# $url = admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php' );
# $text = esc_html__( 'WPML → Translation Management', 'wpml-translation-management' );
# $link = '<a href="' . esc_url( $url ) . '">' . $text . '</a>';
msgid "WPML → Translation Management"
msgstr ""
# public function emailNotSentError() {
# return '<li><strong>' . esc_html__(
# 'WPML could not send notification emails to the translators, telling them about the new work from you.',
msgid "WPML could not send notification emails to the translators, telling them about the new work from you."
msgstr ""
# public function duplicatePostTranslationWarning() {
# $message = esc_html_x(
# 'You are about to translate duplicated posts.',
msgctxt "1/2 Confirm to disconnect duplicates"
msgid "You are about to translate duplicated posts."
msgstr ""
#
# $message .= esc_html_x(
# 'These items will be automatically disconnected from originals, so translation is not lost when you update the originals.',
msgctxt "2/2 Confirm to disconnect duplicates"
msgid "These items will be automatically disconnected from originals, so translation is not lost when you update the originals."
msgstr ""
# if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'icl_disconnect_duplicates' ) ) {
# wp_send_json_error( esc_html__( 'Failed to disconnect posts', 'wpml-translation-management' ) );
# return;
msgid "Failed to disconnect posts"
msgstr ""
# if ( empty( $post_ids ) ) {
# wp_send_json_error( esc_html__( 'No duplicate posts found to disconnect.', 'wpml-translation-management' ) );
# return;
msgid "No duplicate posts found to disconnect."
msgstr ""
#
# wp_send_json_success( esc_html__( 'Successfully disconnected posts', 'wpml-translation-management' ) );
# }
msgid "Successfully disconnected posts"
msgstr ""
# 'title' => __( 'Title', 'wpml-translation-management' ),
# 'type' => __( 'Type', 'wpml-translation-management' ),
# 'status' => __( 'Status', 'wpml-translation-management' ),
msgid "Type"
msgstr ""
# 'languages' => __( 'Languages', 'wpml-translation-management' ),
# 'words' => __( 'Words to translate', 'wpml-translation-management' ),
# 'delete' => '',
msgid "Words to translate"
msgstr ""
# $languages = sprintf(
# __( '%1$s to %2$s', 'wpml-translation-management' ),
# $source_language_data,
msgid "%1$s to %2$s"
msgstr ""
# $languages = sprintf(
# __( '%1$s to %2$s and %3$s', 'wpml-translation-management' ),
# $source_language_data,
msgid "%1$s to %2$s and %3$s"
msgstr ""
# $new_qs,
# __( 'Remove from Translation Basket', 'wpml-translation-management' )
# );
msgid "Remove from Translation Basket"
msgstr ""
# if ( 'wp_block' === $post_type ) {
# $post_type_label = __( 'Reusable Block', 'wpml-translation-management' );
# }
msgid "Reusable Block"
msgstr ""
# if ( $service && $is_ate_enabled ) {
# $service_message = __( '%1$s and the %2$s use a translation memory, which can reduce the number of words you need to translate.', 'wpml-translation-management' );
# $display_message = sprintf(
msgid "%1$s and the %2$s use a translation memory, which can reduce the number of words you need to translate."
msgstr ""
# } elseif ( $service ) {
# $service_message = __( '%s uses a translation memory, which can reduce the number of words you need to translate.', 'wpml-translation-management' );
# $display_message = sprintf( $service_message, '<a class="wpml-external-link" href="' . $service->doc_url . '" target="blank">' . $service->name . '</a>' );
msgid "%s uses a translation memory, which can reduce the number of words you need to translate."
msgstr ""
# } elseif ( $is_ate_enabled ) {
# $service_message = __( 'The %s uses a translation memory, which can reduce the number of words you need to translate.', 'wpml-translation-management' );
# $display_message = sprintf( $service_message, '<a class="wpml-external-link" href="' . $ate_doc_link . '" target="blank">' . $ate_name . '</a>' );
msgid "The %s uses a translation memory, which can reduce the number of words you need to translate."
msgstr ""
# // translators: "%s" is replaced by the name of a translation service.
# $words_count_text .= sprintf( __( '%s may produce a different word count', 'wpml-translation-management' ), $service->name );
# $words_count_text .= '</a>';
msgid "%s may produce a different word count"
msgstr ""
# // translators: "%s" is replaced by the the previous string.
# $words_count_message = sprintf( __( 'The number of words WPML will send to translation (%s):', 'wpml-translation-management' ), $words_count_text );
# } else {
msgid "The number of words WPML will send to translation (%s):"
msgstr ""
# } else {
# $words_count_message = __( 'The number of words WPML will send to translation:', 'wpml-translation-management' );
# }
msgid "The number of words WPML will send to translation:"
msgstr ""
# data-tippy-zindex="999999" tabindex="0"
# title="' . esc_attr__( "WPML added this item because it's linked to another in the basket. If you wish, you can manually remove it.", 'wpml-translation-management' ) . '"
# </a>';
msgid "WPML added this item because it's linked to another in the basket. If you wish, you can manually remove it."
msgstr ""
# $post_type_label .= '<br><small>'
# . sprintf( esc_html__( 'automatically added %s', 'wpml-translation-management' ), $tooltip ) .
# '</small>';
msgid "automatically added %s"
msgstr ""
# function no_items() {
# _e( 'The basket is empty', 'wpml-translation-management' );
# }
msgid "The basket is empty"
msgstr ""
# <i class="otgs-ico-cancel"></i>
# <?php _e( 'Clear Basket', 'wpml-translation-management' ); ?>
# </a>
msgid "Clear Basket"
msgstr ""
# $message = sprintf(
# __(
# 'You\'ve sent the content for translation to %s. Please continue to their site, to make sure that the translation starts.',
msgid "You've sent the content for translation to %s. Please continue to their site, to make sure that the translation starts."
msgstr ""
# $link_text = sprintf(
# __( 'Continue to %s', 'wpml-translation-management' ),
# $current_service->name
msgid "Continue to %s"
msgstr ""
# $message = sprintf(
# __(
# 'You\'ve sent the content for translation to %1$s. Currently, we are processing it and delivering to %1$s.',
msgid "You've sent the content for translation to %1$s. Currently, we are processing it and delivering to %1$s."
msgstr ""
#
# $link_text = __( 'Check the batch delivery status', 'wpml-translation-management' );
# }
msgid "Check the batch delivery status"
msgstr ""
# if ( ! $basket ) {
# $message_content = __( 'No items found in basket', 'wpml-translation-management' );
# } else {
msgid "No items found in basket"
msgstr ""
#
# $message_content = sprintf( __( '%s items in basket:', 'wpml-translation-management' ), $total_count );
# $message_content .= $message_content_details;
msgid "%s items in basket:"
msgstr ""
# $this->group->add_field( new WPML_Editor_UI_Single_Line_Field( $id . '-title', __( 'Title', 'wpml-translation-management' ), $data, false ) );
# $this->group->add_field( new WPML_Editor_UI_Single_Line_Field( $id . '-caption', __('Caption', 'wpml-translation-management' ), $data, false ) );
# $this->group->add_field( new WPML_Editor_UI_Single_Line_Field( $id . '-alt-text', __('Alt Text', 'wpml-translation-management' ), $data, false ) );
msgid "Caption"
msgstr ""
# $this->group->add_field( new WPML_Editor_UI_Single_Line_Field( $id . '-caption', __('Caption', 'wpml-translation-management' ), $data, false ) );
# $this->group->add_field( new WPML_Editor_UI_Single_Line_Field( $id . '-alt-text', __('Alt Text', 'wpml-translation-management' ), $data, false ) );
# $this->group->add_field( new WPML_Editor_UI_Single_Line_Field( $id . '-description', __('Description', 'wpml-translation-management' ), $data, false ) );
msgid "Alt Text"
msgstr ""
# $data = array();
# $data['title'] = sprintf( __( '%1$s translation: %2$s', 'wpml-translation-management' ), $type_title, '<strong>' . $title . '</strong>' );
# $data['link_url'] = $this->job_instance->get_url( true );
msgid "%1$s translation: %2$s"
msgstr ""
# $data['link_url'] = $this->job_instance->get_url( true );
# $data['link_text'] = $this->job_instance instanceof WPML_External_Translation_Job ? '' : sprintf( __( 'View %s', 'wpml-translation-management' ), $type_title );
#
msgid "View %s"
msgstr ""
# <p>
# <?php echo esc_html( sprintf( __( 'WPML will no longer synchronize this %s with the original content.', 'wpml-translation-management' ), $this->job_instance->get_type_title() ) ); ?>
# </p>
msgid "WPML will no longer synchronize this %s with the original content."
msgstr ""
# <div id="wpml-translation-editor-copy-all-dialog" class="wpml-dialog" style="display:none"
# title="<?php echo esc_attr__( 'Copy all fields from original', 'wpml-translation-management' ); ?>">
# <p class="wpml-dialog-cols-icon">
msgid "Copy all fields from original"
msgstr ""
# <div id="wpml-translation-editor-edit-independently-dialog" class="wpml-dialog" style="display:none"
# title="<?php echo esc_attr__( 'Edit independently', 'wpml-translation-management' ); ?>">
# <p class="wpml-dialog-cols-icon">
msgid "Edit independently"
msgstr ""
# $link = 'https://wpml.org/documentation/translating-your-contents/advanced-translation-editor/?utm_source=plugin&utm_medium=gui&utm_campaign=wpmltm#html-markers';
# $notice_text = esc_html__( 'We see you\'re translating content that contains HTML. Switch to the Advanced Translation Editor to translate content without the risk of breaking your HTML code.', 'wpml-translation-management' );
# echo '<div class="notice notice-info">
msgid "We see you're translating content that contains HTML. Switch to the Advanced Translation Editor to translate content without the risk of breaking your HTML code."
msgstr ""
# echo '<div class="notice notice-info">
# <p>' . $notice_text . ' <a href="' . $link . '" class="wpml-external-link" target="_blank" rel="noopener">' . esc_html__( 'Read more...', 'wpml-translation-management' ) . '</a></p>
# </div>';
msgid "Read more..."
msgstr ""
# echo '<div class="notice notice-info">
# <p>' . esc_html__( 'This content came from the Block editor and you need to translate it carefully so that formatting is not broken.', 'wpml-translation-management' ) . '</p>
# <p><a href="https://wpml.org/documentation/getting-started-guide/translating-content-created-using-gutenberg-editor/?utm_source=plugin&utm_medium=gui&utm_campaign=wpmltm" class="wpml-external-link" target="_blank" rel="noopener">' . esc_html__( 'Learn how to translate content that comes from Block editor', 'wpml-translation-management' ) . '</a></p>
msgid "This content came from the Block editor and you need to translate it carefully so that formatting is not broken."
msgstr ""
# <p>' . esc_html__( 'This content came from the Block editor and you need to translate it carefully so that formatting is not broken.', 'wpml-translation-management' ) . '</p>
# <p><a href="https://wpml.org/documentation/getting-started-guide/translating-content-created-using-gutenberg-editor/?utm_source=plugin&utm_medium=gui&utm_campaign=wpmltm" class="wpml-external-link" target="_blank" rel="noopener">' . esc_html__( 'Learn how to translate content that comes from Block editor', 'wpml-translation-management' ) . '</a></p>
# </div>';
msgid "Learn how to translate content that comes from Block editor"
msgstr ""
# <p>
# <strong><?php echo esc_html__( 'Some fields in translation are already filled!', 'wpml-translation-management' ); ?></strong>
# <br/>
msgid "Some fields in translation are already filled!"
msgstr ""
# <br/>
# <?php echo esc_html__( 'You have two ways to copy content from the original language:', 'wpml-translation-management' ); ?>
# </p>
msgid "You have two ways to copy content from the original language:"
msgstr ""
# <ul>
# <li><?php echo esc_html__( 'copy to empty fields only', 'wpml-translation-management' ); ?></li>
# <li><?php echo esc_html__( 'copy and overwrite all fields', 'wpml-translation-management' ); ?></li>
msgid "copy to empty fields only"
msgstr ""
# <li><?php echo esc_html__( 'copy to empty fields only', 'wpml-translation-management' ); ?></li>
# <li><?php echo esc_html__( 'copy and overwrite all fields', 'wpml-translation-management' ); ?></li>
# </ul>
msgid "copy and overwrite all fields"
msgstr ""
# <button
# class="button-secondary js-copy-not-translated"><?php echo esc_html__( 'Copy to empty fields only', 'wpml-translation-management' ); ?></button>
# <button
msgid "Copy to empty fields only"
msgstr ""
# <button
# class="button-secondary js-copy-overwrite"><?php echo esc_html__( 'Copy & Overwrite all fields', 'wpml-translation-management' ); ?></button>
# </div>
msgid "Copy & Overwrite all fields"
msgstr ""
# <div class="wpml-dialog-cols-content">
# <p><?php esc_html_e( 'This document is a duplicate of:', 'wpml-translation-management' ); ?>
# <span class="wpml-duplicated-post-title">
msgid "This document is a duplicate of:"
msgstr ""
# return array(
# 'dontShowAgain' => __(
# "Don't show this again.",
msgid "Don't show this again."
msgstr ""
# ),
# 'learnMore' => __(
# '<p>The administrator has disabled term translation from the translation editor. </p>
msgid "<p>The administrator has disabled term translation from the translation editor. </p>\n<p>If your access permissions allow you can change this under \"Translation Management\" - \"Multilingual Content Setup\" - \"Block translating taxonomy terms that already got translated\". </p>\n<p>Please note that editing terms from the translation editor will affect all posts that have the respective terms associated.</p>"
msgstr ""
# ),
# 'warning' => __(
# "Please be advised that editing this term's translation here will change the value of the term in general. The changes made here, will not only affect this post!",
msgid "Please be advised that editing this term's translation here will change the value of the term in general. The changes made here, will not only affect this post!"
msgstr ""
# ),
# 'title' => __(
# 'Terms translation is disabled',
msgid "Terms translation is disabled"
msgstr ""
# ),
# 'confirm' => __(
# 'You have unsaved work. Are you sure you want to close without saving?',
msgid "You have unsaved work. Are you sure you want to close without saving?"
msgstr ""
# ),
# 'hide_translated' => __(
# 'Hide completed',
msgid "Hide completed"
msgstr ""
# ),
# 'save_and_close' => __(
# 'Save & Close',
msgid "Save & Close"
msgstr ""
# 'loading_url' => ICL_PLUGIN_URL . '/res/img/ajax-loader.gif',
# 'saving' => __(
# 'Saving...',
msgid "Saving..."
msgstr ""
# ),
# 'translation_complete' => __(
# 'Translation is complete',
msgid "Translation is complete"
msgstr ""
# 'translationMemoryEndpoint' => $translation_memory_endpoint,
# 'source_lang' => __(
# 'Original',
msgid "Original"
msgstr ""
# ),
# 'target_lang' => __(
# 'Translation to',
msgid "Translation to"
msgstr ""
# ),
# 'resign' => __(
# 'Resign',
msgid "Resign"
msgstr ""
# ),
# 'resign_translation' => __(
# 'Are you sure you want to resign from this job?',
msgid "Are you sure you want to resign from this job?"
msgstr ""
# 'resign_url' => admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/translations-queue.php&icl_tm_action=save_translation&resign=1&job_id=' . $this->job->get_id() ),
# 'confirmNavigate' => __(
# 'You have unsaved changes!',
msgid "You have unsaved changes!"
msgstr ""
# ),
# 'copy_from_original' => __(
# 'Copy from original',
msgid "Copy from original"
msgstr ""
# ),
# 'show_diff' => __( 'Show differences', 'wpml-translation-management' ),
# );
msgid "Show differences"
msgstr ""
# 'strings' => array(
# 'section_title_translator' => __( 'Notification emails to translators', 'wpml-translation-management' ),
# 'label_new_job' => __( 'Notify translators when new jobs are waiting for them', 'wpml-translation-management' ),
msgid "Notification emails to translators"
msgstr ""
# 'section_title_translator' => __( 'Notification emails to translators', 'wpml-translation-management' ),
# 'label_new_job' => __( 'Notify translators when new jobs are waiting for them', 'wpml-translation-management' ),
# 'label_include_xliff' => __( 'Include XLIFF files in the notification emails', 'wpml-translation-management' ),
msgid "Notify translators when new jobs are waiting for them"
msgstr ""
# 'label_new_job' => __( 'Notify translators when new jobs are waiting for them', 'wpml-translation-management' ),
# 'label_include_xliff' => __( 'Include XLIFF files in the notification emails', 'wpml-translation-management' ),
# 'label_resigned_job' => __( 'Notify translators when they are removed from jobs', 'wpml-translation-management' ),
msgid "Include XLIFF files in the notification emails"
msgstr ""
# 'label_include_xliff' => __( 'Include XLIFF files in the notification emails', 'wpml-translation-management' ),
# 'label_resigned_job' => __( 'Notify translators when they are removed from jobs', 'wpml-translation-management' ),
# 'section_title_manager' => __( 'Notification emails to the translation manager', 'wpml-translation-management' ),
msgid "Notify translators when they are removed from jobs"
msgstr ""
# 'label_resigned_job' => __( 'Notify translators when they are removed from jobs', 'wpml-translation-management' ),
# 'section_title_manager' => __( 'Notification emails to the translation manager', 'wpml-translation-management' ),
# 'label_completed_job' => esc_html__( 'Notify the translation manager when jobs are completed %s', 'wpml-translation-management' ),
msgid "Notification emails to the translation manager"
msgstr ""
# array(
# 'label' => __( 'immediately', 'wpml-translation-management' ),
# 'value' => self::NOTIFY_IMMEDIATELY,
msgid "immediately"
msgstr ""
# array(
# 'label' => __( 'once a day', 'wpml-translation-management' ),
# 'value' => self::NOTIFY_DAILY,
msgid "once a day"
msgstr ""
# array(
# 'label' => __( 'once a week', 'wpml-translation-management' ),
# 'value' => self::NOTIFY_WEEKLY,
msgid "once a week"
msgstr ""
# 'section_title_manager' => __( 'Notification emails to the translation manager', 'wpml-translation-management' ),
# 'label_completed_job' => esc_html__( 'Notify the translation manager when jobs are completed %s', 'wpml-translation-management' ),
# 'label_overdue_job' => esc_html__( 'Notify the translation manager when jobs are late by %s days', 'wpml-translation-management' ),
msgid "Notify the translation manager when jobs are completed %s"
msgstr ""
# 'label_completed_job' => esc_html__( 'Notify the translation manager when jobs are completed %s', 'wpml-translation-management' ),
# 'label_overdue_job' => esc_html__( 'Notify the translation manager when jobs are late by %s days', 'wpml-translation-management' ),
# ),
msgid "Notify the translation manager when jobs are late by %s days"
msgstr ""
# 'deadline' => __( 'Deadline', 'wpml-translation-management' ),
# 'check_all' => __( 'Check all', 'wpml-translation-management' ),
# 'confirm' => __( 'Are you sure you want to resign from this job?', 'wpml-translation-management' ),
msgid "Check all"
msgstr ""
# if ( ReviewStatus::doesJobNeedReview( $job ) ) {
# return $this->get_target_status( $job ) . __( 'Pending review', 'wpml-translation-management' );
# }
msgid "Pending review"
msgstr ""
# ) {
# $status = __( 'Updating', 'wpml-translation-management' );
# } else {
msgid "Updating"
msgstr ""
# if ( $job->needs_update ) {
# $status .= __( ' - (needs update)', 'wpml-translation-management' );
# }
msgid " - (needs update)"
msgstr ""
# $statuses = [
# 'draft' => __( 'Draft', 'wpml-translation-management' ) . ' — ',
# 'publish' => __( 'Published', 'wpml-translation-management' ) . ' — ',
msgid "Draft"
msgstr ""
# 'draft' => __( 'Draft', 'wpml-translation-management' ) . ' — ',
# 'publish' => __( 'Published', 'wpml-translation-management' ) . ' — ',
# ];
msgid "Published"
msgstr ""
# 'type' => 'updated',
# 'text' => __(
# "You've resigned from this job.",
msgid "You've resigned from this job."
msgstr ""
# }
# $user_message = __( 'Translation updated: ', 'wpml-translation-management' ) . $tm_post_link_updated;
# $iclTranslationManagement->add_message(
msgid "Translation updated: "
msgstr ""
# }
# $user_message = __( 'Translation added: ', 'wpml-translation-management' ) . $tm_post_link_added;
# $iclTranslationManagement->add_message(
msgid "Translation added: "
msgstr ""
# } elseif ( isset( $_GET['job-cancelled'] ) ) {
# $user_message = __( 'Translation has been removed by admin', 'wpml-translation-management' );
# $iclTranslationManagement->add_message(
msgid "Translation has been removed by admin"
msgstr ""
# <div class="wrap">
# <h2><?php echo __( 'Translations queue', 'wpml-translation-management' ); ?></h2>
#
msgid "Translations queue"
msgstr ""
# $actions = [
# 'approve' => __( 'Approve Translation Reviews', 'wpml-translation-management' ),
# ];
msgid "Approve Translation Reviews"
msgstr ""
# if ( Option::getReviewMode() === Option::HOLD_FOR_REVIEW ) {
# $actions['cancel'] = __( 'Cancel Translation Reviews', 'wpml-translation-management' );
# }
msgid "Cancel Translation Reviews"
msgstr ""
# if ( '0000-00-00 00:00:00' === $job->deadline_date ) {
# $deadline_day = __( 'Not set', 'wpml-translation-management' );
# } else {
msgid "Not set"
msgstr ""
# <div class="error below-h2">
# <p><?php _e( 'No translation languages configured for this user.', 'wpml-translation-management' ); ?></p>
# </div>
msgid "No translation languages configured for this user."
msgstr ""
# <label>
# <strong><?php _e( 'From', 'wpml-translation-management' ); ?></strong>
# <?php
msgid "From"
msgstr ""
# <label>
# <strong><?php _e( 'To', 'wpml-translation-management' ); ?></strong>
# <?php
msgid "To"
msgstr ""
# ?>
# selected="selected"<?php endif; ?>><?php _e( 'Available to translate', 'wpml-translation-management' ) ?></option>
# <option value="<?php echo ICL_TM_NEEDS_REVIEW; ?>"
msgid "Available to translate"
msgstr ""
# <td colspan="7"
# align="center"><?php _e( 'No translation jobs found', 'wpml-translation-management' ); ?></td>
# </tr>
msgid "No translation jobs found"
msgstr ""
# public function get_caption() {
# return __( 'Translators', 'wpml-translation-management' );
#
msgid "Translators"
msgstr ""
# return array(
# 'button_text' => __( 'Refresh Translation Services', 'wpml-translation-management' ),
# 'nonce' => wp_create_nonce( self::AJAX_ACTION ),
msgid "Refresh Translation Services"
msgstr ""
# array(
# 'message' => __( 'Services Refreshed.', 'wpml-translation-management' ),
# )
msgid "Services Refreshed."
msgstr ""
# array(
# 'message' => __(
# 'WPML cannot load the list of translation services. This can be a connection problem. Please wait a minute and reload this page.
msgid "WPML cannot load the list of translation services. This can be a connection problem. Please wait a minute and reload this page.\n If the problem continues, please contact WPML support."
msgstr ""
# wp_send_json_error(
# array( 'message' => __( 'It was not possible to refresh the active translation service information.', 'wpml-translation-management' ) )
# );
msgid "It was not possible to refresh the active translation service information."
msgstr ""
# $response = array(
# 'message' => __( 'You are not allowed to perform this action.', 'wpml-translation-management' ),
# 'reload' => 0,
msgid "You are not allowed to perform this action."
msgstr ""
# 'strings' => [
# 'title' => __( 'Active service:', 'wpml-translation-management' ),
# 'deactivate' => __( 'Deactivate', 'wpml-translation-management' ),
msgid "Active service:"
msgstr ""
# 'title' => __( 'Active service:', 'wpml-translation-management' ),
# 'deactivate' => __( 'Deactivate', 'wpml-translation-management' ),
# 'modal_header' => sprintf(
msgid "Deactivate"
msgstr ""
# 'modal_header' => sprintf(
# __(
# 'Enter here your %s authentication details',
msgid "Enter here your %s authentication details"
msgstr ""
# $active_service->get_popup_message() :
# __( 'You can find API token at %s site', 'wpml-translation-management' ),
# 'modal_title' => sprintf(
msgid "You can find API token at %s site"
msgstr ""
# 'modal_title' => sprintf(
# __( '%s authentication', 'wpml-translation-management' ),
# $active_service->get_name()
msgid "%s authentication"
msgstr ""
# ),
# 'refresh_language_pairs' => __( 'Refresh language pairs', 'wpml-translation-management' ),
# 'refresh_ts_info' => __( 'Refresh information', 'wpml-translation-management' ),
msgid "Refresh language pairs"
msgstr ""
# 'refresh_language_pairs' => __( 'Refresh language pairs', 'wpml-translation-management' ),
# 'refresh_ts_info' => __( 'Refresh information', 'wpml-translation-management' ),
# 'documentation_lower' => __( 'documentation', 'wpml-translation-management' ),
msgid "Refresh information"
msgstr ""
# 'refresh_ts_info' => __( 'Refresh information', 'wpml-translation-management' ),
# 'documentation_lower' => __( 'documentation', 'wpml-translation-management' ),
# 'refreshing_ts_message' => __(
msgid "documentation"
msgstr ""
# 'documentation_lower' => __( 'documentation', 'wpml-translation-management' ),
# 'refreshing_ts_message' => __(
# 'Refreshing translation service information...',
msgid "Refreshing translation service information..."
msgstr ""
# /* translators: sentence 1/3: create account with the translation service ("%1$s" is the service name) */
# $authentication_message[] = __(
# 'To send content for translation to %1$s, you need to have an %1$s account.',
msgid "To send content for translation to %1$s, you need to have an %1$s account."
msgstr ""
# /* translators: sentence 2/3: create account with the translation service ("one" is "one account) */
# $authentication_message[] = __(
# "If you don't have one, you can create it after clicking the authenticate button.",
msgid "If you don't have one, you can create it after clicking the authenticate button."
msgstr ""
# /* translators: sentence 3/3: create account with the translation service ("%2$s" is "documentation") */
# $authentication_message[] = __(
# 'Please, check the %2$s page for more details.',
msgid "Please, check the %2$s page for more details."
msgstr ""
# 'description' => implode( ' ', $authentication_message ),
# 'authenticate_button' => __( 'Authenticate', 'wpml-translation-management' ),
# 'de_authorize_button' => __( 'De-authorize', 'wpml-translation-management' ),
msgid "Authenticate"
msgstr ""
# 'authenticate_button' => __( 'Authenticate', 'wpml-translation-management' ),
# 'de_authorize_button' => __( 'De-authorize', 'wpml-translation-management' ),
# 'update_credentials_button' => __( 'Update credentials', 'wpml-translation-management' ),
msgid "De-authorize"
msgstr ""
# 'de_authorize_button' => __( 'De-authorize', 'wpml-translation-management' ),
# 'update_credentials_button' => __( 'Update credentials', 'wpml-translation-management' ),
# 'is_authorized' => self::isAuthorizedText( $active_service->get_name() ),
msgid "Update credentials"
msgstr ""
# $isAuthorized = sprintf(
# __( 'Success! You can now send content to %s.', 'wpml-translation-management' ),
# $serviceName
msgid "Success! You can now send content to %s."
msgstr ""
# $isAuthorized .= sprintf(
# __( 'Go to the %s to choose the content and send it to translation.', 'wpml-translation-management' ),
# $dashboard
msgid "Go to the %s to choose the content and send it to translation."
msgstr ""
# [ $this, 'is_valid_request_with_params' ],
# __( 'Service activated.', 'wpml-translation-management' ),
# __(
msgid "Service activated."
msgstr ""
# __( 'Service activated.', 'wpml-translation-management' ),
# __(
# 'The authentication didn\'t work. Please make sure you entered your details correctly and try again.',
msgid "The authentication didn't work. Please make sure you entered your details correctly and try again."
msgstr ""
# [ $this, 'is_valid_request_with_params' ],
# __( 'Service credentials updated.', 'wpml-translation-management' ),
# __(
msgid "Service credentials updated."
msgstr ""
# [ $this, 'is_valid_request' ],
# __( 'Service invalidated.', 'wpml-translation-management' ),
# __( 'Unable to invalidate this service. Please contact WPML support.', 'wpml-translation-management' )
msgid "Service invalidated."
msgstr ""
# __( 'Service invalidated.', 'wpml-translation-management' ),
# __( 'Unable to invalidate this service. Please contact WPML support.', 'wpml-translation-management' )
# );
msgid "Unable to invalidate this service. Please contact WPML support."
msgstr ""
# } else {
# return $this->send_error_message( __( 'Invalid Request', 'wpml-translation-management' ) );
# }
msgid "Invalid Request"
msgstr ""
# 'strings' => [
# 'translation_services' => __( 'Translation Services', 'wpml-translation-management' ),
# 'translation_services_description' => __( $sectionDescription, 'wpml-translation-management' ),
msgid "Translation Services"
msgstr ""
# 'ts' => [
# 'different' => __( 'Looking for a different translation service?', 'wpml-translation-management' ),
# 'tell_us_url' => DocPage::addTranslationServiceForm(),
msgid "Looking for a different translation service?"
msgstr ""
# 'tell_us_url' => DocPage::addTranslationServiceForm(),
# 'tell_us' => __( 'Tell us which one', 'wpml-translation-management' ),
# ],
msgid "Tell us which one"
msgstr ""
# 'link' => admin_url( 'plugin-install.php?tab=commercial#repository-wpml' ),
# 'text' => __(
# 'Please register WPML to enable the professional translation option',
msgid "Please register WPML to enable the professional translation option"
msgstr ""
# $servicesAPI->get_translation_services( false ),
# __( 'Other Translation Services', 'wpml-translation-management' )
# );
msgid "Other Translation Services"
msgstr ""
# $servicesAPI->get_translation_management_systems(),
# __( 'Translation Management System', 'wpml-translation-management' )
# );
msgid "Translation Management System"
msgstr ""
# $headers = [
# 'regular' => __( 'Partner Translation Services', 'wpml-translation-management' ),
# 'inCountry' => __(
msgid "Partner Translation Services"
msgstr ""
# ),
# 'otherCountries' => __(
# 'Other Partner Translation Services from Around the World',
msgid "Other Partner Translation Services from Around the World"
msgstr ""
# 'strings' => array(
# 'numberOfTranslationStringsSingle' => __( '%d translation job', 'wpml-translation-management' ),
# 'numberOfTranslationStringsMulti' => __( '%d translation jobs', 'wpml-translation-management' ),
msgid "%d translation job"
msgstr ""
# 'numberOfTranslationStringsSingle' => __( '%d translation job', 'wpml-translation-management' ),
# 'numberOfTranslationStringsMulti' => __( '%d translation jobs', 'wpml-translation-management' ),
# 'stringsSentToTranslationSingle' => __(
msgid "%d translation jobs"
msgstr ""
# 'numberOfTranslationStringsMulti' => __( '%d translation jobs', 'wpml-translation-management' ),
# 'stringsSentToTranslationSingle' => __(
# '%s has been sent to remote translators',
msgid "%s has been sent to remote translators"
msgstr ""
# ),
# 'stringsSentToTranslationMulti' => __(
# '%s have been sent to remote translators',
msgid "%s have been sent to remote translators"
msgstr ""
# 'buttonText' => __( 'Check status and get translations', 'wpml-translation-management' ),
# 'progressText' => __(
# "Checking translation jobs status. Please don't close this page!",
msgid "Checking translation jobs status. Please don't close this page!"
msgstr ""
# ),
# 'progressJobsCount' => __( 'You are downloading %d jobs', 'wpml-translation-management' ),
#
msgid "You are downloading %d jobs"
msgstr ""
#
# 'statusChecked' => __( 'Status checked:', 'wpml-translation-management' ),
# 'dismissNotice' => __( 'Dismiss this notice.', 'wpml-translation-management' ),
msgid "Status checked:"
msgstr ""
# 'statusChecked' => __( 'Status checked:', 'wpml-translation-management' ),
# 'dismissNotice' => __( 'Dismiss this notice.', 'wpml-translation-management' ),
# 'noTranslationsDownloaded' => __(
msgid "Dismiss this notice."
msgstr ""
# 'dismissNotice' => __( 'Dismiss this notice.', 'wpml-translation-management' ),
# 'noTranslationsDownloaded' => __(
# 'none of your translation jobs have been completed',
msgid "none of your translation jobs have been completed"
msgstr ""
# ),
# 'translationsDownloaded' => __(
# '%d translation jobs have been finished and applied.',
msgid "%d translation jobs have been finished and applied."
msgstr ""
#
# 'errorMessage' => __(
# 'A communication error has appeared. Please wait a few minutes and try again.',
msgid "A communication error has appeared. Please wait a few minutes and try again."
msgstr ""
#
# 'lastCheck' => __( 'Last check: %s', 'wpml-translation-management' ),
# 'never' => __( 'never', 'wpml-translation-management' ),
msgid "Last check: %s"
msgstr ""
# 'strings' => array(
# 'title' => __( 'Problem receiving translation jobs?', 'wpml-translation-management' ),
# 'description' => __( 'WPML needs to update its table of translation jobs, so that your site can continue receiving completed translations. This process will take a few minutes and does not modify content or translations in your site.', 'wpml-translation-management' ),
msgid "Problem receiving translation jobs?"
msgstr ""
# 'title' => __( 'Problem receiving translation jobs?', 'wpml-translation-management' ),
# 'description' => __( 'WPML needs to update its table of translation jobs, so that your site can continue receiving completed translations. This process will take a few minutes and does not modify content or translations in your site.', 'wpml-translation-management' ),
# 'button' => __( 'Start update', 'wpml-translation-management' ),
msgid "WPML needs to update its table of translation jobs, so that your site can continue receiving completed translations. This process will take a few minutes and does not modify content or translations in your site."
msgstr ""
# 'description' => __( 'WPML needs to update its table of translation jobs, so that your site can continue receiving completed translations. This process will take a few minutes and does not modify content or translations in your site.', 'wpml-translation-management' ),
# 'button' => __( 'Start update', 'wpml-translation-management' ),
# /* translators: this is shown between two number: processed items and total number of items to process */
msgid "Start update"
msgstr ""
# 'of' => __( 'of', 'wpml-translation-management' ),
# 'jobs_migrated' => __( 'jobs fixed', 'wpml-translation-management' ),
# 'communicationError' => __(
msgid "jobs fixed"
msgstr ""
# 'jobs_migrated' => __( 'jobs fixed', 'wpml-translation-management' ),
# 'communicationError' => __(
# 'The communication error with Translation Proxy has appeared. Please try later.',
msgid "The communication error with Translation Proxy has appeared. Please try later."
msgstr ""
# $tm_url = '<a href="' . admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php' ) . '">' . __( 'Translation Dashboard', 'sitepress' ) . '</a>';
# $description = sprintf( __( 'WPML completed updating the translations history. Next, please visit the %s and click on the button to "Check status and get translations".', 'wpml-translation-management' ), $tm_url );
#
msgid "WPML completed updating the translations history. Next, please visit the %s and click on the button to \"Check status and get translations\"."
msgstr ""
# 'strings' => array(
# 'title' => __( 'WPML Translation Jobs Migration', 'wpml-translation-management' ),
# /* translators: the placeholder is replaced with the current version of WPML */
msgid "WPML Translation Jobs Migration"
msgstr ""
# /* translators: the placeholder is replaced with the current version of WPML */
# 'description' => sprintf( __( 'WPML found some remote jobs on your site that must be migrated in order to work with WPML %s. You might not be able to access some of the WPML administration pages until this migration is fully completed.', 'wpml-translation-management' ), ICL_SITEPRESS_VERSION ),
# 'button' => __( 'Run now', 'wpml-translation-management' ),
msgid "WPML found some remote jobs on your site that must be migrated in order to work with WPML %s. You might not be able to access some of the WPML administration pages until this migration is fully completed."
msgstr ""
# 'description' => sprintf( __( 'WPML found some remote jobs on your site that must be migrated in order to work with WPML %s. You might not be able to access some of the WPML administration pages until this migration is fully completed.', 'wpml-translation-management' ), ICL_SITEPRESS_VERSION ),
# 'button' => __( 'Run now', 'wpml-translation-management' ),
# /* translators: this is shown between two number: processed items and total number of items to process */
msgid "Run now"
msgstr ""
# 'of' => __( 'of', 'wpml-translation-management' ),
# 'jobs_migrated' => __( 'jobs migrated', 'wpml-translation-management' ),
# 'communicationError' => __(
msgid "jobs migrated"
msgstr ""
# 'title' => sprintf(
# __( 'How to work correctly with %s', 'wpml-translation-management' ),
# $service->name
msgid "How to work correctly with %s"
msgstr ""
# 'description' => sprintf(
# __(
# "Congratulations for choosing %s to translate your site's content. To avoid high costs and wasted time, please watch our short video.",
msgid "Congratulations for choosing %s to translate your site's content. To avoid high costs and wasted time, please watch our short video."
msgstr ""
# ),
# 'need_help' => __( 'Need help? See ', 'wpml-translation-management' ),
# 'help_caption' => __(
msgid "Need help? See "
msgstr ""
# 'need_help' => __( 'Need help? See ', 'wpml-translation-management' ),
# 'help_caption' => __(
# 'how to translate different parts of the site.',
msgid "how to translate different parts of the site."
msgstr ""
# ),
# 'this_stuff_is_important' => __( 'This stuff is actually important. Please follow the video to send a test translation. Then, you can dismiss this message. Thank you!', 'wpml-translation-management' ),
# 'my_test_translation_went_fine' => __( 'My test translation went fine.', 'wpml-translation-management' ),
msgid "This stuff is actually important. Please follow the video to send a test translation. Then, you can dismiss this message. Thank you!"
msgstr ""
# 'this_stuff_is_important' => __( 'This stuff is actually important. Please follow the video to send a test translation. Then, you can dismiss this message. Thank you!', 'wpml-translation-management' ),
# 'my_test_translation_went_fine' => __( 'My test translation went fine.', 'wpml-translation-management' ),
# 'dismiss' => __( 'Dismiss this message.', 'wpml-translation-management' ),
msgid "My test translation went fine."
msgstr ""
# 'my_test_translation_went_fine' => __( 'My test translation went fine.', 'wpml-translation-management' ),
# 'dismiss' => __( 'Dismiss this message.', 'wpml-translation-management' ),
# ),
msgid "Dismiss this message."
msgstr ""
# $model = (object) [
# 'title' => __( 'Site Moved or Copied - Action Required', 'wpml-translation-management' ),
# 'intro' => __( 'Looks like this site is a copy of a different site, or moved to a different URL.', 'wpml-translation-management' ),
msgid "Site Moved or Copied - Action Required"
msgstr ""
# 'title' => __( 'Site Moved or Copied - Action Required', 'wpml-translation-management' ),
# 'intro' => __( 'Looks like this site is a copy of a different site, or moved to a different URL.', 'wpml-translation-management' ),
# 'radio_option_1' => __( 'I moved the site to this new URL', 'wpml-translation-management' ),
msgid "Looks like this site is a copy of a different site, or moved to a different URL."
msgstr ""
# 'intro' => __( 'Looks like this site is a copy of a different site, or moved to a different URL.', 'wpml-translation-management' ),
# 'radio_option_1' => __( 'I moved the site to this new URL', 'wpml-translation-management' ),
# 'radio_option_2' => __( 'This is a copy of my original site', 'wpml-translation-management' ),
msgid "I moved the site to this new URL"
msgstr ""
# 'radio_option_1' => __( 'I moved the site to this new URL', 'wpml-translation-management' ),
# 'radio_option_2' => __( 'This is a copy of my original site', 'wpml-translation-management' ),
# 'btn_text' => __( 'Save', 'wpml-translation-management' ),
msgid "This is a copy of my original site"
msgstr ""
# 'btn_text' => __( 'Save', 'wpml-translation-management' ),
# 'link_text' => __( 'More details', 'wpml-translation-management' ),
# ];
msgid "More details"
msgstr ""
# 'title' => __( 'Site Moved or Copied - Action Required', 'wpml-translation-management' ),
# 'intro' => __( 'Looks like this site is a copy of a different site, or moved to a different URL. Please contact your translation manager to update Translation Management plugin configuration.', 'wpml-translation-management' ),
# ];
msgid "Looks like this site is a copy of a different site, or moved to a different URL. Please contact your translation manager to update Translation Management plugin configuration."
msgstr ""
# 'warning' => sprintf(
# __( '%sTranslation in progress - wait before editing%s', 'wpml-translation-management' ),
# '<strong>',
msgid "%sTranslation in progress - wait before editing%s"
msgstr ""
# ),
# 'message' => __( 'This page that you are editing is being translated right now. If you edit now, some or all of the translation for this page may be missing. It\'s best to wait until translation completes, then edit and update the translation.', 'wpml-translation-management' ),
# 'go_back_button' => __( 'Take me back', 'wpml-translation-management' ),
msgid "This page that you are editing is being translated right now. If you edit now, some or all of the translation for this page may be missing. It's best to wait until translation completes, then edit and update the translation."
msgstr ""
# 'message' => __( 'This page that you are editing is being translated right now. If you edit now, some or all of the translation for this page may be missing. It\'s best to wait until translation completes, then edit and update the translation.', 'wpml-translation-management' ),
# 'go_back_button' => __( 'Take me back', 'wpml-translation-management' ),
# 'edit_anyway_button' => __( 'I understand - continue editing', 'wpml-translation-management' ),
msgid "Take me back"
msgstr ""
# 'go_back_button' => __( 'Take me back', 'wpml-translation-management' ),
# 'edit_anyway_button' => __( 'I understand - continue editing', 'wpml-translation-management' ),
# 'do_not_show_again' => __( "Don't show this warning again", 'wpml-translation-management' ),
msgid "I understand - continue editing"
msgstr ""
# 'edit_anyway_button' => __( 'I understand - continue editing', 'wpml-translation-management' ),
# 'do_not_show_again' => __( "Don't show this warning again", 'wpml-translation-management' ),
# 'do_not_show_again_action' => self::DO_NOT_SHOW_AGAIN_EDIT_ORIGINAL_TRANSLATION_IN_PROGRESS_ACTION,
msgid "Don't show this warning again"
msgstr ""
# 'warning' => sprintf(
# __( '%sWarning:%s You are trying to edit a translation that is currently in the process of being added using WPML.', 'wpml-translation-management' ),
# '<strong>',
msgid "%sWarning:%s You are trying to edit a translation that is currently in the process of being added using WPML."
msgstr ""
# 'check_dashboard' => sprintf(
# __( 'Please refer to the <a href="%s">Translation Management dashboard</a> for the exact status of this translation.', 'wpml-translation-management' ),
# admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php&' )
msgid "Please refer to the <a href=\"%s\">Translation Management dashboard</a> for the exact status of this translation."
msgstr ""
# 'warning' => sprintf(
# __( '%sWarning:%s You are trying to edit a translation using the standard WordPress editor but your site is configured to use the WPML Translation Editor.', 'wpml-translation-management' ),
# '<strong>',
msgid "%sWarning:%s You are trying to edit a translation using the standard WordPress editor but your site is configured to use the WPML Translation Editor."
msgstr ""
# ),
# 'go_back_button' => __( 'Go back', 'wpml-translation-management' ),
# 'edit_anyway_button' => __( 'Edit anyway', 'wpml-translation-management' ),
msgid "Go back"
msgstr ""
# 'go_back_button' => __( 'Go back', 'wpml-translation-management' ),
# 'edit_anyway_button' => __( 'Edit anyway', 'wpml-translation-management' ),
# 'open_in_te_button' => __( 'Open in Translation Editor', 'wpml-translation-management' ),
msgid "Edit anyway"
msgstr ""
# 'edit_anyway_button' => __( 'Edit anyway', 'wpml-translation-management' ),
# 'open_in_te_button' => __( 'Open in Translation Editor', 'wpml-translation-management' ),
# 'translation_editor_url' => $this->get_translation_editor_link( $post_element ),
msgid "Open in Translation Editor"
msgstr ""
# 'warning' => sprintf(
# __('%sWarning:%s You are trying to add a translation using the standard WordPress editor but your site is configured to use the WPML Translation Editor.' , 'wpml-translation-management'),
# '<strong>',
msgid "%sWarning:%s You are trying to add a translation using the standard WordPress editor but your site is configured to use the WPML Translation Editor."
msgstr ""
# 'use_tm_dashboard' => sprintf(
# __( 'You should use <a href="%s">Translation management dashboard</a> to send the original document to translation.' , 'wpml-translation-management' ),
# admin_url( 'admin.php?page=' . WPML_TM_FOLDER . '/menu/main.php' )
msgid "You should use <a href=\"%s\">Translation management dashboard</a> to send the original document to translation."
msgstr ""
# private function add_checkbox( WP_Post $post ) {
# $wpml_tm_editor = esc_html__( "Use WPML's Translation Editor", 'wpml-translation-management' );
# $checked = WPML_TM_Post_Edit_TM_Editor_Mode::is_using_tm_editor( $this->sitepress, $post->ID ) ? 'checked' : '';
msgid "Use WPML's Translation Editor"
msgstr ""
#
# $wpml_tm_editor = esc_html__( "Use WPML's Translation Editor to translate:", 'wpml-translation-management' );
# $wp_editor = esc_html__( "Use the WordPress Editor to translate:", 'wpml-translation-management' );
msgid "Use WPML's Translation Editor to translate:"
msgstr ""
# $wpml_tm_editor = esc_html__( "Use WPML's Translation Editor to translate:", 'wpml-translation-management' );
# $wp_editor = esc_html__( "Use the WordPress Editor to translate:", 'wpml-translation-management' );
# $cancel_text = esc_html__( 'Cancel', 'wpml-translation-management' );
msgid "Use the WordPress Editor to translate:"
msgstr ""
# /* translators: %s: Post name singular */
# esc_html__( 'This %s', 'wpml-translation-management' ),
# $wp_post_types[ $post->post_type ]->labels->singular_name
msgid "This %s"
msgstr ""
# /* translators: %s: Post name plural */
# esc_html__( 'All %s', 'wpml-translation-management' ),
# $wp_post_types[ $post->post_type ]->labels->name
msgid "All %s"
msgstr ""
# );
# $all_site_content = esc_html__( "All the site's content", 'wpml-translation-management' );
# $nonce = wp_create_nonce( self::NONCE_ACTION );
msgid "All the site's content"
msgstr ""
# protected function get_privacy_policy() {
# return __( 'WPML Translation Management will send the email address and name of each manager and assigned translator as well as the content itself to Advanced Translation Editor and to the translation services which are used.', 'wpml-translation-management' );
# }
msgid "WPML Translation Management will send the email address and name of each manager and assigned translator as well as the content itself to Advanced Translation Editor and to the translation services which are used."
msgstr ""
# $blocks['php']['data']['simplexml'] = array(
# 'label' => __( 'SimpleXML extension', 'wpml-translation-management' ),
# 'value' => $is_simplexml_extension_loaded ? __( 'Loaded', 'wpml-translation-management' ) : __( 'Not loaded', 'wpml-translation-management' ),
msgid "SimpleXML extension"
msgstr ""
# 'label' => __( 'SimpleXML extension', 'wpml-translation-management' ),
# 'value' => $is_simplexml_extension_loaded ? __( 'Loaded', 'wpml-translation-management' ) : __( 'Not loaded', 'wpml-translation-management' ),
# 'url' => 'http://php.net/manual/book.simplexml.php',
msgid "Loaded"
msgstr ""
# 'label' => __( 'SimpleXML extension', 'wpml-translation-management' ),
# 'value' => $is_simplexml_extension_loaded ? __( 'Loaded', 'wpml-translation-management' ) : __( 'Not loaded', 'wpml-translation-management' ),
# 'url' => 'http://php.net/manual/book.simplexml.php',
msgid "Not loaded"
msgstr ""
# 'messages' => array(
# __( 'SimpleXML extension is required for using XLIFF files in WPML Translation Management.', 'wpml-translation-management' ) => 'https://wpml.org/home/minimum-requirements/',
# ),
msgid "SimpleXML extension is required for using XLIFF files in WPML Translation Management."
msgstr ""
# 'strings' => array(
# 'title' => __( 'WPML cannot send some of the content to translation', 'wpml-translation-management' ),
# 'message' => __( 'Some of the content that you selected for translation includes fields that are encoded. Translators will not be able to work on this kind of content, so we removed it from the job.', 'wpml-translation-management' ),
msgid "WPML cannot send some of the content to translation"
msgstr ""
# 'title' => __( 'WPML cannot send some of the content to translation', 'wpml-translation-management' ),
# 'message' => __( 'Some of the content that you selected for translation includes fields that are encoded. Translators will not be able to work on this kind of content, so we removed it from the job.', 'wpml-translation-management' ),
# 'message_bottom' => __( 'To fix this problem, you need to tell WPML how these fields are encoded, so that WPML can decode them before sending for translation.', 'wpml-translation-management' ),
msgid "Some of the content that you selected for translation includes fields that are encoded. Translators will not be able to work on this kind of content, so we removed it from the job."
msgstr ""
# 'message' => __( 'Some of the content that you selected for translation includes fields that are encoded. Translators will not be able to work on this kind of content, so we removed it from the job.', 'wpml-translation-management' ),
# 'message_bottom' => __( 'To fix this problem, you need to tell WPML how these fields are encoded, so that WPML can decode them before sending for translation.', 'wpml-translation-management' ),
# 'show_fields' => __( 'show fields', 'wpml-translation-management' ),
msgid "To fix this problem, you need to tell WPML how these fields are encoded, so that WPML can decode them before sending for translation."
msgstr ""
# 'message_bottom' => __( 'To fix this problem, you need to tell WPML how these fields are encoded, so that WPML can decode them before sending for translation.', 'wpml-translation-management' ),
# 'show_fields' => __( 'show fields', 'wpml-translation-management' ),
# 'documentation' => array(
msgid "show fields"
msgstr ""
# 'error_type' => 'base64',
# 'error_message' => __( 'There are base64 encoded fields in this document', 'wpml-translation-management' ),
# 'id' => $id,
msgid "There are base64 encoded fields in this document"
msgstr ""
# return array(
# 'title' => __( 'Sending for translation', 'wpml-translation-management' ),
# 'sent_to_translation' => __( 'Items sent for translation!', 'wpml-translation-management' ),
msgid "Sending for translation"
msgstr ""
# 'title' => __( 'Sending for translation', 'wpml-translation-management' ),
# 'sent_to_translation' => __( 'Items sent for translation!', 'wpml-translation-management' ),
# 'button_done' => __( 'Done', 'wpml-translation-management' ),
msgid "Items sent for translation!"
msgstr ""
# 'sent_to_translation' => __( 'Items sent for translation!', 'wpml-translation-management' ),
# 'button_done' => __( 'Done', 'wpml-translation-management' ),
# );
msgid "Done"
msgstr ""
# if ( ! $html ) {
# $html = esc_html__( 'None found', 'wpml-translation-management' );
# }
msgid "None found"
msgstr ""
# return sprintf(
# __(
# 'Post "%1$s" will be ignored for %2$s, because it is an original post.',
msgid "Post \"%1$s\" will be ignored for %2$s, because it is an original post."
msgstr ""
# return sprintf(
# __(
# 'Post "%1$s" will be ignored for %2$s, because translation is already in progress.',
msgid "Post \"%1$s\" will be ignored for %2$s, because translation is already in progress."
msgstr ""
# return sprintf(
# __(
# 'String "%1$s" will be ignored for %2$s, because translation is already waiting for translator.',
msgid "String \"%1$s\" will be ignored for %2$s, because translation is already waiting for translator."
msgstr ""
# return sprintf(
# __(
# 'Package "%1$s" will be ignored for %2$s, because translation is already in progress.',
msgid "Package \"%1$s\" will be ignored for %2$s, because translation is already in progress."
msgstr ""
# return sprintf(
# __(
# 'Package "%1$s" will be ignored for %2$s, because it is an original post.',
msgid "Package \"%1$s\" will be ignored for %2$s, because it is an original post."
msgstr ""
# foreach ( $jobs as $job ) {
# $jobs_formatted[] = sprintf( __( 'Job %1$s: %2$s - %3$s', 'wpml-translation-management' ), $job['job_id'], $job['lang_from'], $job['lang_to'] );
# }
msgid "Job %1$s: %2$s - %3$s"
msgstr ""
# 'strings' => array(
# 'title' => esc_html__( 'Translations may delay because translators did not receive notifications', 'wpml-translation-management' ),
# 'body' => esc_html__( 'You have sent documents to translation. WPML can send notification emails to assigned translators, but translators for some languages have selected not to receive this notification.', 'wpml-translation-management' ),
msgid "Translations may delay because translators did not receive notifications"
msgstr ""
# 'title' => esc_html__( 'Translations may delay because translators did not receive notifications', 'wpml-translation-management' ),
# 'body' => esc_html__( 'You have sent documents to translation. WPML can send notification emails to assigned translators, but translators for some languages have selected not to receive this notification.', 'wpml-translation-management' ),
# 'jobs' => $jobs_formatted,
msgid "You have sent documents to translation. WPML can send notification emails to assigned translators, but translators for some languages have selected not to receive this notification."
msgstr ""
# 'bottom' => sprintf(
# esc_html__( 'You should contact your %1$s and ask them to enable the notification emails which will allow them to see when there is new work waiting for them. To enable notifications, translators need to log-in to this site, go to their user profile page and change the related option in the WPML language settings section.', 'wpml-translation-management' ),
# '<a href="' . admin_url( $translators_tab ) . '">' . esc_html__( 'translators' ) . '</a> '
msgid "You should contact your %1$s and ask them to enable the notification emails which will allow them to see when there is new work waiting for them. To enable notifications, translators need to log-in to this site, go to their user profile page and change the related option in the WPML language settings section."
msgstr ""
# private function add_actions( WPML_Notice $notice ) {
# $dismiss_action = new WPML_Notice_Action( __( 'Dismiss', 'wpml-translation-management' ), '#', true, false, false, true );
# $notice->add_action( $dismiss_action );
msgid "Dismiss"
msgstr ""
# 'title' => __( 'Title', 'wpml-translation-management' ),
# 'body' => __( 'Body', 'wpml-translation-management' ),
# 'excerpt' => __( 'Excerpt', 'wpml-translation-management' ),
msgid "Body"
msgstr ""
# 'body' => __( 'Body', 'wpml-translation-management' ),
# 'excerpt' => __( 'Excerpt', 'wpml-translation-management' ),
# ]
msgid "Excerpt"
msgstr ""
# /* translators: The placeholder will be replaced with a number (an ID) */
# __( 'External package ID: %d', 'wpml-translation-management' ),
# $original_id
msgid "External package ID: %d"
msgstr ""
# 'field_type' => 'tm-section',
# 'title' => __( 'Custom Fields', 'wpml-translation-management' ),
# 'fields' => $this->custom_fields,
msgid "Custom Fields"
msgstr ""
# 'empty_message' => '',
# 'sub_title' => __( 'Changes in these translations will affect terms in general! (Not only for this post)', 'wpml-translation-management' ),
# );
msgid "Changes in these translations will affect terms in general! (Not only for this post)"
msgstr ""
# if ( (bool) $locker_reason ) {
# $text = '<p>' . __( 'Some communications with the translation proxy are locked.', 'wpml-translation-management' ) . '</p>';
# $text .= '<p>' . $locker_reason . '</p>';
msgid "Some communications with the translation proxy are locked."
msgstr ""
# if ( 'test' === $this->wp_api->constant( 'WPML_ENVIRONMENT' ) ) {
# return __( 'The constant WPML_ENVIRONMENT is set to "Test".', 'wpml-translation-management' );
# }
msgid "The constant WPML_ENVIRONMENT is set to \"Test\"."
msgstr ""
# printf(
# __(
# 'For retrieving debug information for communication between your%1$s site and the translation system, use the <a href="%2$s">communication log</a> page.',
msgid "For retrieving debug information for communication between your%1$s site and the translation system, use the <a href=\"%2$s\">communication log</a> page."
msgstr ""
# array(
# 'msg' => __( 'Language pairs refreshed', 'wpml-translation-management' ),
# )
msgid "Language pairs refreshed"
msgstr ""
# array(
# 'msg' => __( 'Language pairs not refreshed, please try again', 'wpml-translation-management' ),
# )
msgid "Language pairs not refreshed, please try again"
msgstr ""
# $translation_service_name = 'PRO';
# $alert_2 = __( 'Only select this option if you have no pending jobs or you are sure of what you are doing.', 'wpml-translation-management' );
# } else {
msgid "Only select this option if you have no pending jobs or you are sure of what you are doing."
msgstr ""
# /* translators: Reset professional translation state ("%1$s" is the service name) */
# $alert_2 = sprintf( __( 'If you have sent content to %1$s, you should cancel the projects in %1$s system. Any work that completes after you do this reset cannot be received by your site.', 'wpml-translation-management' ), $translation_service_name );
# } else {
msgid "If you have sent content to %1$s, you should cancel the projects in %1$s system. Any work that completes after you do this reset cannot be received by your site."
msgstr ""
# } else {
# $alert_2 = __( 'Any work that completes after you do this reset cannot be received by your site.', 'wpml-translation-management' );
# }
msgid "Any work that completes after you do this reset cannot be received by your site."
msgstr ""
# 'strings' => array(
# 'title' => __( 'Reset professional translation state', 'wpml-translation-management' ),
# 'alert1' => __( 'Use this feature when you want to reset your translation process. All your existing translations will remain unchanged. Any translation work that is currently in progress will be stopped.', 'wpml-translation-management' ),
msgid "Reset professional translation state"
msgstr ""
# 'title' => __( 'Reset professional translation state', 'wpml-translation-management' ),
# 'alert1' => __( 'Use this feature when you want to reset your translation process. All your existing translations will remain unchanged. Any translation work that is currently in progress will be stopped.', 'wpml-translation-management' ),
# 'alert2' => $alert_2,
msgid "Use this feature when you want to reset your translation process. All your existing translations will remain unchanged. Any translation work that is currently in progress will be stopped."
msgstr ""
# /* translators: Reset professional translation state ("%1$s" is the service name) */
# 'checkBoxLabel' => sprintf( __( 'I am about to stop any ongoing work done by %1$s.', 'wpml-translation-management' ), $translation_service_name ),
# 'button' => __( 'Reset professional translation state', 'wpml-translation-management' ),
msgid "I am about to stop any ongoing work done by %1$s."
msgstr ""
# /* translators: Reset professional translation state confirmation ("%1$s" is the service name) */
# 'confirmation' => sprintf( __( 'Are you sure you want to reset the %1$s translation process?', 'wpml-translation-management' ), $translation_service_name ),
# 'action' => self::SCRIPT_HANDLE,
msgid "Are you sure you want to reset the %1$s translation process?"
msgstr ""
# } else {
# return $this->wpml_wp_api->wp_send_json_error( __( "You can't do that!", 'wpml-translation-management' ) );
# }
msgid "You can't do that!"
msgstr ""
# /* translators: Confirmation that translation process was reset ("%1$s" is the service name) */
# $confirm_message = sprintf( __( 'The translation process with %1$s was reset.', 'wpml-translation-management' ), $translation_service_name );
# } elseif ( $translation_service_name ) {
msgid "The translation process with %1$s was reset."
msgstr ""
# /* translators: Confirmation that site has been disconnected from translation service ("%1$s" is the service name) */
# $confirm_message = sprintf( __( 'Your site was successfully disconnected from %1$s. Go to the translators tab to connect a new %1$s account or use a different translation service.', 'wpml-translation-management' ), $translation_service_name );
# } else {
msgid "Your site was successfully disconnected from %1$s. Go to the translators tab to connect a new %1$s account or use a different translation service."
msgstr ""
# } else {
# $confirm_message = __( 'PRO translation has been reset.', 'wpml-translation-management' );
# }
msgid "PRO translation has been reset."
msgstr ""
# 'strings' => array(
# 'section_title' => __( 'WPML Translator Settings', 'wpml-translation-management' ),
# 'field_title' => __( 'Notification emails:', 'wpml-translation-management' ),
msgid "WPML Translator Settings"
msgstr ""
# 'section_title' => __( 'WPML Translator Settings', 'wpml-translation-management' ),
# 'field_title' => __( 'Notification emails:', 'wpml-translation-management' ),
# 'field_name' => WPML_User_Jobs_Notification_Settings::BLOCK_NEW_NOTIFICATION_FIELD,
msgid "Notification emails:"
msgstr ""
# 'field_name' => WPML_User_Jobs_Notification_Settings::BLOCK_NEW_NOTIFICATION_FIELD,
# 'field_text' => __( 'Send me a notification email when there is something new to translate', 'wpml-translation-management' ),
# 'checked' => $notification_input,
msgid "Send me a notification email when there is something new to translate"
msgstr ""
# data-nonce="' . wp_create_nonce( WPML_TM_Word_Count_Hooks_Factory::NONCE_ACTION ) . '"
# data-dialog-title="' . esc_attr__( 'Word count estimation', 'wpml-translation-management' ) . '"
# data-cancel="' . esc_attr__( 'Cancel', 'wpml-translation-management' ) . '"
msgid "Word count estimation"
msgstr ""
# data-cancel="' . esc_attr__( 'Cancel', 'wpml-translation-management' ) . '"
# data-loading-text="' . esc_attr__( 'Initializing...', 'wpml-translation-management' ) . '">'
# . esc_html__( 'Word count for the entire site', 'wpml-translation-management' ) . '</a>';
msgid "Initializing..."
msgstr ""
# data-loading-text="' . esc_attr__( 'Initializing...', 'wpml-translation-management' ) . '">'
# . esc_html__( 'Word count for the entire site', 'wpml-translation-management' ) . '</a>';
# }
msgid "Word count for the entire site"
msgstr ""
# 'contentType' => __( 'Type', 'wpml-translation-management' ),
# 'itemsCount' => __( 'Items', 'wpml-translation-management' ),
# 'wordCount' => __( 'Words', 'wpml-translation-management' ),
msgid "Items"
msgstr ""
# 'itemsCount' => __( 'Items', 'wpml-translation-management' ),
# 'wordCount' => __( 'Words', 'wpml-translation-management' ),
# 'estimatedTime' => __( 'Count time', 'wpml-translation-management' ),
msgid "Words"
msgstr ""
# 'wordCount' => __( 'Words', 'wpml-translation-management' ),
# 'estimatedTime' => __( 'Count time', 'wpml-translation-management' ),
# 'total' => __( 'Total', 'wpml-translation-management' ),
msgid "Count time"
msgstr ""
# 'estimatedTime' => __( 'Count time', 'wpml-translation-management' ),
# 'total' => __( 'Total', 'wpml-translation-management' ),
# 'recalculate' => __( 'Recalculate', 'wpml-translation-management' ),
msgid "Total"
msgstr ""
# 'total' => __( 'Total', 'wpml-translation-management' ),
# 'recalculate' => __( 'Recalculate', 'wpml-translation-management' ),
# 'cancel' => __( 'Cancel', 'wpml-translation-management' ),
msgid "Recalculate"
msgstr ""
# 'cancel' => __( 'Cancel', 'wpml-translation-management' ),
# 'needsRefresh' => __( 'Needs refresh - Some items of this type are not counted', 'wpml-translation-management' ),
# 'inMinute' => __( '%d minute', 'wpml-translation-management' ),
msgid "Needs refresh - Some items of this type are not counted"
msgstr ""
# 'needsRefresh' => __( 'Needs refresh - Some items of this type are not counted', 'wpml-translation-management' ),
# 'inMinute' => __( '%d minute', 'wpml-translation-management' ),
# 'inMinutes' => __( '%d minutes', 'wpml-translation-management' ),
msgid "%d minute"
msgstr ""
# 'inMinute' => __( '%d minute', 'wpml-translation-management' ),
# 'inMinutes' => __( '%d minutes', 'wpml-translation-management' ),
# 'cronWarning' => __( 'We detected a possible issue blocking the word count process. Please verify the following settings:', 'wpml-translation-management' ),
msgid "%d minutes"
msgstr ""
# 'inMinutes' => __( '%d minutes', 'wpml-translation-management' ),
# 'cronWarning' => __( 'We detected a possible issue blocking the word count process. Please verify the following settings:', 'wpml-translation-management' ),
# 'cronTips' => array(
msgid "We detected a possible issue blocking the word count process. Please verify the following settings:"
msgstr ""
# 'cronTips' => array(
# __( 'Your site should be publicly accessible or the server should have access to the site.', 'wpml-translation-management' ),
# __( 'The constant DISABLE_WP_CRON should not be set to true.', 'wpml-translation-management' ),
msgid "Your site should be publicly accessible or the server should have access to the site."
msgstr ""
# __( 'Your site should be publicly accessible or the server should have access to the site.', 'wpml-translation-management' ),
# __( 'The constant DISABLE_WP_CRON should not be set to true.', 'wpml-translation-management' ),
# ),
msgid "The constant DISABLE_WP_CRON should not be set to true."
msgstr ""
# public function get_type_name( $label = null ) {
# return __( 'String', 'wpml-translation-management' );
# }
msgid "String"
msgstr ""
#
# return __( 'Unknown string Package', 'wpml-translation-management' );
# }
msgid "Unknown string Package"
msgstr ""
# ICL_TM_COMPLETE => __( 'Translation complete', 'wpml-translation-management' ),
# ICL_STRING_TRANSLATION_PARTIAL => __( 'Partial translation', 'wpml-translation-management' ),
# ICL_TM_NEEDS_UPDATE => __( 'Translation needs update',
msgid "Partial translation"
msgstr ""
# ICL_STRING_TRANSLATION_PARTIAL => __( 'Partial translation', 'wpml-translation-management' ),
# ICL_TM_NEEDS_UPDATE => __( 'Translation needs update',
# 'wpml-translation-management' ),
msgid "Translation needs update"
msgstr ""
# ICL_TM_NOT_TRANSLATED => __( 'Not translated', 'wpml-translation-management' ),
# ICL_TM_WAITING_FOR_TRANSLATOR => __( 'Waiting for translator / In progress',
# 'wpml-translation-management' ),
msgid "Waiting for translator / In progress"
msgstr ""
# 'wpml-translation-management' ),
# ICL_TM_IN_BASKET => __( 'Strings in the basket', 'wpml-translation-management' ),
# ICL_TM_TRANSLATION_READY_TO_DOWNLOAD => __('Translation ready to download', 'wpml-translation-management'),
msgid "Strings in the basket"
msgstr ""
# $buttonText = $useBasket
# ? __( 'Add selected strings to translation basket', 'wpml-translation-management' )
# : __( 'Translate', 'wpml-translation-management' );
msgid "Add selected strings to translation basket"
msgstr ""
# printf(
# __( 'Estimated cost: %s USD', 'wpml-translation-management' ),
# '<span id="icl_st_estimate_' . $lang['code'] . '">0</span>'
msgid "Estimated cost: %s USD"
msgstr ""
# if ( TranslationProxy_Basket::is_string_in_basket_anywhere( $string_id ) ) {
# $text = __( 'In the translation basket', 'wpml-translation-management' );
# } else {
msgid "In the translation basket"
msgstr ""
# if ( $translation_service ) {
# $text = $text . " : " . sprintf( __( 'One or more strings sent to %s', 'wpml-translation-management' ), TranslationProxy::get_service_name( $translation_service ) );
# }
msgid "One or more strings sent to %s"
msgstr ""
# <tr>
# <th><h3><?php _e( 'Translate selected strings', 'wpml-translation-management' ) ?></h3></th>
# </tr>
msgid "Translate selected strings"
msgstr ""
# </td>
# <td><h4><?php _e( 'All languages', 'wpml-translation-management'); ?></h4></td>
# <td></td>
msgid "All languages"
msgstr ""
# disabled="disabled"
# data-lang-not-active-message="<?php _e( 'One of the selected strings is in a language that is not activate. It can not be added to the translation basket.', 'wpml-translation-management' ); ?>"
# data-more-than-one-lang-message="<?php _e( 'Strings in different languages are selected. They can not be added to the translation basket.', 'wpml-translation-management' ); ?>"
msgid "One of the selected strings is in a language that is not activate. It can not be added to the translation basket."
msgstr ""
# data-lang-not-active-message="<?php _e( 'One of the selected strings is in a language that is not activate. It can not be added to the translation basket.', 'wpml-translation-management' ); ?>"
# data-more-than-one-lang-message="<?php _e( 'Strings in different languages are selected. They can not be added to the translation basket.', 'wpml-translation-management' ); ?>"
# data-translation-basket-lang-message="<?php _e( 'You cannot add strings in this language to the basket since it already contains posts or strings of another source language! Either submit the current basket or delete the posts of differing language in the current basket', 'wpml-translation-management' ); ?>"
msgid "Strings in different languages are selected. They can not be added to the translation basket."
msgstr ""
# data-more-than-one-lang-message="<?php _e( 'Strings in different languages are selected. They can not be added to the translation basket.', 'wpml-translation-management' ); ?>"
# data-translation-basket-lang-message="<?php _e( 'You cannot add strings in this language to the basket since it already contains posts or strings of another source language! Either submit the current basket or delete the posts of differing language in the current basket', 'wpml-translation-management' ); ?>"
# ><?php echo $buttonIcon ?> <?php echo $buttonText ?></button>
msgid "You cannot add strings in this language to the basket since it already contains posts or strings of another source language! Either submit the current basket or delete the posts of differing language in the current basket"
msgstr ""
#
# $mail['body'] .= __( ' - A xliff file is attached.', 'wpml-translation-management' );
# }
msgid " - A xliff file is attached."
msgstr ""
# if ( 0 === (int) $file['size'] ) {
# $this->error = new WP_Error( 'empty_file', __( 'You are trying to import an empty file.', 'wpml-translation-management' ) );
#
msgid "You are trying to import an empty file."
msgstr ""
# if ( true !== $zopen ) {
# $this->error = new WP_Error( 'incompatible_archive', __( 'Incompatible Archive.', 'wpml-translation-management' ) );
#
msgid "Incompatible Archive."
msgstr ""
# if ( ! $info = $z->statIndex( $i ) ) {
# $this->error = new WP_Error( 'stat_failed', __( 'Could not retrieve file from archive.', 'wpml-translation-management' ) );
#
msgid "Could not retrieve file from archive."
msgstr ""
# if ( $empty_files ) {
# $this->error = new WP_Error( 'extract_failed', __( 'The archive contains one or more empty files.', 'wpml-translation-management' ), $empty_files );
#
msgid "The archive contains one or more empty files."
msgstr ""
# if ( false == $archive_files ) {
# $this->error = new WP_Error( 'incompatible_archive', __( 'You are trying to import an incompatible Archive.', 'wpml-translation-management' ), $archive->errorInfo( true ) );
#
msgid "You are trying to import an incompatible Archive."
msgstr ""
# if ( 0 === count( $archive_files ) ) {
# $this->error = new WP_Error( 'empty_archive', __( 'You are trying to import an empty archive.', 'wpml-translation-management' ) );
#
msgid "You are trying to import an empty archive."
msgstr ""
# // translators: %s: job id.
# $this->success[] = sprintf( __( 'Translation of job %s has been uploaded and completed.', 'wpml-translation-management' ), $job->job_id );
# }
msgid "Translation of job %s has been uploaded and completed."
msgstr ""
# // translators: %s: XLIFF version.
# $actions[ $key ] = sprintf( __( 'Export XLIFF %s', 'wpml-translation-management' ), $value );
# }
msgid "Export XLIFF %s"
msgstr ""
# ?>
# var error_message = "<?php echo esc_html__( 'No translation jobs were selected for export.', 'wpml-translation-management' ); ?>";
# alert( error_message );
msgid "No translation jobs were selected for export."
msgstr ""
#
# $export_label = esc_html__( 'Export all jobs:', 'wpml-translation-management' );
#
msgid "Export all jobs:"
msgstr ""
# // translators: %1: post type, %2: from language, %3: to language, %4: status.
# esc_html__( 'Export all filtered jobs of %1$s from %2$s to %3$s in %4$s:', 'wpml-translation-management' ),
# '<b>' . $type . '</b>',
msgid "Export all filtered jobs of %1$s from %2$s to %3$s in %4$s:"
msgstr ""
# <form enctype="multipart/form-data" method="post" id="translation-xliff-upload" action="">
# <label for="upload-xliff-file"><?php _e( 'Select the xliff file or zip file to upload from your computer: ', 'wpml-translation-management' ); ?></label>
# <input
msgid "Select the xliff file or zip file to upload from your computer: "
msgstr ""
# <input
# type="submit" value="<?php _e( 'Upload', 'wpml-translation-management' ); ?>"
# name="xliff_upload" id="xliff_upload" class="button-secondary action"
msgid "Upload"
msgstr ""
# <label
# for="icl_include_xliff"><?php _e( 'Include XLIFF files in notification emails', 'wpml-translation-management' ); ?></label>
# <?php
msgid "Include XLIFF files in notification emails"
msgstr ""
# type="submit"
# value="<?php esc_attr_e( 'Export', 'wpml-translation-management' ); ?>"
# <?php
msgid "Export"
msgstr ""
# <tr>
# <th><?php esc_html_e( 'Import / Export XLIFF', 'wpml-translation-management' ); ?></th>
# </tr>
msgid "Import / Export XLIFF"
msgstr ""
# <p>
# <strong><?php esc_html_e( 'SimpleXML missing!', 'wpml-translation-management' ); ?></strong>
# </p>
msgid "SimpleXML missing!"
msgstr ""
# <?php esc_html_e( 'SimpleXML extension is required for using XLIFF files in WPML Translation Management.', 'wpml-translation-management' ); ?>
# <a href="https://wpml.org/?page_id=716"><?php esc_html_e( 'WPML Minimum Requirements', 'wpml-translation-management' ); ?></a>
# </p>
msgid "WPML Minimum Requirements"
msgstr ""
# sprintf(
# __( 'The xliff file could not be read.', 'wpml-translation-management' )
# )
msgid "The xliff file could not be read."
msgstr ""
# protected function not_the_job_owner_error( $job ) {
# $message = sprintf( __( 'The translation job (%s) doesn\'t belong to you.', 'wpml-translation-management' ), $job->job_id );
#
msgid "The translation job (%s) doesn't belong to you."
msgstr ""
# protected function not_xml_file_error( $name ) {
# $message = sprintf( __( '"%s" is not a valid XLIFF file.', 'wpml-translation-management' ), $name );
#
msgid "\"%s\" is not a valid XLIFF file."
msgstr ""
# protected function invalid_xliff_error( array $missing_data = array() ) {
# $message = __( 'The uploaded xliff file does not seem to be properly formed.', 'wpml-translation-management' );
#
msgid "The uploaded xliff file does not seem to be properly formed."
msgstr ""
# if ( $missing_data ) {
# $message .= '<br>' . __( 'Missing or wrong data:', 'wpml-translation-management' );
# if ( count( $missing_data ) > 1 ) {
msgid "Missing or wrong data:"
msgstr ""
#
# return new WP_Error( 'xliff_does_not_match', __( "The uploaded xliff file doesn't belong to this system.", 'wpml-translation-management' ) );
# }
msgid "The uploaded xliff file doesn't belong to this system."
msgstr ""
# ICL_TM_NEEDS_UPDATE => __( 'needs update', 'wpml-translation-management' ),
# ICL_TM_ATE_NEEDS_RETRY => __( 'In progress (connecting)', 'wpml-translation-management' ),
# ];
msgid "In progress (connecting)"
msgstr ""
# $wcml_link = '<a href="https://wordpress.org/plugins/woocommerce-multilingual" target="_blank">WooCommerce Multilingual.</a>';
# $message .= sprintf( __( 'Looks like you are running a multilingual WooCommerce site. To easily translate WooCommerce products and categories, you should use %s', 'wpml-translation-management' ), $wcml_link );
# $args = array(
msgid "Looks like you are running a multilingual WooCommerce site. To easily translate WooCommerce products and categories, you should use %s"
msgstr ""
# $message .= '<p>';
# $message .= __( 'WPML Translation Management requires the following PHP extensions and settings:', 'wpml-translation-management' );
# $message .= '</p>';
msgid "WPML Translation Management requires the following PHP extensions and settings:"
msgstr ""
# 'type' => 'setting',
# 'type_description' => __( 'PHP Setting', 'wpml-translation-management' ),
# 'value' => '1',
msgid "PHP Setting"
msgstr ""
# 'type' => 'extension',
# 'type_description' => __( 'PHP Extension', 'wpml-translation-management' ),
# );
msgid "PHP Extension"
msgstr ""
# } elseif ( count( $this->missing ) - 1 === $counter ) {
# $sep = ' ' . __( 'and', 'wpml-translation-management' ) . ' ';
# }
msgid "and"
msgstr ""
# ?>
# <div class="message error wpml-admin-notice wpml-tm-inactive <?php echo $missing_slugs_classes; ?>"><p><?php printf( __( 'WPML Translation Management is enabled but not effective. It requires %s in order to work.', 'wpml-translation-management' ), $missing ); ?></p></div>
# <?php
msgid "WPML Translation Management is enabled but not effective. It requires %s in order to work."
msgstr ""
# $strings = array(
# 'alertTitle' => _x( 'Incomplete local translation jobs', 'Incomplete local jobs after TS activation: [response] 00 Title', 'wpml-translation-management' ),
# 'cancelledJobs' => _x( 'Cancelled local translation jobs:', 'Incomplete local jobs after TS activation: [response] 01 Cancelled', 'wpml-translation-management' ),
msgctxt "Incomplete local jobs after TS activation: [response] 00 Title"
msgid "Incomplete local translation jobs"
msgstr ""
# 'alertTitle' => _x( 'Incomplete local translation jobs', 'Incomplete local jobs after TS activation: [response] 00 Title', 'wpml-translation-management' ),
# 'cancelledJobs' => _x( 'Cancelled local translation jobs:', 'Incomplete local jobs after TS activation: [response] 01 Cancelled', 'wpml-translation-management' ),
# 'openJobs' => _x( 'Open local translation jobs:', 'Incomplete local jobs after TS activation: [response] 02 Open', 'wpml-translation-management' ),
msgctxt "Incomplete local jobs after TS activation: [response] 01 Cancelled"
msgid "Cancelled local translation jobs:"
msgstr ""
# 'cancelledJobs' => _x( 'Cancelled local translation jobs:', 'Incomplete local jobs after TS activation: [response] 01 Cancelled', 'wpml-translation-management' ),
# 'openJobs' => _x( 'Open local translation jobs:', 'Incomplete local jobs after TS activation: [response] 02 Open', 'wpml-translation-management' ),
# 'errorCancellingJobs' => _x( 'Unable to cancel some or all jobs', 'Incomplete local jobs after TS activation: [response] 03 Error', 'wpml-translation-management' ),
msgctxt "Incomplete local jobs after TS activation: [response] 02 Open"
msgid "Open local translation jobs:"
msgstr ""
# 'openJobs' => _x( 'Open local translation jobs:', 'Incomplete local jobs after TS activation: [response] 02 Open', 'wpml-translation-management' ),
# 'errorCancellingJobs' => _x( 'Unable to cancel some or all jobs', 'Incomplete local jobs after TS activation: [response] 03 Error', 'wpml-translation-management' ),
# 'errorGeneric' => _x( 'Unable to complete the action', 'Incomplete local jobs after TS activation: [response] 04 Error', 'wpml-translation-management' ),
msgctxt "Incomplete local jobs after TS activation: [response] 03 Error"
msgid "Unable to cancel some or all jobs"
msgstr ""
# 'errorCancellingJobs' => _x( 'Unable to cancel some or all jobs', 'Incomplete local jobs after TS activation: [response] 03 Error', 'wpml-translation-management' ),
# 'errorGeneric' => _x( 'Unable to complete the action', 'Incomplete local jobs after TS activation: [response] 04 Error', 'wpml-translation-management' ),
# 'keepLocalJobs' => _x( 'Local translation jobs will be kept and the above notice hidden.', 'Incomplete local jobs after TS activation: [response] 10 Close button', 'wpml-translation-management' ),
msgctxt "Incomplete local jobs after TS activation: [response] 04 Error"
msgid "Unable to complete the action"
msgstr ""
# 'errorGeneric' => _x( 'Unable to complete the action', 'Incomplete local jobs after TS activation: [response] 04 Error', 'wpml-translation-management' ),
# 'keepLocalJobs' => _x( 'Local translation jobs will be kept and the above notice hidden.', 'Incomplete local jobs after TS activation: [response] 10 Close button', 'wpml-translation-management' ),
# 'closeButton' => _x( 'Close', 'Incomplete local jobs after TS activation: [response] 20 Close button', 'wpml-translation-management' ),
msgctxt "Incomplete local jobs after TS activation: [response] 10 Close button"
msgid "Local translation jobs will be kept and the above notice hidden."
msgstr ""
# 'keepLocalJobs' => _x( 'Local translation jobs will be kept and the above notice hidden.', 'Incomplete local jobs after TS activation: [response] 10 Close button', 'wpml-translation-management' ),
# 'closeButton' => _x( 'Close', 'Incomplete local jobs after TS activation: [response] 20 Close button', 'wpml-translation-management' ),
# 'confirm' => _x( 'Are you sure you want to do this?', 'Incomplete local jobs after TS activation: [confirmation] 01 Message', 'wpml-translation-management' ),
msgctxt "Incomplete local jobs after TS activation: [response] 20 Close button"
msgid "Close"
msgstr ""
# 'closeButton' => _x( 'Close', 'Incomplete local jobs after TS activation: [response] 20 Close button', 'wpml-translation-management' ),
# 'confirm' => _x( 'Are you sure you want to do this?', 'Incomplete local jobs after TS activation: [confirmation] 01 Message', 'wpml-translation-management' ),
# 'yes' => _x( 'Yes', 'Incomplete local jobs after TS activation: [confirmation] 01 Yes', 'wpml-translation-management' ),
msgctxt "Incomplete local jobs after TS activation: [confirmation] 01 Message"
msgid "Are you sure you want to do this?"
msgstr ""
# 'confirm' => _x( 'Are you sure you want to do this?', 'Incomplete local jobs after TS activation: [confirmation] 01 Message', 'wpml-translation-management' ),
# 'yes' => _x( 'Yes', 'Incomplete local jobs after TS activation: [confirmation] 01 Yes', 'wpml-translation-management' ),
# 'no' => _x( 'No', 'Incomplete local jobs after TS activation: [confirmation] 01 No', 'wpml-translation-management' ),
msgctxt "Incomplete local jobs after TS activation: [confirmation] 01 Yes"
msgid "Yes"
msgstr ""
# 'yes' => _x( 'Yes', 'Incomplete local jobs after TS activation: [confirmation] 01 Yes', 'wpml-translation-management' ),
# 'no' => _x( 'No', 'Incomplete local jobs after TS activation: [confirmation] 01 No', 'wpml-translation-management' ),
# );
msgctxt "Incomplete local jobs after TS activation: [confirmation] 01 No"
msgid "No"
msgstr ""
# 'ID' => TranslationProxy_Service::get_wpml_translator_id( $translation_service->id ),
# 'display_name' => __( 'First available', 'wpml-translation-management' ),
# 'service' => $translation_service_name,
msgid "First available"
msgstr ""
# } catch ( WPMLTranslationProxyApiException $ex ) {
# $dropdown .= esc_html__( 'Translation Proxy error', 'wpml-translation-management' ) . ': ' . $ex->getMessage();
# } catch ( Exception $ex ) {
msgid "Translation Proxy error"
msgstr ""
# } catch ( Exception $ex ) {
# $dropdown .= esc_html__( 'Error', 'wpml-translation-management' ) . ': ' . $ex->getMessage();
# }
msgid "Error"
msgstr ""
# if ( $add_label ) {
# $dropdown = '<label for="' . esc_attr( $id ) . '">' . esc_html__( 'Translation jobs for:', 'wpml-translation-management' ) . '</label> ' . $dropdown;
# }
msgid "Translation jobs for:"
msgstr ""
# 'strings' => array(
# 'title' => __( 'Show other professional translation options', 'wpml-translation-management' ),
# 'button' => __( 'Enable other translation services', 'wpml-translation-management' ),
msgid "Show other professional translation options"
msgstr ""
# 'title' => __( 'Show other professional translation options', 'wpml-translation-management' ),
# 'button' => __( 'Enable other translation services', 'wpml-translation-management' ),
# 'message' => sprintf( __( 'Your site is currently configured to use only %s as its professional translation service.', 'wpml-translation-management' ), $ts_name ),
msgid "Enable other translation services"
msgstr ""
# 'button' => __( 'Enable other translation services', 'wpml-translation-management' ),
# 'message' => sprintf( __( 'Your site is currently configured to use only %s as its professional translation service.', 'wpml-translation-management' ), $ts_name ),
# ),
msgid "Your site is currently configured to use only %s as its professional translation service."
msgstr ""
# $this->clear_tp_default_suid();
# return $this->wpml_wp_api->wp_send_json_success( __( 'Ok!', 'wpml-translation-management' ) );
# } else {
msgid "Ok!"
msgstr ""
# } else {
# $post_title = __( 'The original has been deleted!', 'wpml-translation-management' );
# $edit_url = '';
msgid "The original has been deleted!"
msgstr ""
# printf(
# __( 'WPML Translation Management is enabled but not effective. It requires <a href="%s">WPML</a> in order to work.', 'wpml-translation-management' ),
# 'https://wpml.org/'
msgid "WPML Translation Management is enabled but not effective. It requires <a href=\"%s\">WPML</a> in order to work."
msgstr ""
# <div class="message error wpml-admin-notice wpml-tm-inactive wpml-not-configured">
# <p><?php printf( __( 'WPML Translation Management is enabled but not effective. Please finish the installation of WPML first.', 'wpml-translation-management' ) ); ?></p></div>
# <?php
msgid "WPML Translation Management is enabled but not effective. Please finish the installation of WPML first."
msgstr ""
# printf(
# __( 'WPML Translation Management is enabled but not effective. It is not compatible with <a href="%s">WPML</a> versions prior 2.0.5.', 'wpml-translation-management' ),
# 'https://wpml.org/'
msgid "WPML Translation Management is enabled but not effective. It is not compatible with <a href=\"%s\">WPML</a> versions prior 2.0.5."
msgstr ""
# ?>
# <div class="message updated wpml-admin-notice"><p><?php printf( __( 'Translation saved.', 'wpml-translation-management' ) ); ?></p></div>
# <?php
msgid "Translation saved."
msgstr ""
# ?>
# <div class="message updated wpml-admin-notice"><p><?php printf( __( 'Translation cancelled.', 'wpml-translation-management' ) ); ?></p></div>
# <?php
msgid "Translation cancelled."
msgstr ""
# }
# $menu_label = __( 'Translation Management', 'wpml-translation-management' );
#
msgid "Translation Management"
msgstr ""
# $menu['order'] = 400;
# $menu['page_title'] = __( 'Translations', 'wpml-translation-management' );
# $menu['menu_title'] = __( 'Translations', 'wpml-translation-management' );
msgid "Translations"
msgstr ""
# }
# $menu_label = __( 'Settings', 'wpml-translation-management' );
#
msgid "Settings"
msgstr ""
# $links[] = '<a href="admin.php?page=' . basename( WPML_TM_PATH ) . '/menu/main.php">' .
# __( 'Configure', 'wpml-translation-management' ) . '</a>';
# }
msgid "Configure"
msgstr ""
# /* translators: %s is replaced with current service name */
# $notification_message .= sprintf( __( 'One more step before you can use %s', 'wpml-translation-management' ), $current_service_name );
#
msgid "One more step before you can use %s"
msgstr ""
# /* translators: %1$s is replaced with current service name */
# $notification_message .= sprintf( __( 'Remember to authenticate this site\'s connection with %1$s. Before you authenticate, you cannot send jobs to translation to %1$s.', 'wpml-translation-management' ), $current_service_name );
#
msgid "Remember to authenticate this site's connection with %1$s. Before you authenticate, you cannot send jobs to translation to %1$s."
msgstr ""
# if ( $this->service_requires_translators() ) {
# $notification_message = __( 'You have selected a translation service which requires translators.', 'wpml-translation-management' );
# $service_authentication_link = '<strong>' . __( 'Add a Translator', 'wpml-translation-management' ) . ' »</strong>';
msgid "You have selected a translation service which requires translators."
msgstr ""
# $notification_message = __( 'You have selected a translation service which requires translators.', 'wpml-translation-management' );
# $service_authentication_link = '<strong>' . __( 'Add a Translator', 'wpml-translation-management' ) . ' »</strong>';
# $notification_message .= '<ul>';
msgid "Add a Translator"
msgstr ""
# /* translators: %1$s is replaced with current service name, %2$s si replaced with "Translators" tab link and %3$s is replaced with service authentication link */
# $notification_message .= sprintf( __( 'If you wish to use %1$s, please go to %2$s and use the %3$s button.', 'wpml-translation-management' ), '<strong>' . $current_service_name . '</strong>', $translators_link, $service_authentication_link );
# } else {
msgid "If you wish to use %1$s, please go to %2$s and use the %3$s button."
msgstr ""
# } else {
# $notification_message = __( 'There is a problem with your translation service.', 'wpml-translation-management' );
# $notification_message .= '<ul>';
msgid "There is a problem with your translation service."
msgstr ""
# $notification_message .= '<li>';
# $notification_message .= sprintf( __( 'Please contact your administrator.', 'wpml-translation-management' ), $translators_link, $service_authentication_link );
# }
msgid "Please contact your administrator."
msgstr ""
# /* translators: %1$s is replaced with link to "Translators" tab and %2$s is replaced with service deactivation link */
# $notification_message .= sprintf( __( 'If you wish to use only local translators, please go to %1$s and use the %2$s button.', 'wpml-translation-management' ), $translators_link, $service_deactivation_link );
# $notification_message .= '</li>';
msgid "If you wish to use only local translators, please go to %1$s and use the %2$s button."
msgstr ""
# } else {
# $error_data_string = __( "WPML can't find the translation service. Please contact WPML Support or your translation service provider.", 'wpml-translation-management' );
# }
msgid "WPML can't find the translation service. Please contact WPML Support or your translation service provider."
msgstr ""
# if ( ! $this->is_translators_tab() ) {
# $translator_tab_name = esc_html__( 'Translators Tab', 'wpml-translation-management' );
#
msgid "Translators Tab"
msgstr ""
# $notification_message .= '<li>';
# $notification_message .= sprintf( $link_pattern, $translators_url, esc_html__( 'Complete the authentication', 'wpml-translation-management' ) );
# $notification_message .= '</li>';
msgid "Complete the authentication"
msgstr ""
# 'type' => 'updated',
# 'text' => __( 'Translation (incomplete) saved.', 'wpml-translation-management' ),
# )
msgid "Translation (incomplete) saved."
msgstr ""
# 'type' => 'error',
# 'text' => __( 'Submitted data is not valid.', 'wpml-translation-management' ),
# )
msgid "Submitted data is not valid."
msgstr ""
# if ( ! $job ) {
# $validation_default_results['messages'][] = __( 'Job ID is missing', 'wpml-translation-management' );
# }
msgid "Job ID is missing"
msgstr ""
# if ( ! $original_post ) {
# $validation_default_results['messages'][] = __( 'The original post cannot be retrieved', 'wpml-translation-management' );
# }
msgid "The original post cannot be retrieved"
msgstr ""
# if ( ! $element_type_prefix ) {
# $validation_default_results['messages'][] = __( 'The type of the post cannot be retrieved', 'wpml-translation-management' );
# }
msgid "The type of the post cannot be retrieved"
msgstr ""
# $is_valid = false;
# $validation_default_results['messages'][] = __( 'This job cannot be edited anymore because a newer job for this element exists.', 'wpml-translation-management' );
# }
msgid "This job cannot be edited anymore because a newer job for this element exists."
msgstr ""
# $service = new stdClass();
# $service->name = __( '(inactive and unknown service)', 'wpml-translation-management' );
# }
msgid "(inactive and unknown service)"
msgstr ""
# $translator .= '<input type="button" class="button-secondary icl_tj_ok" value="'
# . __(
# 'Send',
msgid "Send"
msgstr ""
#
# $text = __( 'The items you have selected are now in the translation basket –', 'wpml-translation-management' );
# $text .= ' ' . sprintf( __( '<a href="%s">Send to translation »</a>', 'wpml-translation-management' ), $basket_link );
msgid "The items you have selected are now in the translation basket –"
msgstr ""
# $text = __( 'The items you have selected are now in the translation basket –', 'wpml-translation-management' );
# $text .= ' ' . sprintf( __( '<a href="%s">Send to translation »</a>', 'wpml-translation-management' ), $basket_link );
#
msgid "<a href=\"%s\">Send to translation »</a>"
msgstr ""
# 'type' => 'error',
# 'text' => __( 'Please select at least one document to translate.', 'wpml-translation-management' ),
# );
msgid "Please select at least one document to translate."
msgstr ""
# 'type' => 'error',
# 'text' => __( 'Please select at least one language to translate into.', 'wpml-translation-management' ),
# );
msgid "Please select at least one language to translate into."
msgstr ""
# 'type' => 'update',
# 'text' => __(
# 'You cannot add strings in this language to the basket since it already contains posts or strings of another source language!
msgid "You cannot add strings in this language to the basket since it already contains posts or strings of another source language!\n\t\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 ""
#
# $html .= '<h3>3. ' . __( 'Select additional options', 'wpml-translation-management' ) . ' <a href="#" id="basket_extra_fields_refresh">(' . __( 'Refresh', 'wpml-translation-management' ) . ')</a></h3>';
#
msgid "Select additional options"
msgstr ""
#
# $html .= '<h3>3. ' . __( 'Select additional options', 'wpml-translation-management' ) . ' <a href="#" id="basket_extra_fields_refresh">(' . __( 'Refresh', 'wpml-translation-management' ) . ')</a></h3>';
#
msgid "Refresh"
msgstr ""
# 'type' => 'update',
# 'text' => __(
# 'You cannot add posts in this language to the basket since it already contains posts or strings of another source language!
msgid "You cannot add posts in this language to the basket since it already contains posts or strings of another source language!\n\t\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 ""
# if ( $e->getCode() == ICL_LANGUAGE_NOT_SUPPORTED ) {
# printf( __( '<p>Requested languages are not supported by the translation service (%s). Please <a%s>contact us</a> for support. </p>', 'wpml-translation-management' ), $e->getMessage(), ' target="_blank" href="http://wpml.org/?page_id=5255"' );
# } else {
msgid "<p>Requested languages are not supported by the translation service (%s). Please <a%s>contact us</a> for support. </p>"
msgstr ""
# } else {
# printf( __( '<p>Could not add the requested languages. Please <a%s>contact us</a> for support. </p><p>Show <a%s>debug information</a>.</p>', 'wpml-translation-management' ), ' target="_blank" href="http://wpml.org/?page_id=5255"',
# ' a href="admin.php?page=' .
msgid "<p>Could not add the requested languages. Please <a%s>contact us</a> for support. </p><p>Show <a%s>debug information</a>.</p>"
msgstr ""
# $batch_data['name'] = sprintf(
# __(
# '%s: WPML Translation Jobs',
msgid "%s: WPML Translation Jobs"
msgstr ""
# if ( icl_do_not_promote() ) {
# $service_info['name'] = __( 'Translation Service', 'wpml-translation-management' );
# $service_info['logo'] = false;
msgid "Translation Service"
msgstr ""
# $output .= '<p class="icl-translation-links">';
# $output .= '<a class="icl-mail-ico" href="' . $service['contact_url'] . '" target="_blank">' . __( 'Contact', 'wpml-translation-management' ) . " {$service['name']}</a>";
# $output .= '<a id="icl_hide_promo" href="#">' . __( 'Hide this', 'wpml-translation-management' ) . '</a>';
msgid "Contact"
msgstr ""
# $output .= '<a class="icl-mail-ico" href="' . $service['contact_url'] . '" target="_blank">' . __( 'Contact', 'wpml-translation-management' ) . " {$service['name']}</a>";
# $output .= '<a id="icl_hide_promo" href="#">' . __( 'Hide this', 'wpml-translation-management' ) . '</a>';
# $output .= '</p>';
msgid "Hide this"
msgstr ""
#
# $output .= '<a class="' . $col_hidden . '" id="icl_show_promo" href="#">' . __( 'Need translators?', 'wpml-translation-management' ) . '</a>';
# }
msgid "Need translators?"
msgstr ""
# if ( 'no-ts' === $response ) {
# wp_send_json_error( array( 'message' => __( 'Please activate translation service first.', 'wpml-translation-management' ) ) );
# }
msgid "Please activate translation service first."
msgstr ""
# if ( 'cant-update' === $response ) {
# wp_send_json_error( array( 'message' => __( 'Could not update the translation pickup mode.', 'wpml-translation-management' ) ) );
# }
msgid "Could not update the translation pickup mode."
msgstr ""
#
# wp_send_json_success( array( 'message' => __( 'Ok', 'wpml-translation-management' ) ) );
# break;
msgid "Ok"
msgstr ""
# <label><input type="checkbox" name="icl_minor_edit" value="1" style="min-width:15px;"/>
# <?php esc_html_e( 'Minor edit - don\'t update translation', 'wpml-translation-management' ); ?>
# </label>
msgid "Minor edit - don't update translation"
msgstr ""
# <p>
# <strong><?php esc_html_e( 'Minor edit', 'wpml-translation-management' ); ?></strong>
# </p>
msgid "Minor edit"
msgstr ""
# <label><input type="checkbox" name="icl_minor_edit" value="1" style="min-width:15px;"/>
# <?php esc_html_e( "Don't update translation", 'wpml-translation-management' ); ?>
# </label>
msgid "Don't update translation"
msgstr ""
# $result['message'] = sprintf(
# __( 'The length of the batch name exceeds the maximum length of %s', 'wpml-translation-management' ),
# $basket_name_max_length
msgid "The length of the batch name exceeds the maximum length of %s"
msgstr ""
# $result['new_value'] = $this->get_unique_basket_name( $basket_name, $basket_name_max_length );
# $result['message'] = __(
# 'This batch name already exists and was modified to ensure unique naming',
msgid "This batch name already exists and was modified to ensure unique naming"
msgstr ""
# $result['new_value'] = $this->get_unique_basket_name( $basket_name, $basket_name_max_length );
# $result['message'] = __(
# 'The batch name was appended with the source language of its elements.',
msgid "The batch name was appended with the source language of its elements."
msgstr ""
# 'BB_default' => Basket::shouldUse()
# ? __( 'Add selected content to translation basket', 'wpml-translation-management' )
# : __( 'Translate selected content', 'wpml-translation-management' ),
msgid "Add selected content to translation basket"
msgstr ""
# ? __( 'Add selected content to translation basket', 'wpml-translation-management' )
# : __( 'Translate selected content', 'wpml-translation-management' ),
# 'BB_mixed_actions' => __(
msgid "Translate selected content"
msgstr ""
# : __( 'Translate selected content', 'wpml-translation-management' ),
# 'BB_mixed_actions' => __(
# 'Add selected content to translation basket / Duplicate',
msgid "Add selected content to translation basket / Duplicate"
msgstr ""
# 'BB_duplicate_all' => __( 'Duplicate', 'wpml-translation-management' ),
# 'BB_no_actions' => __(
# 'Choose at least one translation action',
msgid "Choose at least one translation action"
msgstr ""
# ),
# 'duplication_complete' => __(
# 'Finished Post Duplication',
msgid "Finished Post Duplication"
msgstr ""
# 'wpml_need_sync_message_nonce' => wp_create_nonce( 'wpml_need_sync_message_nonce' ),
# 'duplicating' => __( 'Duplicating', 'wpml-translation-management' ),
# 'post_parent' => __( 'Post parent', 'wpml-translation-management' ),
msgid "Duplicating"
msgstr ""
# 'duplicating' => __( 'Duplicating', 'wpml-translation-management' ),
# 'post_parent' => __( 'Post parent', 'wpml-translation-management' ),
# 'any' => __( 'Any', 'wpml-translation-management' ),
msgid "Post parent"
msgstr ""
# 'post_parent' => __( 'Post parent', 'wpml-translation-management' ),
# 'any' => __( 'Any', 'wpml-translation-management' ),
# );
msgid "Any"
msgstr ""
# $this->tab_items['dashboard'] = array(
# 'caption' => __( 'Dashboard', 'wpml-translation-management' ),
# 'current_user_can' => array( WPML_Manage_Translations_Role::CAPABILITY, 'manage_options' ),
msgid "Dashboard"
msgstr ""
# 'draft' => __( 'Draft', 'wpml-translation-management' ),
# 'pending' => __( 'Pending Review', 'wpml-translation-management' ),
# 'future' => __( 'Scheduled', 'wpml-translation-management' ),
msgid "Pending Review"
msgstr ""
# 'pending' => __( 'Pending Review', 'wpml-translation-management' ),
# 'future' => __( 'Scheduled', 'wpml-translation-management' ),
# 'private' => __( 'Private', 'wpml-translation-management' ),
msgid "Scheduled"
msgstr ""
# 'future' => __( 'Scheduled', 'wpml-translation-management' ),
# 'private' => __( 'Private', 'wpml-translation-management' ),
# );
msgid "Private"
msgstr ""
# <?php
# echo $active_service->name . ' ' . __(
# 'account status',
msgid "account status"
msgstr ""
#
# $this->heading( __( '2. Select translation options', 'wpml-translation-management' ) );
# $this->build_content_dashboard_documents_options();
msgid "2. Select translation options"
msgstr ""
# /* translators: This text will be used to build a link to the translation roles page */
# $translators_link = $this->get_translation_roles_link( __( 'at least one translator', 'wpml-translation-management' ) );
#
msgid "at least one translator"
msgstr ""
# /* translators: This text will be used to build a link to the translation services page */
# $translation_services_link = $this->get_translation_services_link( __( 'active and authenticated translation service', 'wpml-translation-management' ) );
#
msgid "active and authenticated translation service"
msgstr ""
# /* translators: %1$s contains a link to the translation roles page with "at least one translator" as a text whilst %2$s is a link to the translation services page with "active and authenticated translation service" as a text */
# $tooltip_text = __( 'To send content to translation first make sure you either have %1$s or an %2$s.', 'wpml-translation-management' );
#
msgid "To send content to translation first make sure you either have %1$s or an %2$s."
msgstr ""
# /* translators: %s is replaced with the name of the active translation service */
# $tooltip_text = __( 'To send content to translation first make sure "%s" is authenticated or you have at least one translator.', 'wpml-translation-management' );
#
msgid "To send content to translation first make sure \"%s\" is authenticated or you have at least one translator."
msgstr ""
# $dup_message = '<p>';
# $dup_message .= __( 'Any existing content (translations) will be overwritten when creating duplicates.', 'wpml-translation-management' );
# $dup_message .= '</p>';
msgid "Any existing content (translations) will be overwritten when creating duplicates."
msgstr ""
# $dup_message .= '<p>';
# $dup_message .= __( "When duplicating content, please first duplicate parent pages to maintain the site's hierarchy.", 'wpml-translation-management' );
# $dup_message .= '</p>';
msgid "When duplicating content, please first duplicate parent pages to maintain the site's hierarchy."
msgstr ""
#
# $this->heading( __( '1. Review documents for translation', 'wpml-translation-management' ) );
# ?>
msgid "1. Review documents for translation"
msgstr ""
# $basket_name_placeholder = sprintf(
# __( '%1$s|WPML|%2$s', 'wpml-translation-management' ),
# htmlspecialchars_decode( get_option( 'blogname' ), ENT_QUOTES ),
msgid "%1$s|WPML|%2$s"
msgstr ""
# 'strings' => array(
# 'heading_basket_name' => __( '2. Set a batch name and deadline', 'wpml-translation-management' ),
# 'heading_translators' => __( '3. Choose translator or Translation Service', 'wpml-translation-management' ),
msgid "2. Set a batch name and deadline"
msgstr ""
# 'heading_basket_name' => __( '2. Set a batch name and deadline', 'wpml-translation-management' ),
# 'heading_translators' => __( '3. Choose translator or Translation Service', 'wpml-translation-management' ),
# 'batch_name_label' => __( 'Batch name:', 'wpml-translation-management' ),
msgid "3. Choose translator or Translation Service"
msgstr ""
# 'heading_translators' => __( '3. Choose translator or Translation Service', 'wpml-translation-management' ),
# 'batch_name_label' => __( 'Batch name:', 'wpml-translation-management' ),
# 'batch_name_desc' => __( 'Give a name to the batch. If omitted, the default name will be applied.', 'wpml-translation-management' ),
msgid "Batch name:"
msgstr ""
# 'batch_name_label' => __( 'Batch name:', 'wpml-translation-management' ),
# 'batch_name_desc' => __( 'Give a name to the batch. If omitted, the default name will be applied.', 'wpml-translation-management' ),
# 'column_language' => __( 'Language pair', 'wpml-translation-management' ),
msgid "Give a name to the batch. If omitted, the default name will be applied."
msgstr ""
# 'batch_name_desc' => __( 'Give a name to the batch. If omitted, the default name will be applied.', 'wpml-translation-management' ),
# 'column_language' => __( 'Language pair', 'wpml-translation-management' ),
# 'column_translator' => __( 'Translator', 'wpml-translation-management' ),
msgid "Language pair"
msgstr ""
# 'column_translator' => __( 'Translator', 'wpml-translation-management' ),
# 'pro_translation_tip' => __( 'Did you know that you can also set Translation Services and professional translators will handle your translation?', 'wpml-translation-management' ),
# 'batch_deadline_label' => __( 'Suggested deadline:', 'wpml-translation-management' ),
msgid "Did you know that you can also set Translation Services and professional translators will handle your translation?"
msgstr ""
# 'pro_translation_tip' => __( 'Did you know that you can also set Translation Services and professional translators will handle your translation?', 'wpml-translation-management' ),
# 'batch_deadline_label' => __( 'Suggested deadline:', 'wpml-translation-management' ),
# 'batch_deadline_tooltip' => $tooltip_content,
msgid "Suggested deadline:"
msgstr ""
# 'batch_deadline_tooltip' => $tooltip_content,
# 'button_send_all' => __( 'Send all items for translation', 'wpml-translation-management' ),
# ),
msgid "Send all items for translation"
msgstr ""
# 'pro_translation_link' => '<br /><a href="' . admin_url( 'admin.php?page=' . WPML_TM_FOLDER . $this->get_page_slug() . '&sm=translators' ) . '">'
# . __( 'Check available Translation Services', 'wpml-translation-management' ) . '</a>',
# 'deadline_estimation_date' => $deadline_estimate_date,
msgid "Check available Translation Services"
msgstr ""
# $this->tab_items['jobs'] = array(
# 'caption' => __( 'Jobs', 'wpml-translation-management' ),
# 'current_user_can' => WPML_Manage_Translations_Role::CAPABILITY,
msgid "Jobs"
msgstr ""
# $this->tab_items['com-log'] = array(
# 'caption' => __( 'Communication Log', 'wpml-translation-management' ),
# 'current_user_can' => 'manage_options',
msgid "Communication Log"
msgstr ""
# <?php
# echo esc_attr__(
# 'You are about to delete selected items from the basket. Are you sure you want to do that?',
msgid "You are about to delete selected items from the basket. Are you sure you want to do that?"
msgstr ""
# <br />
# <input class="button-secondary" type="submit" name="tp-com-clear-log" value="<?php echo esc_attr__( 'Clear log', 'wpml-translation-management' ); ?>">
# <?php else : ?>
msgid "Clear log"
msgstr ""
#
# <input class="button-secondary" type="submit" name="tp-com-disable-log" value="<?php echo esc_attr__( 'Disable logging', 'wpml-translation-management' ); ?>">
#
msgid "Disable logging"
msgstr ""
# <br />
# <input class="button-secondary" type="submit" name="tp-com-enable-log" value="<?php echo esc_attr__( 'Enable logging', 'wpml-translation-management' ); ?>">
#
msgid "Enable logging"
msgstr ""
# echo sprintf(
# esc_html__( 'To see more items, use the filter and narrow down the search. %s', 'wpml-translation-management' ),
# '<a href="https://wpml.org/documentation/translating-your-contents/?utm_source=plugin&utm_medium=gui&utm_campaign=wpmltm" target="_blank">' . esc_html__( 'Help', 'wpml-translation-management' ) . '</a>'
msgid "To see more items, use the filter and narrow down the search. %s"
msgstr ""
# esc_html__( 'To see more items, use the filter and narrow down the search. %s', 'wpml-translation-management' ),
# '<a href="https://wpml.org/documentation/translating-your-contents/?utm_source=plugin&utm_medium=gui&utm_campaign=wpmltm" target="_blank">' . esc_html__( 'Help', 'wpml-translation-management' ) . '</a>'
# )
msgid "Help"
msgstr ""
# <div class="alignleft">
# <strong><?php echo esc_html__( 'Word count estimate:', 'wpml-translation-management' ); ?></strong>
# <?php printf( esc_html__( '%s words', 'wpml-translation-management' ), '<span id="icl-tm-estimated-words-count">0</span>' ); ?>
msgid "Word count estimate:"
msgstr ""
# <strong><?php echo esc_html__( 'Word count estimate:', 'wpml-translation-management' ); ?></strong>
# <?php printf( esc_html__( '%s words', 'wpml-translation-management' ), '<span id="icl-tm-estimated-words-count">0</span>' ); ?>
# <span id="icl-tm-doc-wrap" style="display: none">
msgid "%s words"
msgstr ""
# <span id="icl-tm-doc-wrap" style="display: none">
# <?php printf( esc_html__( 'in %s document(s)', 'wpml-translation-management' ), '<span id="icl-tm-sel-doc-count">0</span>' ); ?>
# </span>
msgid "in %s document(s)"
msgstr ""
# <tr>
# <th><?php echo esc_html__( 'All Languages', 'wpml-translation-management' ); ?></th>
# <td>
msgid "All Languages"
msgstr ""
# <?php
# echo esc_html__(
# 'Duplicate content',
msgid "Duplicate content"
msgstr ""
# <label>
# <input type="radio" id="update-none" value="0" name="radio-action-all" <?php echo $do_nothing_checked; ?> /> <?php echo esc_html__( 'Do nothing', 'wpml-translation-management' ); ?>
# </label>
msgid "Do nothing"
msgstr ""
# <td scope="col" colspan="6" align="center">
# <span class="no-documents-found"><?php echo esc_html__( 'No documents found', 'wpml-translation-management' ); ?></span>
# </td>
msgid "No documents found"
msgstr ""
#
# $basket_items_count_caption = esc_html__( 'Translation Basket', 'wpml-translation-management' );
# if ( $basket_items_count > 0 ) {
msgid "Translation Basket"
msgstr ""
#
# $tooltip_content = esc_html__( 'This deadline is what WPML suggests according to the amount of work that you already sent to this translator. You can modify this date to set the deadline manually.', 'wpml-translation-management' );
#
msgid "This deadline is what WPML suggests according to the amount of work that you already sent to this translator. You can modify this date to set the deadline manually."
msgstr ""
#
# <?php echo esc_html__( "This is a log of the communication between your site and the translation system. It doesn't include any private information and allows WPML support to help with problems related to sending content to translation.", 'wpml-translation-management' ); ?>
#
msgid "This is a log of the communication between your site and the translation system. It doesn't include any private information and allows WPML support to help with problems related to sending content to translation."
msgstr ""
# <?php else : ?>
# <strong><?php echo esc_html__( 'The communication log is empty.', 'wpml-translation-management' ); ?></strong>
# <br />
msgid "The communication log is empty."
msgstr ""
# <?php else : ?>
# <?php echo esc_html__( 'Communication logging is currently disabled. To allow WPML support to help you with issues related to sending content to translation, you need to enable the communication logging.', 'wpml-translation-management' ); ?>
#
msgid "Communication logging is currently disabled. To allow WPML support to help you with issues related to sending content to translation, you need to enable the communication logging."
msgstr ""
# "<a target='_blank' href='https://wpml.org/documentation/translating-your-contents/how-wpml-keeps-track-of-your-translations/#can-the-advanced-translation-editor-remember-translations-that-were-previously-done-by-a-professional-translation-service-or-the-classic-translation-editor/?utm_source=plugin&utm_medium=gui&utm_campaign=wpmlcore'>%s</a>",
# __( 'old translations may be unusable', 'wpml-translation-management' )
# );
msgid "old translations may be unusable"
msgstr ""
# $this->translate_link_targets_ui = new WPML_Translate_Link_Targets_UI(
# __( 'Translate Link Targets', 'wpml-translation-management' ),
# $wpdb,
msgid "Translate Link Targets"
msgstr ""
#
# $this->mcsetup_sections['ml-content-setup-sec-1'] = esc_html__( 'Translation Editor', 'wpml-translation-management' );
#
msgid "Translation Editor"
msgstr ""
# if ( $is_admin ) {
# $this->mcsetup_sections['ml-content-setup-sec-2'] = esc_html__( 'Posts and pages synchronization', 'wpml-translation-management' );
# $this->mcsetup_sections['ml-content-setup-sec-3'] = esc_html__( 'Translated documents options', 'wpml-translation-management' );
msgid "Posts and pages synchronization"
msgstr ""
# $this->mcsetup_sections['ml-content-setup-sec-2'] = esc_html__( 'Posts and pages synchronization', 'wpml-translation-management' );
# $this->mcsetup_sections['ml-content-setup-sec-3'] = esc_html__( 'Translated documents options', 'wpml-translation-management' );
#
msgid "Translated documents options"
msgstr ""
#
# $this->mcsetup_sections['ml-content-setup-sec-wp-login'] = esc_html__( 'Login and registration pages', 'wpml-translation-management' );
#
msgid "Login and registration pages"
msgstr ""
# if ( defined( 'WPML_ST_VERSION' ) ) {
# $this->mcsetup_sections['ml-content-setup-sec-4'] = esc_html__( 'Custom posts slug translation options', 'wpml-translation-management' );
# }
msgid "Custom posts slug translation options"
msgstr ""
# if ( TranslationProxy::is_current_service_active_and_authenticated() ) {
# $this->mcsetup_sections['ml-content-setup-sec-5'] = esc_html__( 'Translation pickup mode', 'wpml-translation-management' );
# }
msgid "Translation pickup mode"
msgstr ""
#
# $this->mcsetup_sections['ml-content-setup-sec-5-1'] = esc_html__( 'XLIFF file options', 'wpml-translation-management' );
#
msgid "XLIFF file options"
msgstr ""
# if ( $custom_posts ) {
# $this->mcsetup_sections['ml-content-setup-sec-7'] = esc_html__( 'Post Types Translation', 'wpml-translation-management' );
# }
msgid "Post Types Translation"
msgstr ""
# if ( $custom_taxonomies ) {
# $this->mcsetup_sections['ml-content-setup-sec-8'] = esc_html__( 'Taxonomies Translation', 'wpml-translation-management' );
# }
msgid "Taxonomies Translation"
msgstr ""
# if ( ! empty( $iclTranslationManagement->admin_texts_to_translate ) && function_exists( 'icl_register_string' ) ) {
# $this->mcsetup_sections['ml-content-setup-sec-9'] = esc_html__( 'Admin Strings to Translate', 'wpml-translation-management' );
# }
msgid "Admin Strings to Translate"
msgstr ""
#
# $this->tab_items['mcsetup']['caption'] = esc_html__( 'Multilingual Content Setup', 'wpml-translation-management' );
# $translate_link_targets = new WPML_Translate_Link_Target_Global_State( $sitepress );
msgid "Multilingual Content Setup"
msgstr ""
# $this->tab_items['notifications'] = array(
# 'caption' => esc_html__( 'Translation Notifications', 'wpml-translation-management' ),
# 'current_user_can' => WPML_Manage_Translations_Role::CAPABILITY,
msgid "Translation Notifications"
msgstr ""
# <?php
# echo esc_html__(
# 'There is new translated content on this site. You can scan posts and strings to adjust links to point to translated content.',
msgid "There is new translated content on this site. You can scan posts and strings to adjust links to point to translated content."
msgstr ""
# <h3>
# <?php echo esc_html__( 'Translation Mode', 'wpml-translation-management' ); ?>
# </h3>
msgid "Translation Mode"
msgstr ""
# /* translators: Heading shown for selecting the editor to use with WPML's Translation Management when creating new content */
# echo esc_html__( 'Editor for new translations', 'wpml-translation-management' );
#
msgid "Editor for new translations"
msgstr ""
# /* translators: Editor to use with WPML's Translation Management when creating new content */
# echo esc_html__( 'Advanced Translation Editor (recommended)', 'wpml-translation-management' );
# ?>
msgid "Advanced Translation Editor (recommended)"
msgstr ""
# /* translators: Editor to use with WPML's Translation Management when creating new content */
# echo esc_html__( "Classic Translation Editor", 'wpml-translation-management' );
# ?>
msgid "Classic Translation Editor"
msgstr ""
# <h4>
# <?php echo esc_html__( 'Taxonomy visibility in the translation editor', 'wpml-translation-management' ) ?>
# </h4>
msgid "Taxonomy visibility in the translation editor"
msgstr ""
# />
# <?php echo esc_html__( "Only show taxonomy terms that haven't been translated yet", 'wpml-translation-management' ) ?>
# </label>
msgid "Only show taxonomy terms that haven't been translated yet"
msgstr ""
# <h4>
# <?php echo esc_html__( 'Document status', 'wpml-translation-management' ); ?>
# </h4>
msgid "Document status"
msgstr ""
# <?php
# echo esc_html__(
# 'Same as the original document',
msgid "Same as the original document"
msgstr ""
# <?php
# echo esc_html__(
# 'Choose if translations should be published when received. Note: If Publish is selected, the translation will only be published if the original document is published when the translation is received.',
msgid "Choose if translations should be published when received. Note: If Publish is selected, the translation will only be published if the original document is published when the translation is received."
msgstr ""
# <h4>
# <?php echo esc_html__( 'Page URL', 'wpml-translation-management' ); ?>
# </h4>
msgid "Page URL"
msgstr ""
# <?php
# echo esc_html__(
# 'Auto-generate from title (default)',
msgid "Auto-generate from title (default)"
msgstr ""
# <?php
# echo esc_html__(
# 'Translate (this will include the slug in the translation and not create it automatically from the title)',
msgid "Translate (this will include the slug in the translation and not create it automatically from the title)"
msgstr ""
# <?php
# echo esc_html__(
# 'Copy from original language if translation language uses encoded URLs',
msgid "Copy from original language if translation language uses encoded URLs"
msgstr ""
# <?php
# echo esc_html__(
# 'How should the site receive completed translations from Translation Service?',
msgid "How should the site receive completed translations from Translation Service?"
msgstr ""
# <?php
# echo esc_html__(
# 'Translation Service will deliver translations automatically using XML-RPC',
msgid "Translation Service will deliver translations automatically using XML-RPC"
msgstr ""
# <?php
# echo esc_html__(
# 'The site will fetch translations manually',
msgid "The site will fetch translations manually"
msgstr ""
# <th colspan="3">
# <?php echo esc_html__( 'Admin Strings', 'wpml-translation-management' ); ?>
# </th>
msgid "Admin Strings"
msgstr ""
# <?php
# echo esc_html__(
# 'Edit translatable strings',
msgid "Edit translatable strings"
msgstr ""
# <a href="<?php echo DocPage::getTranslateAutomatically(); ?>" target="_blank" rel="noopener" class="wpml-external-link">
# <?php esc_html_e( "How to translate your site's content", 'wpml-translation-management' ); ?>
# </a>
msgid "How to translate your site's content"
msgstr ""
# <a href="<?php echo DocPage::editorOptions(); ?>" target="_blank" rel="noopener" class="wpml-external-link">
# <?php esc_html_e( 'Learn more about translation editor options', 'wpml-translation-management' ) ?>
# </a>
msgid "Learn more about translation editor options"
msgstr ""
# /* translators: heading shown for selecting the editor to use when updating content that was created with WPML's Classic Translation Editor */
# esc_html_e( "Editor for translations previously created using Classic Translation Editor", 'wpml-translation-management' );
#
msgid "Editor for translations previously created using Classic Translation Editor"
msgstr ""
# /* translators: Which editor to use when updating content that was created with WPML's Classic Translation Editor? */
# esc_html_e( "Classic Translation Editor (recommended)", 'wpml-translation-management' );
#
msgid "Classic Translation Editor (recommended)"
msgstr ""
# <div class="wrap">
# <h2><?php echo __( 'XLIFF translation', 'wpml-translation-management' ); ?></h2>
#
msgid "XLIFF translation"
msgstr ""
# $new_line_labels = array(
# WPML_XLIFF_TM_NEWLINES_ORIGINAL => __(
# 'Do nothing - all new line characters will stay untouched.',
msgid "Do nothing - all new line characters will stay untouched."
msgstr ""
# WPML_XLIFF_TM_NEWLINES_REPLACE => sprintf(
# __( 'All new lines should be replaced by HTML element %s. Use this option if translation tool used by translator does not support new lines characters (for example Virtaal software)', 'wpml-translation-management' ),
# '<br class="xliff-newline" />'
msgid "All new lines should be replaced by HTML element %s. Use this option if translation tool used by translator does not support new lines characters (for example Virtaal software)"
msgstr ""
# }
# $version_label = sprintf( __( 'XLIFF %s', 'wpml-translation-management' ), $version );
# echo sprintf( '<option value="%1$s" %2$s >%3$s</option>', esc_attr( $value ), $selected, esc_html( $version_label ) );
msgid "XLIFF %s"
msgstr ""
# <select name="icl_xliff_version">
# <option value="false"><?php echo esc_html__( 'Please choose', 'wpml-translation-management' ); ?></option>
# <?php
msgid "Please choose"
msgstr ""
#
# <h4><?php esc_html_e( 'XLIFF version', 'wpml-translation-management' ); ?></h4>
#
msgid "XLIFF version"
msgstr ""
# <p>
# <?php esc_html_e( 'Choose default format for XLIFF file:', 'wpml-translation-management' ); ?>
#
msgid "Choose default format for XLIFF file:"
msgstr ""
#
# <h4><?php esc_html_e( 'New lines character', 'wpml-translation-management' ); ?></h4>
# <p>
msgid "New lines character"
msgstr ""
# <p>
# <?php esc_html_e( 'How new lines characters in XLIFF files should be handled?', 'wpml-translation-management' ); ?>
# </p>
msgid "How new lines characters in XLIFF files should be handled?"
msgstr ""