forked from nextcloud/ios
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathLocalizable.strings
More file actions
1249 lines (1205 loc) · 75.6 KB
/
Copy pathLocalizable.strings
File metadata and controls
1249 lines (1205 loc) · 75.6 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
//
// Localizable.strings
// Nextcloud
//
// Copyright © 2017 Marino Faggiana. All rights reserved.
//
// Author Marino Faggiana <marino.faggiana@nextcloud.com>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
"_itunes_" = "iTunes";
"_cancel_" = "Cancel";
"_tap_to_cancel_" = "Tap to cancel";
"_cancel_request_" = "Do you want to cancel?";
"_upload_file_" = "Upload file";
"_download_file_" = "Download file";
"_loading_" = "Loading";
"_loading_with_points_" = "Loading …";
"_loading_num_" = "Loading file %i";
"_loading_autoupload_" = "Auto uploading";
"_uploading_" = "Uploading";
"_synchronization_" = "Synchronization";
"_delete_" = "Delete";
"_delete_file_n_" = "Delete file %i of %i";
"_rename_" = "Rename";
"_rename_file_" = "Rename file";
"_rename_folder_" = "Rename folder";
"_move_" = "Move";
"_move_file_n_" = "Move file %i of %i";
"_creating_sharing_" = "Creating share";
"_updating_sharing_" = "Updating share";
"_removing_sharing_" = "Removing share";
"_add_" = "Add";
"_login_" = "Log in";
"_save_" = "Save";
"_warning_" = "Warning";
"_error_" = "Error";
"_no_" = "No";
"_yes_" = "Yes";
"_select_" = "Select";
"_deselect_" = "Deselect";
"_select_all_" = "Select all";
"_upload_" = "Upload";
"_home_" = "Files";
"_files_" = "Files";
"_home_dir_" = "Home";
"_file_to_upload_" = "File to upload";
"_destination_" = "Destination";
"_ok_" = "OK";
"_beta_version_" = "Beta version";
"_function_in_testing_" = "Function in testing, please send information about any problems you run into.";
"_done_" = "Done";
"_clear_" = "Clear";
"_passcode_too_short_" = "Passcode too short, at least 4 characters required";
"_selected_" = "Selected";
"_scan_fingerprint_" = "Scan fingerprint to authenticate";
"_no_active_account_" = "No account found";
"_info_" = "Info";
"_warning_" = "Warning";
"_email_" = "Email";
"_save_exit_" = "Do you want to exit without saving?";
"_video_" = "Video";
"_overwrite_" = "Overwrite";
"_transfers_in_queue_" = "Transfers in progress, please wait …";
"_too_errors_upload_" = "Too many errors, please verify the problem";
"_create_" = "Create";
"_create_folder_" = "Create folder";
"_create_folder_e2ee_" = "Create encrypted folder";
"_create_folder_on_" = "Create folder on";
"_close_" = "Close";
"_postpone_" = "Postpone";
"_remove_" = "Remove";
"_file_not_found_" = "File not found";
"_continue_" = "Continue";
"_continue_editing_" = "Continue editing";
"_continue_request_" = "Do you want to continue?";
"_auto_upload_folder_" = "Auto upload";
"_gallery_" = "Gallery";
"_photo_" = "Photo";
"_audio_" = "Audio";
"_unknown_" = "Unknown";
"_additional_view_options_" = "Additional view options";
"_next_" = "Next";
"_success_" = "Success";
"_initialization_" = "Initialization";
"_experimental_" = "Experimental";
"_select_dir_media_tab_" = "Select as folder \"Media\"";
"_error_creation_file_" = "Oops! Could not create the file";
"_save_path_" = "Storage path";
"_save_settings_" = "Save settings";
"_mode_filename_" = "Filename mode";
"_warning_owncloud_" = "You are connected to an ownCloud server. This is untested and unsupported, use at your own risk. To upgrade to Nextcloud, see https://nextcloud.com/migration";
"_warning_unsupported_" = "You are using an unsupported version of Nextcloud. For the safety of your data we strongly recommend updating to the latest stable Nextcloud";
"_restore_" = "Restore";
"_camera_roll_" = "Camera roll";
"_tap_here_to_change_" = "Tap here to change";
"_no_albums_" = "No albums";
"_denied_album_" = "This app does not have access to \"Photos\", you can enable access in Privacy Settings";
"_denied_camera_" = "This app does not have access to \"Camera\", you can enable access in Privacy Settings";
"_start_" = "Start";
"_force_start_" = "Force the start";
"_purchase_" = "Purchase";
"_account_not_available_" = "The account %@ of %@ does not exist, please add it to be able to read the file %@";
"_the_account_" = "The account";
"_does_not_exist_" = "does not exist";
"_error_parameter_schema_" = "Wrong parameters, impossible to continue";
"_comments_" = "Comments";
"_sharing_" = "Sharing";
"_details_" = "Share";
"_sub_details_" = "Subscription Details";
"_subscriptions_" = "Subscriptions";
"_dark_mode_" = "Dark mode";
"_dark_mode_detect_" = "Detect iOS dark mode";
"_screen_" = "Screen";
"_wipe_account_" = "Account is wiped from server";
"_appconfig_view_title_" = "Account configuration in progress …";
"_no_permission_add_file_" = "You don't have permission to add files";
"_no_permission_delete_file_" = "You don't have permission to delete files";
"_no_permission_modify_file_" = "You don't have permission to modify files";
"_no_permission_favorite_file_" = "You don't have permission to add the file to your favorites";
"_request_upload_new_ver_" = "The file has been modified, do you want to upload the new version?";
"_add_folder_info_" = "Add folder info";
"_back_" = "Back";
"_search_" = "Search";
"_of_" = "of";
"_internal_modify_" = "Edit with internal editor";
"_database_corrupt_" = "Oops something went wrong, please enter your credentials but don't worry, your files have remained secure";
"_livephoto_save_" = "Save Live Photo to Photo Album";
"_livephoto_save_error_" = "Error during save of Live Photo";
"_file_conflict_num_" = "file conflict";
"_file_conflicts_num_" = "file conflicts";
"_file_conflict_desc_" = "Which files do you want to keep?\nIf you select both versions, the copied file will have a number added to its name.";
"_file_conflict_new_" = "New files";
"_file_conflict_exists_" = "Already existing files";
"_file_not_rewite_doc_" = "It is not possible to overwrite a document but only to create a new one";
"_move_or_copy_" = "Move or copy";
"_copy_" = "Copy";
"_now_" = "Now";
"_wait_" = "Please wait …";
"_attention_" = "Attention";
"_recent_" = "Recent";
"_view_in_folder_" = "View in folder";
"_leave_share_" = "Leave this share";
"_premium_" = "Premium";
"_professional_" = "Professional";
"_current_" = "Current";
"_buy_" = "Buy";
"_disabled_" = "Disabled";
"_standard_" = "Standard";
"_maximum_" = "Maximum";
"_error_occurred_" = "An error occurred, please try again";
"_retry_" = "Retry";
"_images_" = "Images";
/* MARK: Files lock */
"_unlock_" = "Unlock";
"_lock_file_" = "Lock file";
"_unlock_file_" = "Unlock file";
"_lock_selected_files_" = "Lock files";
"_unlock_selected_files_" = "Unlock files";
"_locked_by_" = "Locked by %@";
"_file_locked_no_override_" = "This file is locked. It cannot be overridden.";
"_lock_no_permissions_selected_" = "Not allowed for some selected files or folders";
/* Remove a file from a list, don't delete it entirely */
"_remove_file_" = "Remove file";
/* Delete file and put it into the trash */
"_delete_file_" = "Delete file";
"_delete_folder_" = "Delete folder";
"_delete_photo_" = "Delete photo";
"_delete_video_" = "Delete video";
"_automatic_Download_Image_" = "Use images in full resolution";
"_automatic_Download_Image_footer_" = "When viewing images always download, if not available locally, the images in full resolution";
"_size_" = "Size";
"_file_size_" = "Exported file size";
"_dimension_" = "Dimension";
"_duration_" = "Duration";
"_model_" = "Model";
"_set_user_status_" = "Set user status";
"_open_settings_" = "Open settings";
"_rename_ext_title_" = "Change file type?";
"_rename_ext_message_" = "This file may behave differently if you change it from .%@ to %@";
"_use_" = "Use";
"_keep_" = "Keep";
"_account_request_" = "Request account";
"_settings_account_request_" = "Request account at startup";
"_print_" = "Print";
"_alias_" = "Alias";
"_alias_placeholder_" = "Write the alias";
"_alias_footer_" = "Give your account names a descriptive name such as Home, Office, School …";
"_chunk_size_mb_" = "Chunk size in MB";
"_chunk_footer_title_" = "Chunked file upload (0 is disabled)\nImportant: the chunked upload works only when the app is \"active\".";
"_privacy_legal_" = "Privacy and Legal Policy";
"_source_code_" = "Get source code";
"_account_select_" = "Select the account";
"_account_select_to_add_" = "Select the account to add";
"_host_insert_" = "Insert the host name, for example:";
"_certificate_not_found_" = "File %@ in documents directory not found.";
"_copy_failed_" = "Copy failed";
"_certificate_installed_" = "Certificate installed";
"_remove_local_account_" = "Remove local account";
"_want_delete_account_" = "Do you want to remove local account?";
"_prevent_http_redirection_"= "The redirection in HTTP is not permitted";
"_pdf_vertical_" = "PDF vertical display";
"_pdf_horizontal_" = "PDF horizontal display";
"_single_file_conflict_title_" = "File conflict";
"_multi_file_conflict_title_" = "%@ File conflicts";
"_replace_action_title_" = "Replace";
"_keep_both_action_title_" = "Keep both";
"_cancel_keep_existing_action_title_" = "Cancel and keep existing";
"_replace_all_action_title_" = "Replace all";
"_keep_both_for_all_action_title_" = "Keep both for all";
"_more_action_title_" = "More Details";
"_wait_file_preparation_" = "Please wait, preparing file upload…";
"_wait_file_encryption_" = "Please wait, encrypting file…";
"_passcode_counter_fail_" = "Too many failed attempts, please wait before reattempting";
"_seconds_" = "seconds";
"_change_lock_passcode_" = "Change passcode";
"_lock_cannot_disable_mdm_" = "Disabling the passcode lock is not permitted by your configuration profile.";
/* Background of the file listing view */
"_use_as_background_" = "Use it as a background";
/* Background of the file listing view */
"_background_" = "Background";
"_dark_mode_" = "Dark mode";
"_default_color_" = "Use the default color";
"_as_default_color_" = "Use as default color";
// MARK: User Status
/* User status */
"_online_" = "Online";
/* User status */
"_away_" = "Away";
/* User status */
"_dnd_" = "Do not disturb";
/* User status */
"_dnd_description_" = "Mute all notifications";
/* User status */
"_invisible_" = "Invisible";
/* User status */
"_invisible_description_" = "Appear offline";
/* User status */
"_status_message_" = "Status message";
"_status_message_placehorder_" = "What is your status?";
"_online_status_" = "Online status";
"_clear_status_message_" = "Clear status message";
"_set_status_message_" = "Set status message";
"_clear_status_message_after_" = "Clear status message after";
/* User status */
"_select_option_" = "Select option";
"_dont_clear_" = "Don't clear";
"_30_minutes_" = "30 minutes";
"_an_hour_" = "an hour";
"_1_hour_" = "1 hour";
"_4_hours_" = "4 hours";
"day" = "Today";
"_this_week_" = "This week";
"_days_" = "Days";
"_hours_" = "Hours";
"_minutes_" = "Minutes";
"_network_available_" = "Network available";
"_network_not_available_" = "Network unavailable";
"_file_too_big_" = "File too large to be encrypted/decrypted";
"_file_too_big_max_100_" = "File too large (max 100 kb.)";
"_...loading..._" = "Loading …";
"_download_plist_" = " ";
"_no_reuploadfile_" = "Could not find nor resend file. Delete the upload and reload the file to upload it.";
"_file_already_exists_" = "Unable to complete the operation, a file with the same name exists";
"_read_file_error_" = "Could not read the file";
"_write_file_error_" = "Could not write the file";
"_files_lock_error_" = "There was an error changing the lock of this file";
"_more_" = "More";
"_notifications_" = "Notifications";
"_logout_" = "Log out";
"_quota_space_unlimited_" = "Unlimited";
"_quota_space_unknown_" = "Unknown";
"_quota_using_" = "%@ ";
"_quota_using_of_" = "of %@";
"_quota_using_percentage_" = "Memory to %@ occupied";
"_acknowledgements_" = "Acknowledgements";
"_settings_" = "Settings";
"_passcode_" = "Password";
"_enter_password_" = "Enter password …";
"_lock_" = "Lock";
"_lock_active_" = "Lock: On";
"_lock_not_active_" = "Lock: Off";
"_lock_protection_no_screen_" = "Do not ask at startup";
"_lock_protection_no_screen_footer_" = "Use \"Do not ask at startup\" for the encryption option.";
"_enable_touch_face_id_" = "Enable Touch/Face ID";
"_security_" = "Security";
"_data_protection_" = "Data protection";
"_privacy_settings_" = "Privacy Settings";
"_used_opensource_software_" = "OpenSource software used";
"_service_" = "Service";
"_imprint_" = "Imprint";
"_magentacloud_version_" = "MagentaCLOUD Version";
"_url_" = "URL";
"_username_" = "Username";
"_change_credentials_" = "Change your credentials";
"_wifi_only_" = "Only use Wi-Fi connection";
"_settings_autoupload_" = "Auto upload";
"_app_version_" = "Application version";
"_app_in_use_" = "Application in use";
"_contact_by_email_" = "Contact us by email";
"_clear_cache_" = "Clear cache";
"_clear_cache_footer_" = "Clear downloaded and offline files from the app";
"_exit_footer_" = "Remove all accounts and local data from the app.";
"_exit_" = "Logout";
"_funct_not_enabled_" = "Functionality not enabled";
"_passcode_activate_" = "Password lock on";
"_disabling_passcode_" = "Removing password lock";
"_want_exit_" = "Attention! Will be reset to initial state. Continue?";
"_proceed_" = "Proceed";
"_delete_cache_" = "Delete cache";
"_want_delete_cache_" = "Do you want to delete the cache (this also removes the transfers in progress)?";
"_want_delete_thumbnails_" = "Do you want to delete all thumbnails too?";
"_mail_deleted_" = "Email deleted";
"_mail_saved_" = "Email saved";
"_mail_sent_" = "Email sent";
"_mail_failure_" = "Could not send email: %@";
"_information_req_" = "Information request";
"_write_in_english_" = "Kindly write to us in English";
"_credentials_" = "Credentials";
"_manage_account_" = "Manage account";
"_change_password_" = "Change password";
"_add_account_" = "Add account";
"_delete_account_" = "Remove account";
"_delete_active_account_" = "Remove active account";
"_want_delete_" = "Do you really want to delete?";
"_no_delete_" = "No, do not delete";
"_yes_delete_" = "Yes, delete";
"_remove_cache_" = "Deleting cache, please wait …";
"_optimizations_" = "Optimizations";
"_synchronizations_" = "Synchronized folders";
"_version_server_" = "Server version";
"_help_" = "Help";
"_change_simply_passcode_" = "Change password type";
"_quota_" = "Quota";
"_available_" = "Available";
"_not_available_" = "Not available";
"_accounts_" = "Accounts";
"_information_" = "Information";
"_personal_information_" = "Personal info";
"_user_full_name_" = "Full name";
"_user_address_" = "Address";
"_user_phone_" = "Phone number";
"_user_email_" = "Email";
"_user_web_" = "Website";
"_user_twitter_" = "Twitter";
"_user_job_" = "Job";
"_user_businesssize_" = "Business size";
"_user_businesstype_" = "Business type";
"_user_city_" = "City";
"_user_country_" = "Country";
"_user_company_" = "Company";
"_user_role_" = "Role";
"_user_zip_" = "Zip";
"_user_owner_" = "Owner";
"_user_employee_" = "Employee";
"_user_contractor_" = "Contractor";
"_user_editprofile_" = "Edit profile";
"_select_offline_warning_" = "Making multiple files and folders available offline may take a while and use a lot of memory while doing so.";
"_advanced_" = "Advanced";
"_permissions_" = "Permissions";
"_disable_files_app_" = "Disable Files App integration";
"_disable_files_app_footer_" = "Do not permit the access of files via the iOS Files application.";
"_trial_" = "Trial";
"_trial_expired_day_" = "Days remaining";
"_time_remaining_" = "%@ remaining";
"_disableLocalCacheAfterUpload_footer_" = "After uploading the file, do not keep it in the local cache";
"_disableLocalCacheAfterUpload_" = "Disable local cache";
"_autoupload_" = "Auto upload photos/videos";
"_autoupload_select_folder_" = "Select the \"Auto upload\" folder";
"_autoupload_error_select_folder_" = "Select a valid folder for the \"Auto upload\"";
"_autoupload_background_" = "Auto upload in the background";
"_autoupload_photos_" = "Auto upload photos";
"_autoupload_videos_" = "Auto upload videos";
"_autoupload_favorites_" = "Auto upload favorites only";
"_autoupload_description_" = "New photos/videos will be automatically uploaded to your server.";
"_autoupload_description_" = "New photos/videos will be automatically uploaded to your MagentaCLOUD";
"_autoupload_description_background_" = "This option requires the use of GPS to trigger the detection of new photos/videos in the camera roll once the location changes significantly";
"_autoupload_background_title_" = "Limitations";
"_autoupload_background_msg_" = "Due to iOS restrictions, it is not yet possible to perform background processes, unless GPS services are activated. Once the cell in the cellular network is changed, the system wakes up for a short time and checks for new photos to upload to the cloud.";
"_autoupload_change_location_" = "Change folder";
"_autoupload_location_now_" = "Folder";
"_autoupload_location_default_" = "Restore default folder";
"_autoupload_change_location_footer_" = "Change folder used for \"Automatic upload of camera photos\" (if the option is enabled)";
"_autoupload_not_select_home_" = "Select a folder";
"_autoupload_save_album_" = "Copy photo or video into the photo album";
"_autoupload_fullphotos_" = "Upload the whole camera roll";
"_autoupload_fullphotos_footer_" = "Adjust the options above before uploading.";
"_autoupload_create_subfolder_" = "Use subfolders";
"_autoupload_create_subfolder_footer_" = "Store in subfolders based on year, month or daily.";
"_autoupload_subfolder_granularity_" = "Subfolder Granularity";
"_filenamemask_" = "Change filename mask";
"_filenamemask_footer_" = "By default, when a file is uploaded, it automatically gets the following format: yy-mm-dd hh-mm-ss plus a 4-digit counter. If you do not like this format, you can change it here except for the final 4-digit counter, which cannot be omitted.";
"_autoupload_current_folder_" = "Currently selected folder";
"_help_tutorial_" = "Tutorial";
"_help_intro_" = "Introduction to Nextcloud";
"_help_activity_verbose_" = "Detailed Activity feed";
"_help_activity_mail_" = "Send activity via email";
"_help_activity_clear_" = "Clear activity";
"_show_hidden_files_" = "Show hidden files";
"_format_compatibility_" = "Most Compatible";
"_format_compatibility_footer_" = "\"Most compatible\" will save photos as JPEG, if possible.";
"_terms_" = "Terms of Service";
"_privacy_" = "Privacy";
"_privacy_policy_" = "Privacy Policy";
"_privacy_footer_" = "This app uses a service for the analysis of a crash. Your personal information is not sent with the report. If you want disable it, please change the setting \"Disable crash reporter\" to ON.";
"_crashservice_title_" = "Disable crash reporter";
"_crashservice_alert_" = "This option requires a restart of the app to take effect";
"_upload_mov_livephoto_" = "Live Photo";
"_upload_mov_livephoto_footer_" = "\"Live Photo\" will save the selected photo in \"Live Photo\" format, if possible.";
"_view_capabilities_" = "View the capabilities";
"_capabilities_" = "Capabilities";
"_no_capabilities_found_" = "Capabilities not found";
"_capabilities_footer_" = "Display the packages used by the app if they are installed and available on the server.";
"_diagnostics_" = "Diagnostics";
"_view_log_" = "View log file";
"_clear_log_" = "Clear log file";
"_set_log_level_" = "Set Log level";
"_log_file_clear_alert_" = "Log file cleared \n successfully!";
"_connect_server_anyway_" = "Do you want to connect to the server anyway?";
"_server_is_trusted_" = "Do you consider this server trusted?";
"_connection_error_" = "Connection error";
"_serverstatus_error_" = "Connection to server failure, verify your server address or network status";
"_add_your_nextcloud_" = "Add your account";
"_login_url_" = "Server address https:// …";
"_login_bottom_label_" = "Don't have a server yet?\nChoose one of the providers.";
"_error_multidomain_" = "Address not allowed, only the following domains are valid:";
"_account_already_exists_" = "The account %@ already exists";
"_traditional_login_" = "Revert to old login method";
"_web_login_" = "Revert to web login method";
"_login_url_error_" = "URL error, please verify your server URL";
"_webflow_not_available_" = "Web login not available, use the old login method";
"_favorites_" = "Favorites";
"_favorite_" = "Favorite";
"_unfavorite_" = "Unfavorite";
"_no_files_uploaded_" = "No files uploaded";
"_tutorial_favorite_view_" = "Files and folders you mark as favorites will show up here";
"_tutorial_offline_view_" = "Files copied here will be available offline.\n\nThey will be synchronized with your cloud.";
"_tutorial_groupfolders_view_" = "No Group folders yet";
"_tutorial_local_view_" = "You'll find the unpacked files from your cloud.\n\nConnect to iTunes to share these files.";
"_more_" = "More";
"_favorite_no_files_" = "No favorites yet";
"_pull_down_" = "Pull down to refresh";
"_no_photo_load_" = "No photo or video";
"_tutorial_autoupload_view_" = "You can enable auto uploads from \"Settings\"";
"_no_date_information_" = "No date information";
"_no_camera_information_" = "No camera information";
"_no_lens_information_" = "No lens information";
"_today_" = "Today";
"_yesterday_" = "Yesterday";
"_time_" = "Time: %@\n\n%@";
"_location_not_enabled_" = "Location Services not enabled";
"_location_not_enabled_msg_" = "Please go to \"Settings\" and turn on \"Location Services\"";
"_access_photo_not_enabled_" = "Access to Photos not enabled";
"_access_photo_not_enabled_msg_" = "Please go to \"Settings\" and turn on \"Photo Access\"";
"_access_background_app_refresh_denied_" = "\"Background App Refresh\" is denied. Please enable it in \"Settings\" otherwise, new photos or videos will not be detected when the application is in the background";
"_access_photo_location_not_enabled_" = "Access to Photos and Location not enabled";
"_access_photo_location_not_enabled_msg_" = "Please go to \"Settings\" and turn on \"Photo Access\" and \"Location Services\"";
"_tutorial_photo_view_" = "No photos or videos uploaded yet";
"_error_createsubfolders_upload_" = "Error creating subfolders";
"_activate_autoupload_" = "Enable auto upload";
"_remove_photo_CameraRoll_" = "Remove from camera roll";
"_remove_photo_CameraRoll_desc_" = "\"Remove from camera roll\" after uploads, a confirmation message will be displayed to delete the uploaded photos or videos from the camera roll. The deleted photos or videos will still be available in the iOS Photos Trash for 30 days.";
"_never_" = "never";
"_less_a_minute_" = "less than a minute ago";
"_a_minute_ago_" = "a minute ago";
"_minutes_ago_" = "%d minutes ago";
"_an_hour_ago_" = "an hour ago";
"_hours_ago_" = "%d hours ago";
"_a_day_ago_" = "a day ago";
"_days_ago_" = "%d days ago";
"_over_30_days_" = "over 30 days";
"_connection_internet_offline_" = "The internet connection appears to be offline or Wi-Fi is required";
"_insert_password_" = "Enter password";
"_update_in_progress_" = "Version upgrade, please wait …";
"_forbidden_characters_" = "Forbidden characters: %@";
"_cannot_send_mail_error_" = "No account set up, or wrong email address entered";
"_open_url_error_" = "Cannot open the URL for this action";
"_photo_camera_" = "Photos";
"_media_" = "Media";
"_unzip_in_progress_" = "Extraction in progress on local storage …";
"_file_unpacked_" = "File unpacked on local storage";
"_file_saved_local_" = "File saved on local storage.";
"_file_not_present_" = "Error: File not present, please reload.";
"_order_by_" = "Sort by";
"_name_" = "Name";
"_date_" = "Date";
"_size_" = "Size";
"_order_by_name_a_z_" = "Sort by name (from A to Z)";
"_sorted_by_name_a_z_" = "Sorted by name (from A to Z)";
"_order_by_name_z_a_" = "Sort by name (from Z to A)";
"_sorted_by_name_z_a_" = "Sorted by name (from Z to A)";
"_order_by_date_more_recent_" = "Sort by newest";
"_sorted_by_date_more_recent_" = "Sorted by newest";
"_order_by_date_less_recent_" = "Sort by oldest";
"_sorted_by_date_less_recent_" = "Sorted by oldest";
"_order_by_size_smallest_" = "Sort by smallest";
"_sorted_by_size_smallest_" = "Sorted by smallest";
"_order_by_size_largest_" = "Sort by largest";
"_sorted_by_size_largest_" = "Sorted by largest";
"_delete_selected_files_" = "Delete files";
"_move_selected_files_" = "Move files";
"_move_or_copy_selected_files_" = "Move or copy files";
"_download_selected_files_" = "Download files";
"_download_selected_files_folders_" = "Download files and folders";
"_error_operation_canc_" = "Error: Operation canceled.";
"_only_lock_passcode_" = "Available only with Lock password activated. Activate it in the \"Settings\".";
"_go_to_app_settings_" = "Go to app settings";
"_passcode_protection_" = "Password protection";
"_remove_favorites_" = "Remove from favorites";
"_remove_offline_" = "Remove from offline";
"_add_favorites_" = "Add to favorites";
"_add_offline_" = "Add to offline";
"_remove_passcode_" = "Remove password protection";
"_protect_passcode_" = "Protect with password";
"_share_" = "Share";
"_reload_" = "Reload";
"_open_in_" = "Open in …";
"_open_" = "Open …";
"_remove_local_file_" = "Remove locally";
"_add_local_" = "Add to local storage";
"_comm_erro_pull_down_" = "Attention: Communication error with the server. Pull down to refresh.";
"_file_not_downloaded_" = "file not downloaded";
"_file_not_uploaded_" = "file not uploaded";
"_folders_" = "folders";
"_folder_" = "folder";
"_files_" = "files";
"_file_" = "file";
"_folder_blocked_" = "Folder blocked";
"_downloading_progress_" = "Initiating download of files …";
"_no_file_pull_down_" = "Upload a file or pull down to refresh";
"_browse_images_" = "Browse images";
"_synchronized_folder_" = "Keep the folder synchronized";
"_remove_synchronized_folder_" = "Turn off the synchronization";
"_synchronized_confirm_" = "After enabling the synchronization, all files in the folder will be synchronized with the server, continue?";
"_offline_folder_confirm_" = "After enabling the offline folder, all files in it will be synchronized with the server, continue?";
"_file_not_found_reload_" = "File not found, pull down to refresh";
"_title_section_download_" = "DOWNLOAD";
"_download_" = "Download";
"_title_section_upload_" = "UPLOAD";
"_group_alphabetic_yes_" = "✓ Group alphabetically";
"_group_alphabetic_no_" = "Group alphabetically";
"_group_typefile_yes_" = "✓ Group by file type";
"_group_typefile_no_" = "Group by file type";
"_group_date_yes_" = "✓ Group by date";
"_group_date_no_" = "Group by date";
"_element_" = "element";
"_elements_" = "elements";
"_tite_footer_upload_wwan_" = " Wi-Fi network required, %lu %@ to upload";
"_tite_footer_upload_" = "%lu %@ to upload";
"_tite_footer_download_wwan_" = " Wi-Fi network required, %lu %@ to download";
"_tite_footer_download_" = "%lu %@ to download";
"_limited_dimension_" = "Maximum size reached";
"_save_selected_files_" = "Save to photo gallery";
"_file_not_saved_cameraroll_" = "Error: File not saved in photo album";
"_file_saved_cameraroll_" = "File saved in photo album";
"_directory_on_top_yes_" = "✓ Folders on top";
"_directory_on_top_no_" = "Folders on top";
"_show_description_" = "Show description";
"_show_recommended_files_" = "Show recommended files";
"_no_description_available_" = "No description available for this folder";
"_folder_automatic_upload_" = "Folder for \"Auto upload\"";
"_search_no_record_found_" = "No result";
"_search_in_progress_" = "Search in progress …";
"_search_instruction_" = "Search for file (minimum 2 characters)";
"_files_no_files_" = "No files in here";
"_files_no_folders_" = "No folders in here";
"_request_in_progress_" = "Request to server in progress …";
"audio" = "AUDIO";
"compress" = "COMPRESS";
"directory" = "FOLDERS";
"document" = "DOCUMENTS";
"image" = "IMAGES";
"template" = "TEMPLATES";
"unknow" = "UNKNOWN";
"video" = "VIDEO";
"_file_del_only_local_" = "File not present on server";
"_copy_file_" = "Copy";
"_paste_file_" = "Paste";
"_open_quicklook_" = "Open with Quick Look";
"_search_this_folder_" = "Search in this folder";
"_search_all_folders_" = "Search in all folders";
"_search_sub_folder_" = "Search here and in subfolders";
"_theming_is_light_" = "Server theming too brightly coloured, not applicable";
"_cancel_all_task_" = "Cancel all transfers";
"_status_wait_download_" = "Waiting for download";
"_status_in_download_" = "In download";
"_status_downloading_" = "Downloading";
"_status_wait_upload_" = "Waiting to upload";
"_status_wait_create_folder_" = "Waiting to create the folder";
"_status_wait_delete_" = "Waiting to delete";
"_status_wait_rename_" = "Waiting to rename";
"_status_wait_favorite_" = "Waiting to change favorite";
"_status_wait_copy_" = "Waiting to copy";
"_status_wait_move_" = "Waiting to move";
"_status_in_upload_" = "In upload";
"_status_uploading_" = "Uploading";
"_status_upload_error_" = "Error, waiting to upload";
"_select_media_folder_" = "Set Media folder";
"_media_viewimage_show_" = "Show only images";
"_media_viewvideo_show_" = "Show only video";
"_media_show_all_" = "Show both";
"_media_by_created_date_" = "Sort by created date";
"_media_by_upload_date_" = "Sort by upload date";
"_media_by_modified_date_" = "Sort by modified date";
"_insert_password_pfd_" = "Secured PDF. Enter password";
"_password_pdf_error_" = "Wrong password";
"_error_download_photobrowser_" = "Error: Unable to download photo";
"_good_morning_" = "Good morning";
"_good_day_" = "Good day";
"_good_afternoon_" = "Good afternoon";
"_good_evening_" = "Good evening";
"_good_night_" = "Good night";
"_servers_" = "Servers";
"_select_server_" = "Please select a server...";
// MARK: Share
"_share_link_" = "Share link";
"_share_link_button_" = "Send link to …";
"_share_link_name_" = "Link name";
"_password_" = "Password";
"_share_password_" = "Password protected link";
"_share_expirationdate_" = "Set expiration date for link";
"_date_" = "Date";
"_share_title_" = "Share";
"_add_sharee_" = "Add users or groups";
"_add_sharee_footer_" = "You can share this resource by adding users or groups. To remove a share, remove all users and groups";
"_find_sharee_title_" = "Search";
"_find_sharee_" = "Search for user or group …";
"_find_sharee_footer_" = "Enter part of the name of the user or group to search for (at least 2 characters) followed by \"Return\", select the users that should be allowed to access the share followed by \"Done\" to confirm";
"_user_is_group_" = "(Group)";
"_direct_sharee_title_" = "Share";
"_direct_sharee_footer_" = "If you already know the name, enter it, then select the share type and press \"Done\" to confirm";
"_direct_sharee_" = "Enter the username …";
"_user_sharee_footer_" = "Tap to change permissions";
"_share_type_title_" = "Type of share";
"_share_type_user_" = "User";
"_share_type_group_" = "Group";
"_share_type_remote_" = "Remote";
"_enforce_password_protection_" = "Enforce password protection";
"_password_obligatory_" = "Enforce password protection enabled, password obligatory";
"_shared_with_you_by_" = "Shared with you by";
"_share_reshare_allowed_" = "Resharing is allowed.";
"_share_reshare_not_allowed_" = "Resharing is not allowed.";
"_sharing_message_" = "You can create links or send shares by mail. If you invite MagentaCLOUD users, you have more opportunities for collaboration.";
"_create_link_" = "Create Link";
"personal_share_by_mail" = "Personal share by mail";
"_your_shares_" = "Your Shares";
"_share_linklabel_" = "Link '%@'";
"_share_link_folder_" = "Link to folder";
"_share_link_file_" = "Link to file";
"no_shares_created" = "No shares created yet.";
"_advance_permissions_" = "Advanced permissions";
"_send_new_email_" = "Send new email";
"_apply_changes_" = "Apply changes";
"_send_share_" = "Send share";
"_PERMISSIONS_" = "PERMISSIONS";
"share_editing_message" = "There are no editing functions for files unless you share them with MagentaCLOUD users.";
"_file_drop_message_" = "With File drop, only uploading is allowed. Only you can see files and folders that have been uploaded.";
"_custom_link_label" = "Your custom link label";
"_set_password_" = "Set password";
"_share_expiration_date_placeholder_"= "Expiration date for this share";
"_share_download_limit_" = "Download Limit";
"_share_download_limit_placeholder_" = "Enter download limit";
"_share_download_limit_alert_empty_" = "Download limit cannot be empty.";
"_share_download_limit_alert_zero_" = "Download limit should be greater than 0.";
"_share_remaining_download_" = "Downloads:";
"_share_read_only_" = "Read only";
"_share_editing_" = "Can edit";
"_share_file_drop_" = "Filedrop only";
"_share_hide_download_" = "Prevent download";
"_share_note_recipient_" = "YOUR MESSAGE";
"_shareLinksearch_placeholder_" = "Contact name or email address";
"_shareLinksearch_mail_placeholder_" = "Type a name or an email and press Enter";
"_new_comment_" = "New comment …";
"_edit_comment_" = "Edit comment";
"_delete_comment_" = "Delete comment";
"_share_allow_editing_" = "Allow editing";
"_share_allow_upload_" = "Allow upload and editing";
"_share_secure_file_drop_" = "Secure file drop (upload only)";
"_share_password_protect_" = "Password protect";
"_share_expiration_date_" = "Set expiration date";
"_share_note_recipient_" = "Note to recipient";
"_share_delete_sharelink_" = "Delete link";
"_share_add_sharelink_" = "Add another link";
"_share_can_reshare_" = "Allow resharing";
"_share_can_create_" = "Allow creating";
"_share_can_change_" = "Allow editing";
"_share_can_delete_" = "Allow deleting";
"_share_unshare_" = "Unshare";
"_share_internal_link_" = "Internal link";
"_share_internal_link_des_" = "Only works for users with access to this file/folder";
"_share_reshare_disabled_" = "You are not allowed to reshare this file/folder";
"_share_reshare_restricted_" = "Note: You only have limited permission to reshare this file/folder";
"_share_can_download_" = "Allow download";
"_no_transfer_" = "No transfers yet";
"_no_transfer_sub_" = "Uploads and downloads from this device will show up here";
"_no_activity_" = "No activity yet";
"_no_activity_footer_" = "No more activities to load";
"_transfers_" = "Transfers";
"_activity_" = "Activity";
"_activity_file_not_present_" = "File no longer present";
"_trash_file_not_found_" = "It seems that the file is not in the trash. Go to the trash to update it and try again";
"_list_shares_" = "Shares";
"_list_shares_no_files_" = "No shares yet";
"_tutorial_list_shares_view_" = "Files and folders you share will show up here";
"_create_synchronization_" = "Create synchronization";
"_offline_" = "Offline";
"_local_storage_" = "Local storage";
"_local_storage_no_record_" = "No files yet";
"_upload_photos_videos_" = "Upload photos or videos";
"_upload_file_" = "Upload file";
"_upload_file_text_" = "Create text file";
"_create_nextcloudtext_document_" = "Create text document";
"_save_document_picker_" = "Save here";
"_destination_folder_" = "Destination folder";
"_use_folder_auto_upload_" = "Use the \"Auto upload\" folder as destination";
"_rename_filename_" = "Rename";
"_filename_" = "Filename";
"_enter_filename_" = "Enter filename …";
"_default_preview_filename_footer_" = "Example preview of filename: IMG_0001.JPG";
"_filename_header_" = "Enter filename";
"_preview_filename_" = "Example preview of filename. You can use the mask %@ for date/time";
"_add_filenametype_" = "Specify type in filename";
"_filenametype_photo_video_" = "Photo/Video";
"_maintain_original_filename_" = "Maintain original filename";
"_modify_photo_" = "Modify photo";
"_notifications_" = "Notifications";
"_no_notification_" = "No notifications yet";
"_autoupload_filename_title_" = "Auto upload filename";
"_untitled_" = "Untitled";
"_text_upload_title_" = "Upload text file";
"_e2e_settings_title_" = "Encryption";
"_e2e_settings_" = "End-to-end encryption";
"_e2e_settings_start_" = "Start end-to-end encryption";
"_e2e_settings_not_available_" = "End-to-end encryption not available";
"_e2e_settings_activated_" = "End-to-end encryption activated";
"_e2e_server_disabled_" = "End-to-end encryption app disabled on server";
"_e2e_settings_view_passphrase_" = "All 12 words together make a very strong password, letting only you view and make use of your encrypted files. Please write it down and keep it somewhere safe.";
"_e2e_settings_read_passphrase_" = "Read passphrase";
"_e2e_settings_lock_not_active_" = "Lock not active, go back to \"Settings\" and activate it";
"_e2e_settings_the_passphrase_is_" = "The passphrase is:";
"_e2e_passphrase_request_title_" = "Request passphrase";
"_e2e_passphrase_request_message_" = "Insert the 12 words";
"_e2e_settings_remove_" = "Remove the encryption locally";
"_e2e_settings_remove_message_" = "Confirm removal of encryption along with the passphrase.";
"_e2e_set_folder_encrypted_" = "Encrypt";
"_e2e_remove_folder_encrypted_" = "Decrypt";
"_e2e_goto_settings_for_enable_" = "This is an encrypted directory, go to \"Settings\" and enable end-to-end encryption";
"_e2e_error_" = "An internal end-to-end encryption error occurred";
"_e2e_in_upload_" = "Upload in progress, please wait for all files to be transferred";
"_e2e_delete_folder_not_permitted_" = "Deletion of the directory marked as \"encrypted\" is not allowed";
"_e2e_error_encode_metadata_" = "Serious internal error in encoding metadata";
"_e2e_error_decode_metadata_" = "Serious internal error in decoding metadata";
"_e2e_error_create_encrypted_" = "Could not create encrypted file";
"_e2e_error_update_metadata_" = "Update metadata error";
"_e2e_error_store_metadata_" = "Could not save metadata";
"_e2e_error_send_metadata_" = "Could not send metadata";
"_e2e_error_delete_metadata_" = "Could not delete metadata";
"_e2e_error_get_metadata_" = "Could not fetch metadata";
"_e2e_error_not_enabled_" = "Serious internal error. End-to-end encryption not enabled";
"_e2e_error_record_not_found_" = "Serious internal error. Records not found";
"_e2e_error_unlock_" = "Could not unlock folder";
"_e2e_error_lock_" = "Could not lock folder";
"_e2e_error_delete_mark_folder_" = "Decrypt marked folder";
"_e2e_error_mark_folder_" = "Encrypt folder";
"_e2e_error_directory_not_empty_" = "The directory is not empty";
"_e2e_error_not_move_" = "It is not possible move files to encrypted directory";
"_e2e_error_not_versionwriteable_" = "The E2EE version of the server is not compatible with this client";
"_start_e2e_encryption_1_" = "To set up end-to-end encryption, they must first set up the PIN lock to prevent unauthorised people from accessing your key.";
"_start_e2e_encryption_2_" = "After starting the encryption, a randomly generated word sequence (passphrase) of 12 words is displayed. This remains in this app and can be displayed again. Nevertheless, we recommend that you write down the passphrase.";
"_start_e2e_encryption_3_" = "The passphrase is your personal password with which you can access encrypted data in your MagentaCLOUD or enable access to these files on other devices such as your PC.";
"_read_passphrase_description_" = "Here you can display the passphrase again and also copy it. You need the passphrase if you want to decrypt the data on another device with access to MagentaCLOUD, for example your PC or another smartphone or tablet.";
"_remove_passphrase_desc_1_" = "You can remove the passphrase on this device. This will not affect the encrypted content, but this device will no longer be able to decrypt your data.";
"_remove_passphrase_desc_2_" = "You can re-enter the passphrase here at any time to ensure access to your encrypted content from this device.";
"_e2e_error_incorrect_passphrase_" = "Wrong password?";
"_e2e_error_passphrase_title" = "Error while decrypting.";
"_scans_document_" = "Scan document";
"_scanned_images_" = "Scanned images";
"_scan_document_pdf_page_" = "Page";
"_scan_label_document_zone_" = "Tap or drag images down for document creation";
"_filter_document_" = "Document";
"_filter_original_" = "Original";
"_filter_bn_" = "Black & White";
"_filter_grayscale_" = "Grayscale";
"_quality_image_title_" = "Preview image quality";
"_quality_high_" = "Large file size of high quality";
"_quality_medium_" = "Average file size of medium quality";
"_quality_low_" = "Small file size of low quality";
"_file_type_" = "File type";
"_pdf_password_" = "PDF Password";
"_file_creation_" = "File creation";
"_delete_all_scanned_images_" = "Delete all scanned images";
"_text_recognition_" = "Text recognition";
"_all_files_" = "All files";
"_personal_files_" = "Personal Files";
/* The title on the navigation bar of the Scanning screen. */
"wescan.scanning.title" = "Scanning";
/* The "Next" button on the right side of the navigation bar on the Edit screen. */
"wescan.edit.button.next" = "Next";
/* The title on the navigation bar of the Edit screen. */
"wescan.edit.title" = "Edit Scan";
/* The "Done" button on the right side of the navigation bar on the Review screen. */
"wescan.review.button.done" = "Done";
/* The title on the navigation bar of the Review screen. */
"wescan.review.title" = "Review";
"_trash_view_" = "Deleted files";
"_trash_restore_all_" = "Restore all files";
"_trash_delete_all_" = "Empty trash";
"_trash_delete_permanently_" = "Delete permanently";
"_trash_delete_all_description_" = "Do you want to empty the trash bin?";
"_trash_no_trash_" = "No files deleted";
"_trash_no_trash_description_" = "You can restore deleted files from here";
"_trash_restore_selected_" = "Restore selected files?";
"_trash_delete_selected_" = "Delete selected files?";
"_recover_" = "Recover";
"_confirm_delete_selected_" = "Are you sure you want to delete the selected items?";
"_manage_file_offline_" = "Manage offline files";
"_set_available_offline_" = "Set as available offline";
"_remove_available_offline_" = "Remove as available offline";
"_create_new_document_" = "Create new document";
"_create_new_spreadsheet_" = "Create new spreadsheet";
"_create_new_presentation_" = "Create new presentation";
"_go_online_" = "Go online to see the document";
"_intro_1_title_" = "Keep your data secure and under your control";
"_intro_2_title_" = "Secure collaboration & file exchange";
"_intro_3_title_" = "Easy-to-use web mail, calendaring & contacts";
"_intro_4_title_" = "Screen sharing, online meetings & web conferences";
"_log_in_" = "Log in";
"_sign_up_" = "Sign up with provider";
"_host_your_own_server" = "Host your own server";
"_unauthorized_" = "Unauthorized";
"_bad_username_password_" = "Wrong username or password";
"_cancelled_by_user" = "Transfer canceled";
"_error_folder_destiny_is_the_same_" = "It is not possible to move the folder into itself";
"_error_not_permission_" = "You don't have permission to complete the operation";
"_error_path_" = "Unable to open this file or folder. Please make sure it exists";
"_file_upload_not_exitst_" = "The file that you want to upload does not exist";
"_forbidden_characters_from_server_" = "The name contains at least one invalid character";
"_error_not_modified_" = "Resource not modified";
"_not_connected_internet_" = "Server connection error";
"_not_possible_connect_to_server_" = "It is not possible to connect to the server at this time";
"_not_possible_create_folder_" = "Folder could not be created";
"_server_down_" = "Could not establish contact with server";
"_time_out_" = "Timeout, try again";
"_unknow_response_server_" = "Unexpected response from server";
"_user_authentication_required_" = "User authentication required";
"_file_directory_locked_" = "File or directory locked";
"_ssl_certificate_untrusted_" = "The certificate for this server is invalid";
"_ssl_certificate_changed_" = "The certificate for this server seems to have changed";
"_internal_server_" = "Internal server error";
"_file_already_exists_" = "Could not complete the operation, a file with the same name exists";
"_file_folder_not_exists_" = "The source file wasn't found at the specified path";
"_folder_contents_nochanged_" = "The folder contents have not changed";
"_images_invalid_converted_" = "The image is invalid and cannot be converted to a thumbnail";
"_method_not_expected_" = "Unexpected request method";
"_reauthenticate_user_" = "Access expired, log in again";
"_server_error_retry_" = "The server is temporarily unavailable";
"_too_many_files_" = "Too many files would be involved in this operation";
"_too_many_request_" = "Sending too many requests caused the rate limit to be reached";
"_user_over_quota_" = "Storage quota is reached";
"_ssl_connection_error_" = "Connection SSL error, try again";
"_bad_request_" = "Bad request";
"_webdav_locked_" = "WebDAV Locked: Trying to access locked resource";
"_error_user_not_available_" = "The user is no longer available";
"_server_response_error_" = "Server response content error";
"_no_nextcloud_found_" = "Server not found";
"_error_decompressing_" = "Error during decompressing. Unknown compression method or the file is corrupt";
"_error_json_decoding_" = "Serious internal error in decoding metadata (The data couldn't be read because it isn't in the correct format.)";
"_error_check_remote_user_" = "Server responded with an error. Please log in again";
"_request_entity_too_large_" = "The file is too large";
"_not_possible_download_" = "It is not possible to download the file";
"_not_possible_upload_" = "It is not possible to upload the file";
"_error_files_upload_" = "Error uploading files";
"_method_not_allowed_" = "The requested method is not supported";
"_invalid_url_" = "Invalid server URL";
"_invalid_literal_" = "Invalid search string";
"_invalid_date_format_" = "Invalid date format";
"_invalid_data_format_" = "Invalid data format";
"_error_decode_xml_" = "Invalid response, error decode XML";
"_internal_generic_error_" = "internal error";
"_editor_unknown_" = "Failed to open file: Editor is unknown";
"_err_file_not_found_" = "File not found, removed";
"_err_e2ee_app_version_" = "The app version of end-to-end encryption is not compatible with the server, please update your server";
"_err_permission_microphone_" = "Please allow Microphone usage from Settings";
"_err_permission_photolibrary_" = "Please allow Photos from Settings";
"_err_permission_locationmanager_" = "Please allow Location - Always from Settings";
"_qrcode_not_authorized_" = "This app is not authorized to use Back Camera";
"_qrcode_not_supported_" = "QR code not supported by the current device";
"_create_voice_memo_" = "Create voice memo";
"_voice_memo_start_" = "Tap to start";
"_voice_memo_stop_" = "Tap to stop";
"_voice_memo_filename_" = "Voice memo";
"_voice_memo_title_" = "Upload voice memo";
"Enter Passcode" = "Enter Passcode";
"Enter a new passcode" = "Enter a new passcode";
"Confirm new passcode" = "Confirm new passcode";
"_too_many_failed_passcode_attempts_error_" = "Too many failed passcode attempts. Please try again.";
"Passcodes didn't match. Try again." = "Passcodes didn't match. Try again.";
"Delete" = "Delete";
"Cancel" = "Cancel";
"_certificate_details_" = "Certificate Server details";
"_certificate_pn_details_" = "Certificate Push Notification details";
"_certificate_view_" = "Certificate Server";
"_certificate_pn_view_" = "Certificate Push Notification";
"_save_as_scan_" = "Save as scan";
"_modify_" = "Modify";
"_overwrite_original_" = "Overwrite original";
"_save_as_copy_" = "Save as copy";
"_discard_changes_" = "Close and discard changes";
"_message_disable_overwrite_livephoto_" = "This image is a Live Photo, overwrite will not be possible";
"_discard_changes_info_" = "Your changes will be discarded.";
"_delete_files_desc_" = "Delete files to free up space";
"_delete_old_files_" = "Delete, in the cache, all files older than";
"_never_" = "Never";
"_1_year_" = "1 year";
"_6_months_" = "6 months";
"_3_months_" = "3 months";
"_1_month_" = "1 month";
"_1_week_" = "1 week";
"_1_day_" = "1 day";
"_monthly_" = "Monthly";
"_yearly_" = "Yearly";
"_weekly_" = "Weekly";
"_daily_" = "Daily";
"_day_" = "Day";
"_used_space_" = "Used space";
"_open_in_onlyoffice_" = "Open in ONLYOFFICE";
"_open_in_collabora_" = "Open with Collabora Online";
"_login_address_detail_" = "The link to your %@ web interface when you open it in the browser.";
"_go_to_page_" = "Go to page";
"_page_" = "Page";
"_this_document_has_%@_pages_" = "This document has %@ pages";
"_invalid_page_" = "Invalid Page";
"_the_entered_page_number_does_not_exist_" = "The entered page number does not exist";
"_error_something_wrong_" = "Something went wrong";
"_resolution_" = "Resolution";
"_try_download_full_resolution_" = "Download full resolution image";
"_full_resolution_image_info_" = "This may reveal more information about the photo.";
"_download_audio_" = "Download the audio locally";
"_copied_path_" = "Copied path";
"_copy_path_" = "Copy path";
"_certificates_" = "Certificates";
"_privacy_screen_" = "Splash screen when app inactive";
"_saving_" = "Saving …";
"_video_not_streamed_" = "The server does not allow video streaming, do you want to download it?";
"_video_not_streamed_e2ee_" = "The server does not allow video streaming because it is encrypted, do you want to download it?";
"_scan_" = "Scan";
"_in_" = "in";
"_enter_passphrase_" = "Enter passphrase (12 words)";
"_show_more_results_" = "Show more results";
"_waiting_for_" = "Waiting for:";
"_waiting_" = "Waiting …";
"_reachable_wifi_" = "network reachable via Wi-Fi or cable";
"_password_not_present_" = "Please re-insert your credentials.";
"_copy_passphrase_" = "Copy passphrase";
"_ok_copy_passphrase_" = "OK and copy passphrase";
"_select_color_" = "Select the color";
"_change_color_" = "Change color";
"_description_dashboardwidget_" = "Having the Dashboard always at your fingertips has never been easier.";
"_description_fileswidget_" = "View your recent files and use the toolbar to speed up your operations.";
"_description_toolbarwidget_" = "A toolbar to speed up your operations.";
"_no_data_available_" = "No data available";
"_widget_available_nc25_" = "Widget only available starting with server version 25";