-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathserver.pot
More file actions
2115 lines (1627 loc) · 49 KB
/
server.pot
File metadata and controls
2115 lines (1627 loc) · 49 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
# Translations template for Superdesk-Core.
# Copyright (C) 2026 ORGANIZATION
# This file is distributed under the same license as the Superdesk-Core
# project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2026.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Superdesk-Core 3.2.0.dev0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-01-13 11:28+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.17.0\n"
#: superdesk/activity.py:85
msgid "Send notifications via email"
msgstr ""
#: superdesk/activity.py:86 superdesk/activity.py:103
msgid "notifications"
msgstr ""
#: superdesk/activity.py:102
msgid "Allow Desktop Notifications"
msgstr ""
#: superdesk/internal_destinations.py:116
msgid "Internal Destinations"
msgstr ""
#: superdesk/internal_destinations.py:117
msgid "User can manage internal destinations."
msgstr ""
#: superdesk/resource_locking.py:35
msgid "Resource is locked."
msgstr ""
#: superdesk/types/content_types.py:34 superdesk/validator.py:349
msgid "Only 1 instance is allowed."
msgstr ""
#: superdesk/validator.py:357
#, python-format
msgid "Unknown scope %(name)s"
msgstr ""
#: apps/archive/archive.py:181 apps/archive/archive.py:917
#: superdesk/archive_async/service.py:225
#: superdesk/archive_async/service.py:1005
msgid "Package doesn't support Public Service Announcements"
msgstr ""
#: apps/archive/archive.py:411 apps/archive/archive.py:911
#: apps/duplication/archive_duplication.py:144
#: apps/item_autosave/components/item_autosave.py:36
#: superdesk/archive_async/service.py:473
#: superdesk/archive_async/service.py:999
msgid "The item was locked by another user"
msgstr ""
#: apps/archive/archive.py:465 apps/archived/archived.py:219
#: superdesk/archive_async/service.py:555
#: superdesk/archived_async/service.py:159
msgid "User does not have permissions to read the item."
msgstr ""
#: apps/archive/archive.py:483 superdesk/archive_async/service.py:578
#, python-brace-format
msgid "Invalid version {old_version}"
msgstr ""
#: apps/archive/archive.py:487 superdesk/archive_async/service.py:582
#, python-brace-format
msgid "Invalid item id {item_id}"
msgstr ""
#: apps/archive/archive.py:491 superdesk/archive_async/service.py:586
#, python-brace-format
msgid "Invalid last version {last_version}"
msgstr ""
#: superdesk/archive_async/service.py:940
msgid "An item can't have both Publish Schedule and Embargo"
msgstr ""
#: apps/archive/archive.py:840 superdesk/archive_async/service.py:946
msgid "Embargo cannot be earlier than now"
msgstr ""
#: apps/archive/archive.py:843 superdesk/archive_async/service.py:949
msgid "Rewrites doesn't support Embargo"
msgstr ""
#: apps/archive/archive.py:846 superdesk/archive_async/service.py:952
msgid "Invalid Embargo"
msgstr ""
#: apps/archive/archive.py:850 superdesk/archive_async/service.py:956
msgid "A Package doesn't support Embargo"
msgstr ""
#: apps/archive/archive.py:914 superdesk/archive_async/service.py:1002
msgid "Item isn't in a valid state to be updated."
msgstr ""
#: apps/archive/archive.py:925 superdesk/archive_async/service.py:1013
msgid "Unauthorized to modify Unique Name"
msgstr ""
#: apps/archive/archive.py:933 superdesk/archive_async/service.py:1021
msgid "Cannot change the genre for broadcast content."
msgstr ""
#: apps/archive/archive.py:947 superdesk/archive_async/service.py:1035
msgid ""
"This item is in a package and it needs to be removed before the item can "
"be scheduled!"
msgstr ""
#: apps/archive/archive.py:974 superdesk/archive_async/service.py:1062
msgid "Duplicate category codes are not allowed"
msgstr ""
#: apps/archive/archive.py:979 superdesk/archive_async/service.py:1067
msgid "Duplicate subjects are not allowed"
msgstr ""
#: apps/archived/archived.py:141 superdesk/archived_async/service.py:90
msgid "Only Text articles are allowed to be Killed in Archived repo"
msgstr ""
#: apps/archived/archived.py:144 superdesk/archived_async/service.py:93
msgid "Killing of Broadcast Items isn't allowed in Archived repo"
msgstr ""
#: apps/archived/archived.py:148 superdesk/archived_async/service.py:98
msgid ""
"Can't kill as this article acts as a Master Story for existing "
"broadcast(s)"
msgstr ""
#: apps/archived/archived.py:152 superdesk/archived_async/service.py:103
msgid "Can't Kill as article is still available in production"
msgstr ""
#: apps/archived/archived.py:155 superdesk/archived_async/service.py:106
msgid "Can't kill as article is part of a Package"
msgstr ""
#: apps/archived/archived.py:160 superdesk/archived_async/service.py:111
msgid "Can't Kill as the Digital Story is still available in production"
msgstr ""
#: apps/archived/archived.py:172 superdesk/archived_async/service.py:115
msgid "Digital Story of the article not found in Archived repo"
msgstr ""
#: apps/archived/archived.py:175 superdesk/archived_async/service.py:118
msgid "Can't kill as Digital Story is part of a Package"
msgstr ""
#: apps/archived/archived.py:180 superdesk/archived_async/service.py:124
msgid "Can't Kill as Take(s) are still available in production"
msgstr ""
#: apps/archived/archived.py:190 superdesk/archived_async/service.py:128
msgid "One of Take(s) not found in Archived repo"
msgstr ""
#: apps/archived/archived.py:193 superdesk/archived_async/service.py:131
msgid "Can't kill as one of Take(s) is part of a Package"
msgstr ""
#: superdesk/auth_server/module.py:61
msgid "Auth Server Clients"
msgstr ""
#: superdesk/auth_server/module.py:62
msgid "User can manage auth server clients"
msgstr ""
#: apps/content_types/content_types.py:162
#: superdesk/content_types_async/service.py:87
#, python-brace-format
msgid "Vocabulary {vocabulary} is used in {count} content type(s)"
msgstr ""
#: apps/content_types/content_types.py:185
#: superdesk/content_types_async/service.py:105
#, python-brace-format
msgid ""
"Cannot disable content profile as following templates are referencing: "
"{templates}"
msgstr ""
#: apps/content_types/content_types.py:197
#: superdesk/content_types_async/service.py:115
#, python-brace-format
msgid "Cannot disable content profile as following desks are referencing: {desks}"
msgstr ""
#: apps/auth/auth.py:112 superdesk/core/auth/privilege_rules.py:39
msgid "Insufficient privileges for the requested operation."
msgstr ""
#: superdesk/core/resources/resource_rest_endpoints.py:400
msgid "Invalid ID format"
msgstr ""
#: superdesk/core/resources/utils.py:56
msgid "Cannot combine projections of different types"
msgstr ""
#: superdesk/core/resources/utils.py:76
msgid "invalid projection type"
msgstr ""
#: superdesk/core/resources/utils.py:119
msgid "Invalid projection: cannot include and exclude the same field"
msgstr ""
#: superdesk/core/resources/validators.py:53
msgid "Invalid email address"
msgstr ""
#: superdesk/core/resources/validators.py:78
msgid "Not enough"
msgstr ""
#: superdesk/core/resources/validators.py:81
#: superdesk/core/resources/validators.py:106
msgid "Too short"
msgstr ""
#: superdesk/core/resources/validators.py:103
msgid "Too many"
msgstr ""
#: apps/validate/validate.py:96 superdesk/core/resources/validators.py:121
#: superdesk/core/resources/validators.py:300
msgid "empty values not allowed"
msgstr ""
#: superdesk/core/resources/validators.py:175
#: superdesk/core/resources/validators.py:191
#, python-brace-format
msgid "Resource '{resource_name}' with ID '{item_id}' does not exist"
msgstr ""
#: superdesk/core/resources/validators.py:228
#: superdesk/core/resources/validators.py:264
msgid "Value must be unique"
msgstr ""
#: superdesk/core/resources/validators.py:298
msgid "Field is required"
msgstr ""
#: superdesk/core/resources/validators.py:304
msgid "Value is too short"
msgstr ""
#: superdesk/io/__init__.py:57
msgid "Ingest Feed Parsers"
msgstr ""
#: superdesk/io/__init__.py:58
msgid "User can maintain Ingest Feed Parsers."
msgstr ""
#: superdesk/io/__init__.py:67
msgid "Ingest Feed Services"
msgstr ""
#: superdesk/io/__init__.py:68
msgid "User can maintain Ingest Feed Services."
msgstr ""
#: superdesk/io/__init__.py:74
msgid "Ingest Channels"
msgstr ""
#: superdesk/io/__init__.py:75
msgid "User can maintain Ingest Channels."
msgstr ""
#: superdesk/macros/abstract_populator.py:35
msgid "Populate Abstract"
msgstr ""
#: superdesk/macros/assign_status.py:33
msgid "Update Status On Assignment ID"
msgstr ""
#: superdesk/macros/currency_usd_to_cad.py:38
msgid "Currency USD to CAD"
msgstr ""
#: superdesk/macros/desk_routing.py:49
msgid "Desk Routing"
msgstr ""
#: superdesk/macros/extract_html.py:58
msgid "Extract Html Macro"
msgstr ""
#: superdesk/macros/internal_destination_auto_publish.py:98
msgid "Internal Destination Auto Publish"
msgstr ""
#: superdesk/macros/set_default_template_metadata.py:90
msgid "Set Default Template Metadata"
msgstr ""
#: superdesk/macros/take_key_validator.py:25
msgid "validate take key"
msgstr ""
#: superdesk/macros/validate_for_publish.py:30
msgid "Validate for Publish"
msgstr ""
#: superdesk/macros/imperial/area_acre_to_metric.py:47
msgid "Area acres to metric"
msgstr ""
#: superdesk/macros/imperial/area_acre_to_metric.py:51
#: superdesk/macros/imperial/area_square_feet_to_metric.py:51
#: superdesk/macros/imperial/area_square_inch_to_metric.py:51
#: superdesk/macros/imperial/area_square_miles_to_metric.py:51
#: superdesk/macros/imperial/area_square_yards_to_metric.py:51
msgid "area"
msgstr ""
#: superdesk/macros/imperial/area_square_feet_to_metric.py:47
msgid "Area square feet to metric"
msgstr ""
#: superdesk/macros/imperial/area_square_inch_to_metric.py:47
msgid "Area square inch to metric"
msgstr ""
#: superdesk/macros/imperial/area_square_miles_to_metric.py:47
msgid "Area square miles to metric"
msgstr ""
#: superdesk/macros/imperial/area_square_yards_to_metric.py:47
msgid "Area square yards to metric"
msgstr ""
#: superdesk/macros/imperial/length_feet_and_inches_to_metric.py:105
msgid "Length feet-inches to metric"
msgstr ""
#: superdesk/macros/imperial/length_feet_and_inches_to_metric.py:109
#: superdesk/macros/imperial/length_miles_to_metric.py:43
#: superdesk/macros/imperial/length_nautical_miles_to_metric.py:42
#: superdesk/macros/imperial/length_yards_to_metric.py:43
msgid "length"
msgstr ""
#: superdesk/macros/imperial/length_miles_to_metric.py:38
msgid "Length miles to kilometres"
msgstr ""
#: superdesk/macros/imperial/length_nautical_miles_to_metric.py:38
msgid "Length nautical miles to kilometres"
msgstr ""
#: superdesk/macros/imperial/length_yards_to_metric.py:39
msgid "Length yards to metres"
msgstr ""
#: superdesk/macros/imperial/temperature_fahrenheit_to_celsius.py:42
msgid "Temperature °F to °C"
msgstr ""
#: superdesk/macros/imperial/temperature_fahrenheit_to_celsius.py:46
msgid "temperature"
msgstr ""
#: superdesk/macros/imperial/volume_cubic_feet_to_metric.py:38
msgid "Volume cubic feet to metric"
msgstr ""
#: superdesk/macros/imperial/volume_cubic_feet_to_metric.py:42
#: superdesk/macros/imperial/volume_cubic_inches_to_metric.py:53
#: superdesk/macros/imperial/volume_cubic_yard_to_metric.py:42
msgid "volume"
msgstr ""
#: superdesk/macros/imperial/volume_cubic_inches_to_metric.py:49
msgid "Volume cubic inches to metric"
msgstr ""
#: superdesk/macros/imperial/volume_cubic_yard_to_metric.py:38
msgid "Volume cubic yard to metric"
msgstr ""
#: superdesk/macros/imperial/weight_pounds_to_metric.py:38
msgid "Weight pounds to metric"
msgstr ""
#: superdesk/macros/imperial/weight_pounds_to_metric.py:42
msgid "weight"
msgstr ""
#: superdesk/profiling/__init__.py:35
msgid "Profiling Service"
msgstr ""
#: superdesk/profiling/__init__.py:36
msgid "User can read profiling data."
msgstr ""
#: superdesk/publish_async/__init__.py:49 superdesk/publish_async/module.py:60
msgid "Content Filters"
msgstr ""
#: superdesk/publish_async/__init__.py:50 superdesk/publish_async/module.py:61
msgid "User can manage content filters"
msgstr ""
#: superdesk/publish_async/__init__.py:54 superdesk/publish_async/module.py:65
msgid "Products Management"
msgstr ""
#: superdesk/publish_async/__init__.py:55 superdesk/publish_async/module.py:66
msgid "User can manage product lists."
msgstr ""
#: apps/publish/__init__.py:83 superdesk/publish_async/module.py:70
msgid "Publish Queue"
msgstr ""
#: apps/publish/__init__.py:84 superdesk/publish_async/module.py:71
msgid "User can update publish queue"
msgstr ""
#: apps/publish/__init__.py:74 superdesk/publish_async/module.py:75
msgid "Subscribers"
msgstr ""
#: apps/publish/__init__.py:74 superdesk/publish_async/module.py:76
msgid "User can manage subscribers"
msgstr ""
#: superdesk/publish_async/views.py:80
msgid "Content filter not found"
msgstr ""
#: superdesk/publish_async/views.py:89 superdesk/publish_async/views.py:129
msgid "Article not found"
msgstr ""
#: apps/publish/content/common.py:499 apps/publish/content/common.py:567
#: superdesk/publish_async/exchanges/content_exchange.py:328
msgid "Corrected package cannot be empty!"
msgstr ""
#: superdesk/publish_async/filters/base_exchange_filter.py:384
#, python-brace-format
msgid "Filter statement {index} does not have a filter condition"
msgstr ""
#: superdesk/publish_async/formatters/base_exchange_formatter.py:384
#, python-brace-format
msgid "Can not find package {package} published item {item}"
msgstr ""
#: superdesk/publish_async/resources/content_filters/service.py:44
#, python-brace-format
msgid "Content filter has been referenced by subscriber(s) {references}"
msgstr ""
#: superdesk/publish_async/resources/content_filters/service.py:54
#, python-brace-format
msgid "Content filter has been referenced by routing scheme(s) {references}"
msgstr ""
#: superdesk/publish_async/resources/content_filters/service.py:64
#, python-brace-format
msgid "Content filter has been referenced in {references})"
msgstr ""
#: superdesk/publish_async/resources/content_filters/service.py:82
#, python-brace-format
msgid "Circular dependency error in content filters:{filter}"
msgstr ""
#: superdesk/publish_async/resources/products/service.py:23
#, python-brace-format
msgid "Product is used by the subscriber(s): {names}"
msgstr ""
#: superdesk/publish_async/resources/products/service.py:45
#, python-brace-format
msgid "Product is used for API publishing for the subscriber(s): {subscribers}"
msgstr ""
#: superdesk/publish_async/resources/products/service.py:54
#, python-brace-format
msgid "Product is used for direct publishing for the subscriber(s): {subscribers}"
msgstr ""
#: superdesk/publish_async/utils/filter_conditions.py:81
msgid "ANPA Category"
msgstr ""
#: apps/validate/validate.py:83
#: superdesk/publish_async/utils/filter_conditions.py:88
msgid "Urgency"
msgstr ""
#: apps/validate/validate.py:64
#: superdesk/publish_async/utils/filter_conditions.py:104
msgid "Genre"
msgstr ""
#: apps/validate/validate.py:81
#: superdesk/publish_async/utils/filter_conditions.py:111
msgid "Subject"
msgstr ""
#: apps/validate/validate.py:72
#: superdesk/publish_async/utils/filter_conditions.py:118
msgid "Priority"
msgstr ""
#: apps/validate/validate.py:67
#: superdesk/publish_async/utils/filter_conditions.py:134
#: superdesk/vocabularies/vocabularies.py:457
#: superdesk/vocabularies_async/service.py:268
msgid "Keywords"
msgstr ""
#: apps/validate/validate.py:76
#: superdesk/publish_async/utils/filter_conditions.py:139
msgid "Slugline"
msgstr ""
#: apps/validate/validate.py:82
#: superdesk/publish_async/utils/filter_conditions.py:153
msgid "Type"
msgstr ""
#: apps/validate/validate.py:79
#: superdesk/publish_async/utils/filter_conditions.py:165
msgid "Source"
msgstr ""
#: apps/validate/validate.py:65
#: superdesk/publish_async/utils/filter_conditions.py:179
msgid "Headline"
msgstr ""
#: superdesk/publish_async/utils/filter_conditions.py:193
msgid "Ednote"
msgstr ""
#: apps/validate/validate.py:49
#: superdesk/publish_async/utils/filter_conditions.py:207
msgid "Body HTML"
msgstr ""
#: apps/validate/validate.py:57
#: superdesk/publish_async/utils/filter_conditions.py:219
msgid "Desk"
msgstr ""
#: apps/validate/validate.py:80
#: superdesk/publish_async/utils/filter_conditions.py:231
msgid "Stage"
msgstr ""
#: apps/validate/validate.py:77
#: superdesk/publish_async/utils/filter_conditions.py:243
msgid "SMS"
msgstr ""
#: apps/preferences.py:206 apps/validate/validate.py:71
#: superdesk/publish_async/utils/filter_conditions.py:255
msgid "Place"
msgstr ""
#: superdesk/publish_async/utils/filter_conditions.py:266
msgid "Ingest provider"
msgstr ""
#: apps/publish/__init__.py:92 apps/validate/validate.py:59
#: superdesk/publish_async/utils/filter_conditions.py:273
msgid "Embargo"
msgstr ""
#: apps/validate/validate.py:61
#: superdesk/publish_async/utils/filter_conditions.py:280
msgid "Feature Media"
msgstr ""
#: superdesk/publisher/__init__.py:21
msgid "Livesite Editor"
msgstr ""
#: superdesk/publisher/__init__.py:22
msgid "Edit a site live on Web Publisher"
msgstr ""
#: superdesk/roles/__init__.py:23
msgid "Roles Management"
msgstr ""
#: superdesk/roles/__init__.py:23
msgid "User can manage roles."
msgstr ""
#: superdesk/sams/__init__.py:50
msgid "Sams"
msgstr ""
#: superdesk/sams/__init__.py:50
msgid "Access to the SAMS management page (and to upload assets etc)"
msgstr ""
#: superdesk/sams/__init__.py:53
msgid "Sams manage"
msgstr ""
#: superdesk/sams/__init__.py:53
msgid "Allows management of SAMS Sets etc"
msgstr ""
#: superdesk/sams/__init__.py:56
msgid "SAMS Manage Assets"
msgstr ""
#: superdesk/sams/__init__.py:56
msgid "Allows management of SAMS Assets"
msgstr ""
#: superdesk/sams/assets.py:83
msgid "SAMS Image Asset not found"
msgstr ""
#: superdesk/sams/assets.py:142
msgid "Asset is attached to a news item, cannot delete"
msgstr ""
#: superdesk/search_providers_async/__init__.py:31
msgid "fetch_endpoint must be a string"
msgstr ""
#: apps/search_providers/registry.py:37
#: superdesk/search_providers_async/__init__.py:37
msgid "You have to specify either fetch_endpoint or provider_class."
msgstr ""
#: apps/search_providers/registry.py:45
#: superdesk/search_providers_async/__init__.py:45
#, python-brace-format
msgid ""
"A Search Provider for the fetch endpoint: {endpoint} exists with name: "
"{name}"
msgstr ""
#: superdesk/storage/desk_media_storage.py:205
msgid "Unsupported content type"
msgstr ""
#: apps/ldap/__init__.py:26 superdesk/users/__init__.py:29
msgid "User Management"
msgstr ""
#: apps/ldap/__init__.py:26 superdesk/users/__init__.py:29
msgid "User can manage users."
msgstr ""
#: superdesk/vocabularies/__init__.py:30
msgid "Prefered CV items"
msgstr ""
#: superdesk/vocabularies/__init__.py:31
msgid "cvs"
msgstr ""
#: superdesk/vocabularies/vocabularies.py:39
#: superdesk/vocabularies_async/service.py:36
msgid "Vocabularies Management"
msgstr ""
#: superdesk/vocabularies/vocabularies.py:40
#: superdesk/vocabularies_async/service.py:37
msgid "User can manage vocabularies' contents."
msgstr ""
#: apps/desk_routing.py:77
msgid "Desk routing"
msgstr ""
#: apps/desk_routing.py:77
msgid "User can configure desk routing"
msgstr ""
#: apps/desks.py:112
msgid "Desk Management"
msgstr ""
#: apps/desks.py:112
msgid "User can manage desks."
msgstr ""
#: apps/desks.py:115
msgid "Master Desk"
msgstr ""
#: apps/desks.py:115
msgid "User can access master desk."
msgstr ""
#: apps/desks.py:196 apps/desks_async/desks_async_service.py:93
msgid "Cannot update Desk Type as there are article(s) referenced by the Desk."
msgstr ""
#: apps/desks.py:219 apps/desks_async/desks_async_service.py:110
msgid "Cannot delete desk as it is assigned as default desk to user(s)."
msgstr ""
#: apps/desks.py:231 apps/desks_async/desks_async_service.py:122
msgid "Cannot delete desk as routing scheme(s) are associated with the desk"
msgstr ""
#: apps/desks.py:245 apps/desks_async/desks_async_service.py:136
msgid ""
"Cannot delete desk as it has article(s) or referenced by versions of the "
"article(s)."
msgstr ""
#: apps/feature_preview.py:7
msgid "Feature Preview"
msgstr ""
#: apps/feature_preview.py:8
msgid "Let user toggle Feature Preview on/off."
msgstr ""
#: apps/archive/__init__.py:115 apps/monitoring.py:13
msgid "Monitoring view"
msgstr ""
#: apps/preferences.py:117
msgid "Enable Feature Preview"
msgstr ""
#: apps/preferences.py:118
msgid "feature"
msgstr ""
#: apps/preferences.py:129
msgid "Users archive view format"
msgstr ""
#: apps/preferences.py:130
msgid "archive"
msgstr ""
#: apps/preferences.py:149
msgid "Enable Single Line View"
msgstr ""
#: apps/preferences.py:150
msgid "rows"
msgstr ""
#: apps/preferences.py:179
msgid "Located"
msgstr ""
#: apps/preferences.py:180 apps/preferences.py:207
msgid "article_defaults"
msgstr ""
#: apps/preferences.py:189
msgid "Preferred Categories"
msgstr ""
#: apps/preferences.py:190
msgid "categories"
msgstr ""
#: apps/preferences.py:199
msgid "Preferred Desks"
msgstr ""
#: apps/preferences.py:200
msgid "desks"
msgstr ""
#: apps/preferences.py:222
msgid "Users contacts view format"
msgstr ""
#: apps/preferences.py:223
msgid "contacts"
msgstr ""
#: apps/preferences.py:322 apps/preferences.py:334
#, python-brace-format
msgid "Invalid preference: {preference}"
msgstr ""
#: apps/stages.py:138
msgid "Cannot delete a Working Stage."
msgstr ""
#: apps/stages.py:143
msgid "Cannot delete a Incoming Stage."
msgstr ""
#: apps/stages.py:149
msgid ""
"Cannot delete stage as it has article(s) or referenced by versions of the"
" article(s)."
msgstr ""
#: apps/stages.py:157
#, python-brace-format
msgid "Stage is referred by Ingest Routing Schemes : {rule_names}"
msgstr ""
#: apps/stages.py:177
msgid "Must have one working stage in a desk"
msgstr ""
#: apps/stages.py:185
msgid "Must have one incoming stage in a desk"
msgstr ""
#: apps/archive/common.py:634 apps/tasks.py:100
#, python-brace-format
msgid "Invalid desk identifier {desk_id}"
msgstr ""
#: apps/tasks.py:105
#, python-brace-format
msgid "User is not member of desk: {desk_id}"
msgstr ""
#: apps/archive/common.py:640 apps/tasks.py:117
#, python-brace-format
msgid "Invalid stage identifier {stage_id}"
msgstr ""
#: apps/tasks.py:158
#, python-brace-format
msgid "Error:{exception} in {rule_type} rule:{rule} for stage:{stage}"
msgstr ""
#: apps/tasks.py:338
msgid "Tasks Management"
msgstr ""
#: apps/archive/__init__.py:116
msgid "Access to Monitoring view in left toolbar"
msgstr ""
#: apps/archive/__init__.py:119
msgid "Create content"
msgstr ""
#: apps/archive/__init__.py:119
msgid "Create and save content"
msgstr ""
#: apps/archive/__init__.py:122
msgid "Ingest"
msgstr ""
#: apps/archive/__init__.py:122
msgid "Access to ingest sources management"
msgstr ""
#: apps/archive/__init__.py:124
msgid "Spike"
msgstr ""
#: apps/archive/__init__.py:124
msgid "Spike/delete items"
msgstr ""
#: apps/archive/__init__.py:126
msgid "Spike view"
msgstr ""
#: apps/archive/__init__.py:126
msgid "View spiked content"
msgstr ""
#: apps/archive/__init__.py:129
msgid "Unspike"
msgstr ""
#: apps/archive/__init__.py:129
msgid "Unspike/undelete content"
msgstr ""
#: apps/archive/__init__.py:132
msgid "Edit Unique Name"
msgstr ""
#: apps/archive/__init__.py:132
msgid "Edit unique name"
msgstr ""
#: apps/archive/__init__.py:134
msgid "Hold"
msgstr ""
#: apps/archive/__init__.py:134
msgid "Hold content"
msgstr ""
#: apps/archive/__init__.py:135
msgid "Restore"
msgstr ""
#: apps/archive/__init__.py:135
msgid "Restore content"
msgstr ""
#: apps/archive/__init__.py:136
msgid "Update"
msgstr ""
#: apps/archive/__init__.py:136
msgid "Create an update"
msgstr ""
#: apps/archive/__init__.py:139
msgid "Unlock content"
msgstr ""
#: apps/archive/__init__.py:140
msgid "Unlock locked content by another user"
msgstr ""
#: apps/archive/__init__.py:144
msgid "Mark items for users"
msgstr ""
#: apps/archive/__init__.py:145
msgid "User can mark or unmark items for other users"
msgstr ""
#: apps/archive/archive.py:1310
msgid "Client and server etags don't match"
msgstr ""
#: apps/archive/archive.py:1312
msgid "Request for Auto-save must have _id"
msgstr ""
#: apps/archive/archive_correction.py:123
#, python-brace-format
msgid "Failed to generate correction: {exception}"
msgstr ""
#: apps/archive/archive_correction.py:136 apps/archive/archive_rewrite.py:148
msgid "Cannot find the article"
msgstr ""
#: apps/archive/archive_link.py:59 apps/archive/archive_rewrite.py:360
msgid "Only updates can be unlinked!"
msgstr ""
#: apps/archive/archive_rewrite.py:152
msgid "Rewrite of an Item having embargo isn't possible"
msgstr ""
#: apps/archive/archive_rewrite.py:155
msgid "Event id does not exist"
msgstr ""
#: apps/archive/archive_rewrite.py:158
msgid "Article has been rewritten before !"
msgstr ""
#: apps/archive/archive_rewrite.py:171
msgid "Rewrite is not published. Cannot rewrite the story again."
msgstr ""
#: apps/archive/archive_rewrite.py:177
msgid "Rewrite story has been used as update before !"
msgstr ""