locales.js 60.8 KB
Newer Older
mntmn's avatar
mntmn committed
1
2
3
4
window.locales = {};
window.locales.en = {};
window.locales.de = {};
window.locales.fr = {};
Mejans's avatar
Mejans committed
5
window.locales.oc = {};
mntmn's avatar
mntmn committed
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
window.locales.en.translation = 
{
	"ok": "OK",
	"cancel": "Cancel",
	"close": "Close",
	"open": "Open",
	"folder": "Folder",
	"save": "Save",
	"saved": "Saved",
	"created": "created",
	"duplicate": "Duplicate",
	"delete": "Delete",
	"remove": "Remove",
	"set": "set",
	"reset": "reset",
	"thanks": "Thanks",
	"share": "Share",
	"signup": "Sign Up",
	"login": "Log in",
	"logout": "Log out",
	"email": "Email Address",
	"password": "Password",
	"width": "Width",
	"height": "Height",
	"nick": "Name",
	"role": "Role",
	"members": "Members",
	"actions": "Actions",
	"or": "or",
	"you": "you",
	"via": "via",
	"by": "by",
	"zero": "Zero",
	"page": "Page",
	"new": "New",
	"copy": "Copy",
	"home": "Home",
	"owner": "Owner",
	"space": "Space",
	"second": "Second",
	"not_found": "Not Found.",
	"untitled_space": "Untitled Space",
	"untitled_folder": "Untitled Folder",
	"untitled": "untitled",
	"sure": "Are you sure?",
	"specify": "Please Specify",
	"confirm": "Please Confirm",
	"signup_google": "Sign In with Google",
	"error_unknown_email": "This email/password combination is unknown. Try login with Google.",
	"error_password_confirmation": "The entered passwords don't match.",
	"error_domain_blocked": "Your domain is blocked.",
	"error_user_email_already_used": "This email address is already in use.",
	"support": "Spacedeck Support",
	"offline": "Offline. Click for more.",
	"error": "Sorry, but something went wrong. Please contact support@spacedeck.com",
	"welcome": "Welcome",
	"claim": "Your digital Whiteboard.",
	"trynow": "Try now.",
	"about": "About us",
	"terms": "Terms",
	"contact": "Contact",
	"privacy": "Privacy",
	"business_adress": "Business Adress",
	"post_adress": "Post Adress",
	"phone": "Phone",
	"ceo": "Managing Director",
	"name": "Name",
	"confirm_subject": "Spacedeck Email Confirmation",
	"confirm_body": "Thank you for signing up at Spacedeck.\nPlease click on the following link to confirm your email address.\n",
	"confirm_action": "Confirm Now",
	"team_invite_membership_subject": "Team Invitation for %s",
	"team_invite_membership_body": "You have been invited to %s on Spacedeck. Please click on the following link to accept the invitation.",
	"team_invite_user_body": "You have been invited to %s on Spacedeck.\nYour temporary password is \"%s\".\nPlease click on the following link to accept the invitation.",
	"team_invite_admin_body": "%s was invited for your team: %s. The temporary password is \"%s\".",
	"team_invite_membership_acction": "Accept",
	"team_new_member_subject": "New Team Member for %s signed up",
	"team_new_member_body": "%s just joined Team %s on Spacedeck.",
	"space_invite_membership_subject": "%s invited you to a Space %s ",
	"space_invite_membership_body": "You have been invited by %s to join a Space %s on Spacedeck. Please click on the following link to accept the invitation.",
	"space_invite_membership_action": "Accept",
	"folder_invite_membership_subject": "Space",
	"folder_invite_membership_body": "You have been invited to a Team on Spacedeck. Please click on the following link to accept the invitation.",
	"folder_invite_membership_acction": "Accept",
	"login_google": "Login With Google",
	"save_changes": "Save Changes",
	"upgrade": "Upgrade",
	"upgrade_now": "Upgrade Now",
	"create_space": "Create Space",
	"create_folder": "Create Folder",
	"email_unconfirmed": "Email Unconfirmed",
	"confirmation_sent": "Email Sent",
	"folder_filter": "Filter",
	"sort_by": "Sort by",
	"last_modified": "Last Modified",
	"last_opened": "Last Opened",
	"title": "Title",
	"edit_team": "Edit Team",
	"edit_account": "Edit Account",
	"log_out": "Log Out",
	"no_spaces_yet": "Welcome! You can create Spaces and Folders here using the buttons in the top left corner.",
	"new_folder_title": "New title for folder",
	"folder_settings": "Folder Settings",
	"upload_cover_image": "Upload Cover Image",
	"spacedeck_pro_ad_folders": "With Spacedeck Pro, you can organize an unlimited amount of Spaces in Folders and manage access controls for each Folder. Would you like to learn more about Pro features?",
	"spacedeck_pro_ad_versions": "With Spacedeck Pro, you can save unlimited versions of each Space to track your progress or keep snapshots safe. Would you like to learn more about Pro features?",
	"spacedeck_pro_ad_pdf": "With Spacedeck Pro, you can export your Spaces as crisp PDFs for archiving, mailing around, or printing. Do you want to learn more about Pro features?",
	"spacedeck_pro_ad_zip": "With Spacedeck Pro, you can export the contents of a Space as a ZIP package. Do you want to learn more about Pro features?",
	"spacedeck_pro_ad_colors": "With Spacedeck Pro, you can mix your own colors using a professional color picker.",
	"profile_caption": "Profile",
	"upload_avatar": "Upload Avatar",
	"uploading_avatar": "Uploading Avatar…",
	"avatar_dimensions": "Recommended dimensions: 200×200 pixels.",
	"profile_name": "Name",
	"profile_email": "Email Address",
	"send_again": "Send Again",
	"confirmation_sent_long": "Email confirmation link sent. Please check your inbox.",
	"confirmation_sent_another": "Another confirmation link sent.",
	"confirmation_sent_dialog_text": "We sent you an email explaining how to confirm your email address.",
	"payment_caption": "Payment",
	"language_caption": "Language",
	"notifications_caption": "Notifications",
	"notifications_option_chat": "Inform me via email about new comments",
	"notifications_option_spaces": "Send me a daily digest of what happened in my Spaces and Folders",
	"password_caption": "Password",
	"current_password": "Current Password",
	"new_password": "New Password",
	"verify_password": "Verify Password",
	"change_password": "Change Password",
	"reset_password": "Reset Password",
	"terminate_caption": "Delete Account",
	"terminate_warning": "If you delete your account, all Spaces, Folders and Messages including all content you and other people created in your Spaces will be destroyed.",
	"terminate_warning2": "This cannot be undone.",
	"terminate_reason": "Message",
	"terminate_reason_caption": "Help us improve by sharing your reasons for cancelling.",
	"terminate_terminate": "Terminate",
	"space_blank1": "Welcome to a fresh new Space!",
	"space_blank2": "Drop files, paste links",
	"space_blank3": "or use the tools below",
	"space_blank4": "to fill this Space with content.",
	"draft": "Draft",
	"publish": "Publish",
	"published": "Published",
	"save_version": "Save Version",
	"version_saved": "Version Saved",
	"post": "Post Message",
	"chat_invite_cta1": "Collaboration is fun!",
	"chat_invite_cta2": "Why not ",
	"chat_invite_cta3": "invite some people",
	"chat_invite_cta4": "to work with you?",
	"chat_message_placeholder": "Write your message…",
	"view": "View",
	"edit": "Edit",
	"present": "Present",
	"chat": "Chat",
	"meta": "Meta",
	"tool_search": "Search",
	"tool_upload": "Upload",
	"tool_text": "Text",
	"tool_shape": "Shape",
	"tool_zones": "Zones",
	"tool_canvas": "Canvas",
	"search_media": "Search media…",
	"type_here": "Type here",
	"text_formats": "Formats",
	"format_p": "Paragraph",
	"format_bullets": "Bullet List",
	"format_numbers": "Numbered List",
	"format_h1": "Headline 1",
	"format_h2": "Headline 2",
	"format_h3": "Headline 3",
	"font_size": "Font Size",
	"line_height": "Line Height",
	"tool_align": "Align",
	"tool_styles": "Styles",
	"tool_bullets": "Bullets",
	"tool_numbers": "Numbers",
	"color_fill": "Fill",
	"color_stroke": "Stroke",
	"color_text": "Text",
	"tool_type": "Type",
	"tool_box": "Box",
	"tool_link": "Link",
	"tool_layout": "Layout",
	"tool_options": "Options",
	"tool_stroke": "Stroke",
	"tool_delete": "Delete",
	"tool_lock": "Lock",
	"tool_copy": "Copy",
	"stack": "Stack",
	"tool_circle": "Circle",
	"tool_hexagon": "Hexagon",
	"tool_square": "Square",
	"tool_diamond": "Diamond",
	"tool_bubble": "Bubble",
	"tool_cloud": "Cloud",
	"tool_burst": "Burst",
	"tool_star": "Star",
	"tool_heart": "Heart",
	"tool_scribble": "Scribble",
	"tool_line": "Line",
	"tool_arrow": "Arrow",
	"search_media_placeholder": "Search web media…",
	"add_zone": "New Zone",
	"palette": "Palette",
	"picker": "Picker",
	"background_image_caption": "Image",
	"background_color_caption": "Color",
	"upload_background_caption": "Click to upload a background image",
	"upload_background": "Upload Background",
	"access_caption": "Access",
	"versions_caption": "Versions",
	"info_caption": "Info",
	"mode_private": "Private: Only members can view or edit",
	"mode_public": "Public: Anyone with the link can view",
	"invite_collaborators": "Invite Collaborators",
	"revoke_access": "Revoke Access",
	"invite": "Send Invitations",
	"invitee_email_address": "Email address of new member",
	"optional_message": "Optional message",
	"role_viewer": "Viewer",
	"role_editor": "Editor",
	"role_admin": "Admin",
	"new_space_title": "New title for Space",
	"team": "Team",
	"search": "Search",
	"search_no_results": "search_no_results",
	"search_clear": "search_clear",
	"rename": "Rename",
	"mobile": "mobile",
	"image": "image",
	"tool_filter": "filter",
	"canel": "canel",
	"invite_membership_action": "invite_membership_action",
	"viewer": "viewer",
	"editor": "editor",
	"admin": "admin",
	"logging_in": "logging in",
	"password_confirmation": "Password Confirmation",
	"confirm_again": "We sent you an email explaining how to confirm your email address.",
	"confirmed": "Your Account was confirmed successfully. Thank you.",
	"signing_up": "Signing up",
	"password_check_inbox": "Please check your inbox",
	"new_space": "New Space",
	"tool_more": "More",
	"what_is_your_name": "Welcome to %s! Please choose a username.",
	"lang": "en",
	"landing_title": "Your Whiteboard on the Web.",
	"landing_claim": "Spacedeck lets you easily combine all kinds of media on virtual whiteboards: Text notes, photos, web links, even videos and audio recordings. ",
	"landing_example": "People use Spacedeck to organize their ideas, in teams to see whole projects at a glance, or in schools and universities for richer, connected learning experiences.",
	"spaces": "My Spaces",
	"access_editor_link": "Instant Edit Link",
	"access_editor_link_desc": "Give this link to anyone who should be able to instantly edit this Space, no account required: ",
	"access_anonymous_edit_blocking": "Anonymous Editors may only change their own items",
	"access_current_members": "Current Members",
	"access_new_members": "Invite New Members",
	"access_no_members": "Members of this Space will show up here.",
	"comments": "comments",
	"landing_customers": "Trusted by Thousands.",
	"landing_features_title": "A Breeze To Use.",
	"landing_features_text": "The new Spacedeck 5 has a streamlined, beautiful user interface that makes your work easier and more fun than ever before – while giving you even more powerful features:",
	"landing_features_1": "<b>Drag & drop</b> images, videos and audio from your computer or the web",
	"landing_features_2": "<b>Write and format tex</b>t with full control over fonts, colors and style",
	"landing_features_3": "<b>Draw, annotate and highlight</b> with included graphical shapes",
	"landing_features_4": "Turn your board into a <b>zooming presentation</b>",
	"landing_features_5": "<b>Collaborate and chat</b> in realtime with teammates, students or friends.",
	"landing_features_6": "<b>Share Spaces</b> on the web or via email",
	"landing_features_7": "<b>Export your work</b> as printable PDF or ZIP",
	"landing_pricing": "Incredibly Affordable.",
	"landing_pricing_lite": "Free/Personal Use",
	"landing_pricing_lite_text": "The basic, well-rounded version for collecting pictures and keeping notes.",
	"landing_pricing_pro_features_list": "<ul><li>Unlimited Spaces</li><li>Folder Structures</li><li>PDF and ZIP Export</li><li>No Watermarks</li><li>Custom Backgrounds</li><li>Activity History</li><li>20 GB Storage</li><ul>",
	"landing_pricing_pro": "€4,90/User/Mo. <br><small>or 49,90/User/Year</small>",
	"landing_pricing_pro_text": "Turbocharged with all the power you expect.",
	"landing_pricing_pro_features": "Turbocharged with all the power you expect.",
	"welcome_subject": "Welcome to Spacedeck",
	"welcome_body": "Hello!\nThank you for signing up at Spacedeck.<br>We hope you will enjoy working in Spaces.<br>Remember, your account includes unlimited collaborators. Feel free to share your Spaces with friends and colleagues all over the world.",
	"invite_emails": "Email addresses (Comma separated)",
	"history_recently_updated": "Recently Updated",
	"history_recently_empty": "Nothing has happened yet.",
	"parent_folder": "parent_folder",
	"created_by": "Created by",
	"last_updated": "Last updated",
	"feedback_sent": "Thanks for your feedback!",
	"role_member": "Member",
	"team_invite_membership_action": "Accept invitation",
	"space_message_subject": "New Message in Space %s",
	"space_message_body": "%s wrote in %s: \n",
	"pro_ad_history_headline": "When you upgrade to Spacedeck Pro, you will see a history of recent updates across all your (shared) Spaces here.",
	"password_reset_subject": "Reset Password for Spacedeck",
	"password_reset_body": "You requested a reset of your Spacedeck password.\nPlease click on the following link to set a new password.",
	"password_reset_action": "Reset Now",
	"was_offline": "The connection to Spacedeck was interrupted. If you have unsaved work, please keep this browser tab open until the connection is re-established, then touch the unsaved objects again.",
	"subscription_failed_user_subject": "Problem with your Spacedeck Payment",
	"subscription_failed_user_body": "Unfortunately, we could not process your Payment-method. You can easly create a new payment method including PayPal in your account settings.",
	"subscription_failed_team_subject": "Problem with your Spacedeck Payment",
	"subscription_failed_team_body": "Unfortunately, we could not process your Payment-method for your Team-Account. Please fix your payment method asap.",
	"team_name": "Team Name",
	"subdomain": "Subdomain",
	"team_adresses": "Email adresses",
	"add": "add",
	"invited": "invited",
	"duplicate_destination": "Into which folder do you want to duplicate this Space?",
	"duplicate_confirm": "Duplicate %s into %s?",
	"duplicate_success": "%s was duplicated into %s.",
	"goto_space": "Go to Space %s",
	"goto_folder": "Go to Folder %s",
	"stay_here": "Stay here",
	"sharing": "sharing",
	"list": "Export List",
	"link": "link",
	"download_space": "Download Space",
	"type": "Type",
	"download": "download",
	"Previous Zone": "Previous Zone",
	"Next Zone": "Next Zone",
	"promote": "promote",
	"demote": "demote"
}
window.locales.de.translation = 
{
	"lang": "de",
	"ok": "OK",
	"cancel": "Abbrechen",
	"close": "Schließen",
	"open": "Öffnen",
	"folder": "Ordner",
	"duplicate": "Duplizieren",
	"save": "Speichern",
	"saved": "Gespeichert",
	"created": "Erstellt",
	"delete": "Löschen",
	"remove": "Entfernen",
	"set": "Übernehmen",
	"reset": "Zurücksetzen",
	"thanks": "Danke",
	"share": "Teilen",
	"signup": "Registrieren",
	"login": "Anmelden",
	"logout": "Abmelden",
	"email": "E-Mail-Adresse",
	"password": "Passwort",
	"width": "Breite",
	"height": "Höhe",
	"nick": "Benutzername",
	"role": "Rolle",
	"members": "Mitglieder",
	"actions": "Aktionen",
	"or": "oder",
	"you": "du",
	"via": "via",
	"by": "von",
	"new": "Neu",
	"zero": "Null",
	"page": "Seite",
	"copy": "Kopie",
	"home": "Übersicht",
	"owner": "Besitzer",
	"space": "Space",
	"second": "Sekunde",
	"not_found": "Nicht Gefunden.",
	"untitled_space": "Unbenannter Space",
	"untitled_folder": "Unbenannter Order",
	"untitled": "Unbenannter",
	"sure": "Bist du sicher?",
	"specify": "Bitte spezifiziere",
	"confirm": "Bitte bestätige",
	"signup_google": "Mit Google anmelden",
	"error_unknown_email": "Unbekannte Kombination von Email und Passwort. Oder versuche dich mit Google anzumelden.",
	"error_password_confirmation": "Die beiden Passwörter stimmen nicht überein.",
	"error_domain_blocked": "Diese Domain ist gesperrt.",
	"error_user_email_already_used": "Diese Email-Adresse ist bereits registriert.",
	"support": "Spacedeck-Support",
	"offline": "Verbindungsverlust. Mehr Infos hier.",
	"error": "Entschuldigung, etwas ist schiefgegangen. Bitte kontaktiere support@spacedeck.com",
	"welcome": "Willkommen",
	"claim": "Dein digitales Whiteboard.",
	"trynow": "Jetzt probieren.",
	"about": "Über uns",
	"terms": "AGBs",
	"contact": "Kontakt",
	"privacy": "Privatsphäre",
	"post_adress": "Postadresse",
	"phone": "Phone",
	"business_address": "business_address",
	"ceo": "Geschäftsführer",
	"business_adress": "business_adress",
	"title": "Titel",
	"name": "Name",
	"confirm_subject": "E-Mail Bestätigung für Spacedeck",
	"confirm_body": "Danke, dass du dich bei Spacedeck angemeldet hast.\nBitte klicke auf den folgenden Link, um deine E-Mail Adresse zu bestätigen.\n ",
	"confirm_action": "E-Mail Bestätigen",
	"team_invite_membership_subject": "Einladung zu %s auf Spacedeck",
	"team_invite_membership_body": "Du wurdest zu %s auf Spacedeck eingeladen. \n Bitte klicke auf den folgenden Link, um die Einladung anzunehmen.",
	"team_invite_user_body": "Du wurdest zu %s auf Spacedeck eingeladen. Dein temporäres Passwort ist \"%s\".\n Bitte klicke auf den folgenden Link, um die Einladung anzunehmen.",
	"team_invite_admin_body": " %s wurde zu %s auf Spacedeck eingeladen. Das temporäres Passwort ist \"%s\".",
	"team_invite_membership_action": "Annehmen",
	"team_new_member_subject": "Neues Team Mitglied",
	"team_new_member_body": "%s hat gerade seine Einladung zum Team %s angenommen.",
	"space_invite_membership_subject": "Einladung von %s in Space %s",
	"space_invite_membership_body": "Du wurdest von %s in den Space '%s' eingeladen.\nBitte klicke auf den folgenden Link um die Einladung anzunehmen.",
	"space_invite_membership_action": "Annehmen",
	"folder_invite_membership_subject": "Einladung von %s in Ordner %s",
	"folder_invite_membership_body": "Du wurdest von %s in den Space '%s' eingeladen.\nBitte klicke auf den folgenden Link um die Einladung anzunehmen.",
	"folder_invite_membership_action": "Accept",
	"upgrade": "Upgrade",
	"upgrade_now": "Jetzt Upgraden",
	"create_space": "Space Erstellen",
	"create_folder": "Ordner Erstellen",
	"email_unconfirmed": "Email Unbestätigt",
	"confirmation_sent": "Email Versandt",
	"folder_filter": "Filter",
	"sort_by": "Reihenfolge",
	"last_modified": "Zuletzt Geändert",
	"last_opened": "Zuletzt Geöffnet",
	"edit_team": "Team Verwalten",
	"edit_account": "Konto Bearbeiten",
	"log_out": "Abmelden",
	"no_spaces_yet": "Du hast noch keine Spaces erstellt.",
	"new_folder_title": "Neuer Titel für Ordner",
	"folder_settings": "Ordner-Einstellungen",
	"upload_cover_image": "Ordnerbild Hochladen",
	"spacedeck_pro_ad_folders": "Mit Spacedeck Pro kannst du beliebig viele Spaces in Ordnerstrukturen organisieren und für jeden Ordner Zugriffsrechte regeln. Möchtest du mehr über die Pro-Version erfahren?",
	"spacedeck_pro_ad_versions": "Mit Spacedeck Pro kannst du beliebig viele Versionen deines Spaces festhalten und später die Entwicklungsgeschichte nachvollziehen. Möchtest du mehr über die Pro-Version erfahren?",
	"spacedeck_pro_ad_pdf": "Mit Spacedeck Pro kannst du Spaces und sogar ganze Ordner als druckreife PDFs exportieren oder per Mail versenden. Möchtest du mehr über die Pro-Version erfahren?",
	"spacedeck_pro_ad_zip": "Mit Spacedeck Pro kannst du die Inhalte deiner Spaces jederzeit als ZIP-Paket exportieren. Möchtest du mehr über die Pro-Version erfahren?",
	"spacedeck_pro_ad_colors": "Spacedeck Pro enthält einen Profi-Farbmischer, mit dem du deine eigenen Farben mischen kannst.",
	"profile_caption": "Profil",
	"upload_avatar": "Profilbild Hochladen",
	"uploading_avatar": "Profilbild wird hochgeladen…",
	"avatar_dimensions": "Bestes Format: 200×200 Pixel.",
	"profile_name": "Name",
	"profile_email": "Email-Adresse",
	"send_again": "Erneut Senden",
	"confirmation_sent_long": "Email-Bestätigungslink versandt. Bitte überprüfe deine Mails.",
	"confirmation_sent_another": "Wir haben eine weiteren Bestätigungslink versandt.",
	"confirmation_sent_dialog_text": "Wir haben dir eine Email geschickt, die erklärt, wie das mit der Bestätigung läuft.",
	"payment_caption": "Bezahlung",
	"language_caption": "Sprache",
	"notifications_caption": "Emails",
	"notifications_option_chat": "Haltet mich über neue Kommentare auf dem Laufenden.",
	"notifications_option_spaces": "Schickt mir täglich eine Zusammenfassung über Änderungen an meinen Spaces und Ordnern.",
	"password_caption": "Passwort",
	"current_password": "Altes Passwort",
	"new_password": "Neues Passwort",
	"verify_password": "Zur Sicherheit nochmal",
	"change_password": "Passwort Ändern",
	"reset_password": "Passwort Zurücksetzen",
	"terminate_caption": "Kündigen",
	"terminate_warning": "Wenn du kündigst, werden all deine Spaces, Ordner und Nachrichten und alle ihre Inhalte gelöscht.",
	"terminate_warning2": "Das kann man nicht rückgängig machen.",
	"terminate_reason": "Kündigungsgrund",
	"terminate_reason_caption": "Wenn du uns mitteilst, was dich gestört hat, hilft uns das dabei ein besseres Produkt zu machen.",
	"terminate_terminate": "Wirklich Kündigen",
	"space_blank1": "Dies ist dein brandneuer, leerer Space!",
	"space_blank2": "Wirf Dateien rein, paste Web-Links",
	"space_blank3": "oder nutz die Werkzeuge da unten.",
	"space_blank4": "Sei kreativ und tob dich aus!",
	"draft": "Entwurf",
	"publish": "Veröffentlichen",
	"published": "Veröffentlicht",
	"save_version": "Version Speichern",
	"version_saved": "Version Gespeichert",
	"post": "Abschicken",
	"chat_invite_cta1": "Zusammen arbeiten macht Spaß!",
	"chat_invite_cta2": "Warum ",
	"chat_invite_cta3": "lädst du nicht ein paar Leute ein",
	"chat_invite_cta4": "mit denen du dann zusammen arbeiten kannst?",
	"chat_message_placeholder": "Schreib hier deine Nachricht…",
	"view": "Ansicht",
	"edit": "Bearb.",
	"present": "Präse.",
	"chat": "Chat",
	"meta": "Teilen",
	"tool_search": "Suche",
	"tool_upload": "Upload",
	"tool_text": "Text",
	"tool_shape": "Grafik",
	"tool_zones": "Zonen",
	"tool_canvas": "Wand",
	"search_media": "Medien im Web suchen…",
	"type_here": "Hier was eingeben",
	"text_formats": "Formate",
	"format_p": "Absatz",
	"format_bullets": "Bullet-Liste",
	"format_numbers": "Nummerierte Liste",
	"format_h1": "Überschrift 1",
	"format_h2": "Überschrift 2",
	"format_h3": "Überschrift 3",
	"font_size": "Schriftgröße",
	"line_height": "Zeilenhöhe",
	"tool_align": "Bund",
	"tool_styles": "Stil",
	"tool_bullets": "Bullets",
	"tool_numbers": "Zahlen",
	"color_fill": "Füllung",
	"color_stroke": "Strich",
	"color_text": "Text",
	"tool_type": "Typo",
	"tool_box": "Box",
	"tool_link": "Link",
	"tool_layout": "Layout",
	"tool_options": "Mehr",
	"tool_stroke": "Strich",
	"tool_delete": "Löschen",
	"tool_lock": "Sperren",
	"tool_copy": "Kopie",
	"stack": "Anordnung",
	"tool_circle": "Kreis",
	"tool_hexagon": "Sechseck",
	"tool_square": "Quadrat",
	"tool_diamond": "Diamant",
	"tool_bubble": "Blase",
	"tool_cloud": "Wolke",
	"tool_burst": "Burst",
	"tool_star": "Stern",
	"tool_heart": "Herz",
	"tool_scribble": "Kritzeln",
	"tool_line": "Linie",
	"tool_arrow": "Pfeil",
	"search_media_placeholder": "Online-Medien suchen…",
	"add_zone": "Neue Zone",
	"palette": "Palette",
	"picker": "Mischen",
	"background_image_caption": "Bild",
	"background_color_caption": "Farbe",
	"upload_background_caption": "Klicke hier, um ein Hintergrundbild hochzuladen.",
	"upload_background": "Hintergrund Hochladen",
	"access_caption": "Zugriff",
	"versions_caption": "Versionen",
	"info_caption": "Info",
	"mode_private": "Privat: Nur Mitglieder können zugreifen",
	"mode_public": "Öffentlich: Jede(r) mit Kenntnis des Links darf reinschauen",
	"invite_collaborators": "Mitarbeiter Einladen",
	"invitee_email_address": "Email-Adresse des neuen Mitglieds",
	"optional_message": "Optionale Nachricht",
	"revoke_access": "Zugriff Entfernen",
	"invite": "Einladen",
	"role_viewer": "Betrachter",
	"role_editor": "Bearbeiter",
	"role_admin": "Admin",
	"new_space_title": "Neuer Titel für Space",
	"logging_in": "logging_in",
	"password_confirmation": "Passwort Wiederholung",
	"confirm_again": "In deinem Postfach solltest du eine Bestätigungsmail finden. Bitte klicke auf den Link darin.",
	"confirmed": "E-Mail Adresse wurde erfolgreich bestätigt. Danke!",
	"password_check_inbox": "password_check_inbox",
	"viewer": "Zuschauer",
	"editor": "Bearbeiter",
	"admin": "Admin",
	"mobile": "Mobil",
	"image": "Bild",
	"tool_filter": "Filter",
	"team": "Team",
	"search": "Suche",
	"search_no_results": "Keine Resultate",
	"search_clear": "Zurücksetzen",
	"rename": "Umbennen",
	"login_google": "Mit Google anmelden",
	"save_changes": "Änderungen speichern",
	"what_is_your_name": "Willkommen bei %s ! Bitte wähle einen Benutzernamen.",
	"landing_title": "Dein Online-Whiteboard.",
	"landing_claim": "Mit Spacedeck kannst du multimedial auf virtuellen Whiteboards im Internet zusammenarbeiten: Kombiniere Texte, Fotos, Websites oder sogar Videos und Sounds. ",
	"landing_example": "Spacedeck ist ideal, um Ideen zu visualisieren, in kreativen Teams Projekte zu überblicken oder um den Unterricht in Schulen und Universitäten interaktiv zu gestalten.",
	"spaces": "Meine Spaces",
	"access_editor_link": "Sofort-Mitmachen-Link",
	"access_editor_link_desc": "Mit diesem Link kann man sogar ohne Spacedeck-Account sofort mitarbeiten. Praktisch!",
	"access_anonymous_edit_blocking": "Anonyme Mitarbeiter dürfen keine Daten anderer anonymer Mitarbeiter ändern.",
	"access_current_members": "Aktuelle Mitarbeiter",
	"access_new_members": "Neue Mitarbeiter einladen",
	"landing_customers": "Tausende Anwender weltweit vertrauen uns.",
	"landing_features_title": "Schneller zum Ergebnis.",
	"landing_features_text": "Spacedeck 5 hat eine brandneue Benutzeroberfläche, die das Arbeiten einfacher und intuitiver und macht - gleichzeitig aber auch mehr mächtige Werkzeuge bereitstellt.",
	"landing_features_1": "<b>Drag & Drop:</b> Bilder-, Video- und Ton-Dateien direkt vom Desktop oder von anderen Webseiten in Spaces ziehen",
	"landing_features_2": "<b>Textnotizen</b> mit allen Möglichkeiten bei Schriftart, Farbe und Stil",
	"landing_features_3": "<b>Zeichne und Markiere</b> freihändig oder mit fertigen Formen",
	"landing_features_4": "Verwandle dein Whiteboard in eine <b>zoombare Präsentation</b>",
	"landing_features_5": "<b>Arbeite in Echtzeit</b> mit deinen Kollegen, Schülern oder Freunden zusammen",
	"landing_features_6": "<b>Teile deine Whiteboards</b> per Link oder per E-Mail",
	"landing_features_7": "<b>Exportiere deine Arbeit</b> als PDF- oder ZIP-Datei",
	"landing_pricing": "Unfassbar günstig.",
	"landing_pricing_lite": "Private Nutzung",
	"landing_pricing_lite_text": "Basisvariante, ausreichend um multimedial zu arbeiten.",
	"landing_pricing_pro_features_list": "<ul><li>Unbegrenzte Spaces</li><li>Hierarchische Ordnerstruktur</li><li>PDF und ZIP Export</li><li>Keine Wasserzeichen</li><li>Eigene Hintergründe</li><li>Liste von Aktivitäten</li><li>20 GB Speicherplatz</li><ul>",
	"landing_pricing_pro": "€4,90/Anwender/Mo. <br><small>oder €49,90/Anwender/Jahr</small>",
	"landing_pricing_pro_text": "Alle Features um professionell zu arbeiten.",
	"welcome_subject": "Willkommen bei Spacedeck",
	"welcome_body": "Danke, dass du dich bei Spacedeck angemeldet hast. <br> Wir hoffen, du wirst viel Spaß mit Spacedeck haben. <br> Vergiss nicht, dass du mit unbegrenzt vielen Kollegen und Freunden kostenlos zusammen arbeiten kannst. ",
	"parent_folder": "Übergeordneter Ordner",
	"access_no_members": "Noch keine Mitglieder",
	"invite_emails": "E-Mail Adressen",
	"created_by": "Erstellt von",
	"last_updated": "Zuletzt aktualisiert",
	"comments": "Kommentare",
	"history_recently_updated": "Aktuelles",
	"history_recently_empty": "Noch nichts passiert.",
	"signing_up": "Registierung läuft",
	"feedback_sent": "Danke für dein Feedback!",
	"role_member": "Mitglied",
	"space_message_subject": "Neue Nachricht im Space %s",
	"space_message_body": "%s schrieb in %s: \n",
	"password_reset_subject": "Neues Passwort für Spacedeck",
	"password_reset_body": "Du möchtest das Passwort für deinen Spacedeck Account zurücksetzen?\nBitte klicke dafür auf den folgenden Link:",
	"password_reset_action": "Jetzt Passwort neu setzen",
	"pro_ad_history_headline": "Nach einem Upgrade zu Spacedeck Pro kannst du hier einen Überblick über alle aktuellen Aktivitäten in Spaces bekommen.",
	"was_offline": "Die Verbindung wurde unterbrochen. Wir empfehlen, alle geänderten Objekte erneut zu selektieren, um sie zu speichern.",
	"subscription_failed_user_subject": "Zahlung fehlgeschlagen",
	"subscription_failed_user_body": "Unfortunately, we could not process your payment method. You can easly create a new payment method including PayPal in your account settings.",
	"subscription_failed_team_subject": "Zahlung fehlgeschlagen",
	"subscription_failed_team_body": "Unfortunately, we could not process your Payment-method for your Team-Account. Please fix your payment method asap.",
	"add": "hinzufügen",
	"team_name": "Team-Name",
	"subdomain": "Subdomain",
	"invited": "eingeladen",
	"team_adresses": "E-Mail Adressen",
	"duplicate_destination": "In welchen Ordner möchtest du den Space duplizieren?",
	"duplicate_confirm": "%s nach %s duplizieren?",
	"duplicate_success": "%s wurde in %s dupliziert.",
	"goto_space": "Gehe zu %s",
	"goto_folder": "Gehe zu Ordner %s",
	"stay_here": "Hier bleiben",
	"sharing": "sharing",
	"list": "Liste",
	"download_space": "Space Herunterladen",
	"duplicate_destination_folder": "Zielordner für Duplikat",
	"type": "Typ",
	"promote": "Befördern",
	"demote": "Zurückstufen",
	"Previous Zone": "Vorherige Zone",
	"Next Zone": "Nächste Zone"
}

window.locales.fr.translation = 
{
	"lang": "fr",
	"ok": "OK",
	"cancel": "Annuler",
	"close": "Fermer",
	"open": "Ouvrir",
	"folder": "Dossier",
	"save": "Enregistrer",
	"saved": "Enregistrée",
	"created": "établi",
	"duplicate": "Dupliquer",
	"delete": "Supprimer",
	"remove": "Enlever",
	"set": "Définir",
	"reset": "Rédéfinir",
	"thanks": "Merci",
	"share": "Partager",
	"signup": "S'inscrire",
	"login": "Se connecter",
	"logout": "Se déconnecter",
	"email": "Adresse email",
	"password": "Mot de passe",
	"width": "Largeur",
	"height": "Hauteur",
	"nick": "Nom",
	"role": "Rôle",
	"members": "Membres",
	"actions": "Actions",
	"or": "ou",
	"you": "vous",
	"via": "par",
	"by": "par",
	"zero": "Zero",
	"page": "Page",
	"new": "Neuf",
	"copy": "Copier",
	"owner": "Possesseur",
	"home": "Accueil",
	"space": "Espace",
	"second": "Seconde",
	"not_found": "Pas trouvé.",
	"untitled": "sans titre",
	"untitled_space": "Espace sans titre",
	"untitled_folder": "Dossier sans titre",
	"sure": "Êtes-vous sûr?",
	"specify": "Veuillez préciser:",
	"confirm": "Veuillez confirmer",
	"signup_google": "S'inscrire avec Google",
	"error_unknown_email": "Combinaison inconnue de l'email et mot de passe. Ou essayer de signer avec Google.",
	"error_password_confirmation": "Les deux mots de passe ne correspondent pas.",
	"error_domain_blocked": "Ce domaine a été désactivé.",
	"error_user_email_already_used": "Cette adresse email est déjà enregistré.",
	"support": "Aide Spacedeck",
	"offline": "Désolé , mais les serveurs Spacedeck ne peuvent pas être atteint pour le moment. Plus d' informations ici.",
	"error": "Désolé, une erreur s'est produite. Veuillez contacter support@spacedeck.com",
	"welcome": "Bienvenue",
	"claim": "Le tableau blanc partagé pour tout le monde",
	"trynow": "Essayez-le gratuitement",
	"about": "de nous",
	"terms": "termes",
	"contact": "contact",
	"privacy": "sphère privée",
	"business_adress": "Siège social",
	"post_adress": "Adresse courrier",
	"phone": "téléphone",
	"ceo": "Gestionnaire",
	"name": "name",
	"confirm_subject": "Confirmation de l'email Spacedeck",
	"confirm_body": "Merci pour votre inscription à Spacedeck.\nSil vous plaît cliquez sur le lien suivant pour confirmer votre adresse e-mail.",
	"confirm_action": "Confirmer",
	"team_invite_membership_subject": "Team Invitation for %s",
	"team_invite_membership_body": "You have been invited to %s on Spacedeck.\nPlease click on the following link to accept the invitation.",
	"team_invite_user_body": "You have been invited to %s on Spacedeck.\nYour temporary password is \"%s\".\nPlease click on the following link to accept the invitation.",
	"team_invite_admin_body": "%s was invited for your team: %s. The temporary password is \"%s\".",
	"team_invite_membership_acction": "Accept",
	"team_new_member_subject": "New Team Member",
	"team_new_member_body": "%s just joined Team %s on Spacedeck.",
	"invite_emails": "Entrer les adresses email (séparées pas des virgules)",
	"optional_message": "Message personnel (facultatif)",
	"space_invite_membership_subject": "Invitation Espace par %s: %s",
	"space_invite_membership_body": "Vous avez été invité par %s à Espace \"%s\"",
	"space_invite_membership_action": "Accepter L'invitation",
	"folder_invite_membership_subject": "Space",
	"folder_invite_membership_body": "You have been invited to a Team on Spacedeck. Please click on the following link to accept the invitation.",
	"folder_invite_membership_acction": "Accept",
	"login_google": "S'inscrire avec Google",
	"save_changes": "Enregistrer",
	"upgrade": "Upgrade",
	"upgrade_now": "Mise à niveau",
	"create_space": "Créer un espace",
	"create_folder": "Créer un dossier",
	"email_unconfirmed": "Email non confirmée",
	"confirmation_sent": "L'email est envoyé.",
	"folder_filter": "Filtre",
	"sort_by": "Ordre",
	"last_modified": "Dernière modification",
	"last_opened": "Dernière ouverture",
	"title": "Titre",
	"edit_team": "Modifier l'équipe",
	"edit_account": "Modifier le compte",
	"log_out": "Déconnecter",
	"no_spaces_yet": "Vous ne avez pas encore créé d'espaces.",
	"new_folder_title": "Nouveau titre pour le dossier",
	"folder_settings": "Paramètres du dossier",
	"upload_cover_image": "Charger image de couverture",
	"spacedeck_pro_ad_folders": "Avec Spacedeck Pro, vous pouvez organiser un nombre illimité de espaces dans les dossiers et gérer les contrôles d'accès pour chaque dossier. Voulez-vous en savoir plus sur les fonctionnalités Pro?",
	"spacedeck_pro_ad_versions": "Avec Spacedeck Pro, vous pouvez enregistrer des versions illimitées de chaque espace pour suivre vos progrès ou de conserver des instantanés sécurité. Voulez-vous en savoir plus sur les fonctionnalités Pro?",
	"spacedeck_pro_ad_pdf": "Avec Spacedeck Pro, vous pouvez exporter vos espaces et même des dossiers entiers belles PDF pour l'archivage, de diffusion, ou autour de l'impression. Voulez-vous en savoir plus sur les fonctionnalités Pro?",
	"spacedeck_pro_ad_zip": "Avec Spacedeck Pro, vous pouvez exporter le contenu d'un espace comme un paquet ZIP. Voulez-vous en savoir plus sur les fonctionnalités Pro?",
	"spacedeck_pro_ad_colors": "Avec Spacedeck Pro, vous pouvez mélanger vos propres couleurs en utilisant un sélecteur de couleur professionnelle.",
	"profile_caption": "Profil",
	"upload_avatar": "Télécharger l'image profil",
	"uploading_avatar": "L'image de profil est téléchargée…",
	"avatar_dimensions": "Format suggéré: 200×200 pixels.",
	"profile_name": "Name",
	"profile_email": "Email",
	"send_again": "Renvoyer",
	"confirmation_sent_long": "Lien de confirmation email envoyé. Se il vous plaît vérifier votre courrier.",
	"confirmation_sent_another": "Nous avons envoyé un autre lien de confirmation.",
	"confirmation_sent_dialog_text": "Nous vous avons envoyé un email expliquant comment confirmer votre adresse email.",
	"payment_caption": "Paiement",
	"language_caption": "Langue",
	"notifications_caption": "Emails",
	"notifications_option_chat": "Envoyez-moi les nouveaux commentaires par email.",
	"notifications_option_spaces": "Envoyez-moi un résumé quotidien des modifications à mes espaces.",
	"password_caption": "Mot de passe",
	"current_password": "Ancien mot de passe",
	"new_password": "Nouveau mot de passe",
	"verify_password": "Répéter mot de passe",
	"change_password": "Enregistrer",
	"reset_password": "Mot de passe oublié?",
	"terminate_caption": "Supprimer le compte",
	"terminate_warning": "En supprimant votre compte, vos messages, espaces, dossiers et tout leur contenu seront effacés. Cette action ne peut être annulée.",
	"terminate_warning2": "Cela ne peut pas être annulée.",
	"terminate_reason": "Problèmes rencontrés",
	"terminate_reason_caption": "Aidez-nous à améliorer le produit en précisant les raisons de la suppression de votre compte.",
	"terminate_terminate": "Supprimer le compte définitivement?",
	"space_blank1": "Ceci est votre nouvel espace.",
	"space_blank2": "Déposez des fichiers, collez des liens web",
	"space_blank3": "ou utilisez les outils.",
	"space_blank4": "Soyez créatifs!",
	"draft": "Conception",
	"publish": "Publier",
	"published": "Publié",
	"save_version": "Enregistrer une version",
	"version_saved": "Version enregistrée.",
	"post": "Envoyer",
	"chat_invite_cta1": "Travailler ensemble est amusant!",
	"chat_invite_cta2": "Pourquoi ",
	"chat_invite_cta3": "ne pas vous invitez quelques collaborateurs?",
	"chat_invite_cta4": "",
	"chat_message_placeholder": "Votre message ici…",
	"view": "Vue",
	"edit": "Éditer",
	"present": "Prés.",
	"chat": "Chat",
	"meta": "Meta",
	"tool_search": "Chercher",
	"tool_upload": "Charger",
	"tool_text": "Texte",
	"tool_shape": "Dessin",
	"tool_zones": "Zones",
	"tool_canvas": "Mur",
	"search_media": "Chercher le web pour les médias…",
	"type_here": "Entrez quelque chose ici",
	"text_formats": "Formats",
	"format_p": "Paragraphe",
	"format_bullets": "Liste à puces",
	"format_numbers": "Liste numérotée",
	"format_h1": "Titre 1",
	"format_h2": "Titre 2",
	"format_h3": "Titre 3",
	"font_size": "Taille de la police",
	"line_height": "Hauteur de ligne",
	"tool_align": "Align",
	"tool_styles": "Style",
	"tool_bullets": "Puces",
	"tool_numbers": "Numéros",
	"color_fill": "Fond",
	"color_stroke": "Ligne",
	"color_text": "Text",
	"tool_type": "Typo.",
	"tool_box": "Box",
	"tool_link": "Lien",
	"tool_layout": "Layout",
	"tool_options": "Plus",
	"tool_stroke": "Ligne",
	"tool_delete": "Effacer",
	"tool_lock": "Bloquer",
	"tool_copy": "Copie",
	"stack": "Empiler",
	"tool_circle": "Cercle",
	"tool_hexagon": "Hexagone",
	"tool_square": "Carré",
	"tool_diamond": "Diamant",
	"tool_bubble": "Bulle",
	"tool_cloud": "Nuage",
	"tool_burst": "Éclat",
	"tool_star": "Étoile",
	"tool_heart": "Cœur",
	"tool_scribble": "Crayon",
	"tool_line": "Ligne",
	"tool_arrow": "Flèche",
	"search_media_placeholder": "Chercher le web pour les médias…",
	"add_zone": "Ajouter Zone",
	"palette": "Palette",
	"picker": "Mélange",
	"background_image_caption": "Image",
	"background_color_caption": "Couleur",
	"upload_background_caption": "Cliquez ici pour télécharger une image de fond.",
	"upload_background": "Télécharger",
	"access_caption": "Accès",
	"versions_caption": "Versions",
	"info_caption": "Info",
	"mode_private": "Privé",
	"mode_public": "Public",
	"invite_collaborators": "Inviter les collaborateurs",
	"revoke_access": "Révoquer l'accès",
	"invite": "Inviter",
	"role_viewer": "Spectateur",
	"role_editor": "Éditeur",
	"role_admin": "Administrateur",
	"new_space_title": "Nouveau titre pour l'espace",
	"invitee_email_address": "Adresse e-mail de invitee",
	"viewer": "Spectateur",
	"editor": "Éditeur",
	"admin": "Administrateur",
	"mobile": "Mobile",
	"image": "Image",
	"tool_filter": "Filter",
	"team": "Team",
	"search": "Recherche",
	"search_no_results": "Aucun résultat trouvé",
	"search_clear": "Supprimer",
	"rename": "Renommer",
	"logging_in": "Connexion",
	"password_confirmation": "Confirmation du mot de passe",
	"confirm_again": "Veuillez consulter votre boîte pour confirmer votre email.",
	"confirmed": "Adresse email confirmée avec succès. merci!",
	"password_check_inbox": "password_check_inbox",
	"what_is_your_name": "Bonjour! Choisir un nom d'utilisateur s'il vous plaît.",
	"landing_title": "Le tableau blanc partagé pour tout le monde.",
	"landing_claim": "Le tableau blanc partagé pour tout le monde.",
	"landing_example": "Que vous soyez étudiant, enseignant ou chercheur: Avec Spacedeck il est facile pour vous de créer, de gérer et de partager des cours ou le travail en classe. Développez vos théories visuellement. Organisez des notes de recherche, web, images, audio et vidéo.",
	"spaces": "Espaces",
	"access_editor_link": "Lien instantané.",
	"access_editor_link_desc": "Donnez ce lien à tous ceux que vous voulez inviter rapidement. Ils n’ont pas besoin créer un compte Spacedeck.",
	"access_anonymous_edit_blocking": "Ces invités ne peuvent modifier que les éléments qu’ils ont eux-même créé.",
	"access_current_members": "Membres actuels",
	"comments": "Commentaires",
	"access_no_members": "No members yet. You can invite some below.",
	"access_new_members": "Inviter de nouveaux membres.",
	"landing_customers": "Approuvé par des milliers.",
	"landing_features_title": "Un jeu d'enfant.",
	"landing_features_text": "Le tout nouveau Spacedeck 5 vous permet de travailler bien plus facilement grâce à sa magnifique interface simplifiée.",
	"landing_features_1": "Glissez & déposez images, vidéos et audios de votre ordinateur ou du web",
	"landing_features_2": "Ecrivez directement sur l'espace et choisissez les polices de caractère, couleurs et styles",
	"landing_features_3": "Dessinez, annotez et surlignez grâce aux formes graphiques intégrées",
	"landing_features_4": "Transformez votre espace en une présentation dynamique",
	"landing_features_5": "Collaborez et discutez en temps réel avec vos collègues, élèves et amis",
	"landing_features_6": "Partagez vos espaces sur le web ou par email",
	"landing_features_7": "Exportez votre espace en PDF pour l'imprimer",
	"landing_pricing": "Incroyablement abordable.",
	"landing_pricing_lite": "Usage personnel",
	"landing_pricing_lite_text": "La version de base, bien arrondi pour recueillir des images et de garder des notes.",
	"landing_pricing_pro_features_list": "<ul><li>Unlimited Spaces</li><li>Exporter PDF, ZIP</li><li>No Watermarks</li><li>Image de fonds</li><li>Activity History</li><li>20 Go de stockage</li><ul>",
	"landing_pricing_pro": "€4,90/User/Mo. <br><small> €49,90/User/Year</small>",
	"landing_pricing_pro_text": "Avec toute la puissance que vous attendez.",
	"landing_pricing_pro_features": "Avec toute la puissance que vous attendez.",
	"welcome_subject": "Bienvenue sur Spacedeck",
	"welcome_body": "Merci pour votre inscription à Spacedeck.\nNous espérons que vous aurez plaisir à travailler dans les Espaces. <br> Rappelez-vous que votre compte comprend un nombre illimité de collaborateurs. <br> N''hésitez pas à partager vos espaces avec des amis et collègues du monde entier.",
	"parent_folder": "Dossier origine",
	"created_by": "Créé par",
	"last_updated": "Mis à jour",
	"history_recently_updated": "Nouvelles",
	"history_recently_empty": "Rien ne se passe",
	"signing_up": "Signing Up",
	"feedback_sent": "Merci pour votre commentaire!",
	"space_message_subject": "A posté sur %s",
	"space_message_body": "%s a commenté dans %s:\n",
	"role_member": "role_member",
	"password_reset_subject": "Réinitialiser le Mot de passe pour Spacedeck",
	"password_reset_body": "Salut!<br><br>Vous avez demandé la réinitialisation de votre Mot de passe.<br>Veuillez cliquer sur le lien suivant pour définir un nouveau Mot de passe.<br>",
	"password_reset_action": "Définir un nouveau Mot de passe",
	"was_offline": "The connection to Spacedeck was interrupted. If you have unsaved work, please keep this browser tab open until the connection is re-established, then touch the unsaved objects again.",
	"subscription_failed_user_subject": "Problem with your Spacedeck Payment",
	"subscription_failed_user_body": "Unfortunately, we could not process your Payment-method. You can easly create a new payment method including PayPal in your account settings.",
	"subscription_failed_team_subject": "Problem with your Spacedeck Payment",
	"subscription_failed_team_body": "Unfortunately, we could not process your Payment-method for your Team-Account. Please fix your payment method asap.",
	"pro_ad_history_headline": "Après une mise à niveau vous pouvez obtenir un aperçu de toutes les activités actuelles dans les espaces ici.",
	"add": "ajouter",
	"team_name": "Nom de l'équipe",
	"subdomain": "sous-domaine",
	"invited": "invité",
	"team_adresses": "E-mail adresse",
	"duplicate_destination": "Sélectionnez le dossier de destination",
	"duplicate_confirm": "Dupliquer %s dans %s?",
	"duplicate_success": "%s a été dupliqué dans %s.",
	"goto_space": "Aller à l'espace %s",
	"goto_folder": "Aller au dossier %s",
	"stay_here": "Reste ici",
	"download_space": "télécharger un espace",
	"type": "Type",
	"Previous Zone": "Zone précédent",
	"Next Zone": "Zone suivante",
	"list": "liste",
	"promote": "promouvoir",
	"demote": "rétrograder"
}
Mejans's avatar
Mejans committed
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
window.locales.oc.translation = 
{
	"ok": "D'acòrdi",
    "cancel": "Anullar",
    "close": "Tampar",
    "open": "Dobrir",
    "folder": "Repertòri",
    "save": "Enregistrar",
    "saved": "Enregistrat",
    "created": "creat",
    "duplicate": "Duplicar",
    "delete": "Suprimir",
    "remove": "Suprimir",
    "set": "definir",
    "reset": "reïnicializar",
    "thanks": "Mercés",
    "share": "Partejar",
    "signup": "S’inscriure",
    "login": "Connexion",
    "logout": "Se desconnectar",
    "email": "Adreça electronica",
    "password": "Senhal",
    "width": "Largor",
    "height": "Nautor",
    "nick": "Escais",
    "role": "Ròtle",
    "members": "Membres",
    "actions": "Accions",
    "or": "o",
    "you": "vos",
    "via": "via",
    "by": "per",
    "zero": "Zéro",
    "page": "Pagina",
    "new": "Nòu",
    "copy": "Copiar",
    "home": "Acuèlh",
    "owner": "Proprietari",
    "space": "Espaci",
    "second": "Segond",
    "not_found": "Pas trobat.",
    "untitled_space": "Espaci sens nom",
    "untitled_folder": "Repertòri sens nom",
    "untitled": "sens títol",
    "sure": "O volètz vertadièrament ?",
    "specify": "Mercés d’especificar",
    "confirm": "Mercés de confirmar",
    "error_unknown_email": "Aquesta combinason d’adreça electronica/senhal es desconeguda.",
    "error_password_confirmation": "Los senhals picats correspondon pas.",
    "error_domain_blocked": "Lo domeni es blocat.",
    "error_user_email_already_used": "Aquesta adreça es ja utilizada.",
    "support": "Assisténcia Spacedeck",
    "offline": "Fòra linha. Clicatz per mai d’opcions.",
    "error": "O planhèm, quicòm a trucat. Mercés de contactar support@spacedeck.com",
    "welcome": "La benvenguda",
    "claim": "Vòstre tablèu numeric.",
    "trynow": "Ensajatz ara.",
    "about": "A prepaus de nosautre",
    "terms": "Tèrmes",
    "contact": "Contacte",
    "privacy": "Confidencialitat",
    "business_adress": "Adreça professionala",
    "post_adress": "Adreça postala",
    "phone": "Telefòn",
    "ceo": "Gestionari",
    "name": "Nom",
    "confirm_subject": "Corrièl de confirmacion de Spacedeck",
    "confirm_body": "Mercés de vòstra inscripcion a Spacedeck.\nMercés de clicar lo ligam seguent per confirmar vòstra adreça electronica.\n",
    "confirm_action": "Confirmar",
    "team_invite_membership_subject": "Invitacion d’equipa per %s",
    "team_invite_membership_body": "Qualqu’un vos a convidat a %s sus Spacedeck. Mercés de clicar sul ligam seguent per acceptar l’invitacion.",
    "team_invite_user_body": "Qualqu’un vos a convidat a %s sus Spacedeck.\nVòstre senhal temporari es « %s ».\nMercés de clicar sul ligam seguent per acceptar l’invitacion.",
    "team_invite_admin_body": "%s es estat convidat a vòstra equipa : %s. Lo senhal temporari es « %s ».",
    "team_invite_membership_acction": "Acceptar",
    "team_new_member_subject": "Membre novèl",
    "team_new_member_body": "%s a rejonch l’equipa %s sus Spacedeck",
    "space_invite_membership_subject": "Invitacion Espaci per %s : %s",
    "space_invite_membership_body": "%s vos a convit a l’Espaci « %s »",
    "space_invite_membership_action": "Acceptar l’invitacion",
    "folder_invite_membership_subject": "Espaci",
    "folder_invite_membership_body": "Qualqu’un vos a convidat a Team sus Spacedeck. Clicatz lo ligam seguent per acceptar l’invitacion.",
    "folder_invite_membership_acction": "Acceptar",
    "login_google": "S’identificar amb Google",
    "save_changes": "Enregistrar las modificacions",
    "upgrade": "Metre a jorn",
    "upgrade_now": "Metre a nivèl ara",
    "create_space": "Crear un espaci",
    "create_folder": "Crear un repertòri",
    "email_unconfirmed": "Adreça pas confirmada",
    "confirmation_sent": "Messatge enviat",
    "folder_filter": "Filtre",
    "sort_by": "Triar per",
    "last_modified": "Darrièra modificacion",
    "last_opened": "Darrièra dobertura",
    "title": "Títol",
    "edit_team": "Modificar equipa",
    "edit_account": "Modificar compte",
    "log_out": "Se desconnectar",
    "no_spaces_yet": "Avètz pas encara creat cap d’espacis.",
    "new_folder_title": "Novèl títol pel repertòri",
    "folder_settings": "Paramètres repertòri",
    "upload_cover_image": "Enviar imatge cobèrta",
    "spacedeck_pro_ad_folders": "Avec Spacedeck Pro, vous pouvez organiser un nombre illimité de espaces dans les dossiers et gérer les contrôles d'accès pour chaque dossier. Voulez-vous en savoir plus sur les fonctionnalités Pro ?",
    "spacedeck_pro_ad_versions": "Avec Spacedeck Pro, vous pouvez enregistrer des versions illimitées de chaque espace pour suivre vos progrès ou de conserver des instantanés sécurité. Voulez-vous en savoir plus sur les fonctionnalités Pro ?",
    "spacedeck_pro_ad_pdf": "Avec Spacedeck Pro, vous pouvez exporter vos espaces et même des dossiers entiers belles PDF pour l'archivage, de diffusion, ou autour de l'impression. Voulez-vous en savoir plus sur les fonctionnalités Pro ?",
    "spacedeck_pro_ad_zip": "Avec Spacedeck Pro, vous pouvez exporter le contenu d'un espace comme un paquet ZIP. Voulez-vous en savoir plus sur les fonctionnalités Pro ?",
    "spacedeck_pro_ad_colors": "Avec Spacedeck Pro, vous pouvez mélanger vos propres couleurs en utilisant un sélecteur de couleur professionnelle.",
    "profile_caption": "Perfil",
    "upload_avatar": "Enviar avatar",
    "uploading_avatar": "Mandadís avatar…",
    "avatar_dimensions": "Dimensions recomandadas : 200x200 pixèls.",
    "profile_name": "Nom",
    "profile_email": "Adreça electronica",
    "send_again": "Tornar enviar",
    "confirmation_sent_long": "Ligam de confirmacion enviat. Mercés de verificar vòstres corrièrs.",
    "confirmation_sent_another": "Un autre ligam de confirmacion enviat.",
    "confirmation_sent_dialog_text": "Avèm enviat un corrièl qu’explica cossí confirmar vòstra adreça electronica.",
    "payment_caption": "Pagament",
    "language_caption": "Lenga",
    "notifications_caption": "Notificacions",
    "notifications_option_chat": "Enviatz-me de comentaris novèls per corrièl",
    "notifications_option_spaces": "Enviatz-me un resumit jornadièr de las modificacions dels espacis",
    "password_caption": "Senhal",
    "current_password": "Senhal actual",
    "new_password": "Senhal novèl",
    "verify_password": "Verificar lo senhal novèl",
    "change_password": "Modificar senhal",
    "reset_password": "Reïnicializar senhal",
    "terminate_caption": "Suprimir lo compte",
    "terminate_warning": "En escafant vòstre compte, vòstres messatges, espacis, repertòris e lor contengut seràn suprimits. Aquesta accion pòt pas èsser anullada.",
    "terminate_warning2": "Aquò pòt pas èsser anullat.",
    "terminate_reason": "Messatge",
    "terminate_reason_caption": "Ajudatz-nos a melhorar lo logicial en nos diguent las rasons de la supression de vòstre compte",
    "terminate_terminate": "Suprimir vòstre compte per totjorn ?",
    "space_blank1": "Aquò es vòstre novèl espaci",
    "space_blank2": "Lisatz de fichièrs, pegatz de ligams",
    "space_blank3": "o utilizatz las aisinas",
    "space_blank4": "Siatz creatius !",
    "draft": "Borrolhon",
    "publish": "Publicar",
    "published": "Publicat",
    "save_version": "Enregistrar version",
    "version_saved": "Version enregistrada",
    "post": "Publicar messatge",
    "chat_invite_cta1": "Collaboratz amb amusament !",
    "chat_invite_cta2": "Perqué pas ",
    "chat_invite_cta3": "convidar de monde",
    "chat_invite_cta4": "per trabalhar amb vos ?",
    "chat_message_placeholder": "Escrivètz vòstre messatge…",
    "view": "Afichatge",
    "edit": "Edicion",
    "present": "Present",
    "chat": "Messatjariá",
    "meta": "Mèta",
    "tool_search": "Recercar",
    "tool_upload": "Enviar",
    "tool_text": "Tèxte",
    "tool_shape": "Forma",
    "tool_zones": "Zònas",
    "tool_canvas": "Canvas",
    "search_media": "Cercar de mèdias…",
    "type_here": "Picatz aquí",
    "text_formats": "Formats",
    "format_p": "Paragraph",
    "format_bullets": "Lista a piuses",
    "format_numbers": "Lista numeratada",
    "format_h1": "Títol 1",
    "format_h2": "Títol 2",
    "format_h3": "Títol 3",
    "font_size": "Font Size",
    "line_height": "Nnautor de linha",
    "tool_align": "Alinhar",
    "tool_styles": "Estils",
    "tool_bullets": "Bullets",
    "tool_numbers": "Nombres",
    "color_fill": "Fill",
    "color_stroke": "Traçat",
    "color_text": "Tèxte",
    "tool_type": "Tipe",
    "tool_box": "Bóstia",
    "tool_link": "Ligam",
    "tool_layout": "Agençament",
    "tool_options": "Opcions",
    "tool_stroke": "Traçat",
    "tool_delete": "Suprimir",
    "tool_lock": "Verrolhar",
    "tool_copy": "Copiar",
    "stack": "Pila",
    "tool_circle": "Cercle",
    "tool_hexagon": "Exagòn",
    "tool_square": "Carrat",
    "tool_diamond": "Diamond",
    "tool_bubble": "Bulla",
    "tool_cloud": "Nívol",
    "tool_burst": "Burst",
    "tool_star": "Star",
    "tool_heart": "Còr",
    "tool_scribble": "Barbolhatge",
    "tool_line": "Linha",
    "tool_arrow": "Sageta",
    "search_media_placeholder": "Cercar de mèdias web…",
    "add_zone": "Zòna novèla",
    "palette": "Paleta",
    "picker": "Pipeta",
    "background_image_caption": "Imatge",
    "background_color_caption": "Color",
    "upload_background_caption": "Clicar per enviar un imatge de rèireplan",
    "upload_background": "Enviar rèireplan",
    "access_caption": "Accès",
    "versions_caption": "Versions",
    "info_caption": "Info",
    "mode_private": "Privat : sonque los membres pòdon veire o modificar",
    "mode_public": "Public : qual que siá amb lo ligam pòt veire",
    "invite_collaborators": "Convidar collaborators",
    "revoke_access": "Revocar l’accès",
    "invite": "Enviar invitacions",
    "invitee_email_address": "Adreça electronica del novèl membre",
    "optional_message": "Messatge opcional",
    "role_viewer": "Visualizaira",
    "role_editor": "Editor",
    "role_admin": "Admin",
    "new_space_title": "Títol novèl per l’Espaci",
    "team": "Equipa",
    "search": "Recercar",
    "search_no_results": "search_no_results",
    "search_clear": "search_clear",
    "rename": "Renomenar",
    "mobile": "mobil",
    "image": "imatge",
    "tool_filter": "filtre",
    "canel": "canel",
    "invite_membership_action": "invite_membership_action",
    "viewer": "visualizaira",
    "editor": "editor",
    "admin": "admin",
    "logging_in": "connexion",
    "password_confirmation": "Confirmacion del senhla",
    "confirm_again": "Mercés de consultar vòstra bóstia de recepcion per confirmar vòstra adreça.",
    "confirmed": "Vòstre compte es estat corrèctament confirmat. Mercés.",
    "signing_up": "Inscripcion",
    "password_check_inbox": "Verificatz vòstra bóstia de recepcion",
    "new_space": "Espaci novèl",
    "tool_more": "Mai",
    "what_is_your_name": "La benvenguda a %s ! Mercés de causir un escais-nom.",
    "lang": "en",
    "landing_title": "Vòstre tablèu blanc sul Web.",
    "landing_claim": "Spacedeck vos permet de facilament combinar quin que siá tipe de mèdias sus un tablèu virtual : tèxte, nòtas, ligams web, amai vidèos e enregistraments àudio. ",
    "landing_example": "Lo monde utiliza Spacedeck per organizar  lors idèas, en equipa per veire totes los projèctes en una ulhada, a l’escòla e a l’universitat pels mai rics, experiéncia d’aprendissatge connectat.",
    "spaces": "Mos espacis",
    "access_editor_link": "Ligam de modificacion dirècta",
    "access_editor_link_desc": "Donatz aqueste ligam a qualqu’un que deu poder modificar dirèctament aqueste Espaci, cap de compte pas requerit : ",
    "access_editor_link_desc_slug": "Aqueste ligam conten lo nom de l’espaci, tanben. ",
    "access_anonymous_edit_blocking": "Los convidats pòdon pas modificar los elements qu’an creats.",
    "access_current_members": "Membres actuals",
    "access_new_members": "Convidar de novèls membres",
    "access_no_members": "Los membres d’aqueste Espacii apreissaràn aquí.",
    "comments": "comentaris",
    "landing_customers": "La fisança de milièr de personas.",
    "landing_features_title": "Un jòc d'enfants d’utilizar.",
    "landing_features_text": "Le tout nouveau Spacedeck 5 vous permet de travailler bien plus facilement grâce à sa magnifique interface simplifiée.",
    "landing_features_1": "Glissez & déposez images, vidéos et audios de votre ordinateur ou du web",
    "landing_features_2": "Ecrivez directement sur l'espace et choisissez les polices de caractère, couleurs et styles",
    "landing_features_3": "Dessinez, annotez et surlignez grâce aux formes graphiques intégrées",
    "landing_features_4": "Transformez votre espace en une présentation dynamique",
    "landing_features_5": "Collaborez et discutez en temps réel avec vos collègues, élèves et amis",
    "landing_features_6": "Partagez vos espaces sur le web ou par email",
    "landing_features_7": "Exportez votre espace en PDF pour l'imprimer",
    "landing_pricing": "Incroyablement abordable.",
    "landing_pricing_lite": "Usage personnel",
    "landing_pricing_lite_text": "La version de base, bien arrondi pour recueillir des images et de garder des notes.",
    "landing_pricing_pro_features_list": "<ul><li>Unlimited Spaces</li><li>Exporter PDF, ZIP</li><li>No Watermarks</li><li>Image de fonds</li><li>Activity History</li><li>20 Go de stockage</li><ul>",
	"landing_pricing_pro": "€4,90/User/Mo. <br><small> €49,90/User/Year</small>",
    "landing_pricing_pro_text": "Avec toute la puissance que vous attendez.",
    "landing_pricing_pro_features": "€4,90/User/Mo. <br><small> €49,90/User/Year</small>",
    "welcome_subject": "La benvenguda a Spacedeck",
    "welcome_body": "Mercés per vòstra inscripcion a Spacedeck.\nEsperam qu’auretz plaser a trabalhar dins los Espacis. <br> Oblidetz pas que vòstre compte conten un nombre illimitat de collaborators. <br> Esitetz pas a partejar vòstres espacis amb los amics e collègas del monde entièr.",
    "invite_emails": "Picatz las adreças mails (separadas per de vergulas)",
    "history_recently_updated": "Novèlas",
    "history_recently_empty": "Pas res",
    "parent_folder": "Repertòri parent",
    "created_by": "Creat per",
    "last_updated": "Darrièra mesa a jorn",
    "feedback_sent": "Comentari enviat",
    "role_member": "Membre",
    "team_invite_membership_action": "Acceptar",
    "space_message_subject": "A publicat sus %s",
    "space_message_body": "%s a comentat dins %s :\n",
    "pro_ad_history_headline": "Aprèp una mesa a nivèl podètz obténer un apercebut de totas las activitats actualas dels espacis aquí.",
    "password_reset_subject": "Reïnicializar lo senhal per Spacedeck",
    "password_reset_body": "Òu !<br><br>Avètz demandat la reïnicializacion del senhal.<br>Mercés de clicar sul ligam seguent per ne causir un novèl.<br>",
    "password_reset_action": "Reïnicializar ara",
    "was_offline": "La connexion a Spacedeck es estada copada. S’avètz de trabalh pas enregistratz, gardatz aqueste onglet de navigador dobèrt fins que la connexion siá restablida puèi tocatz de nòu los elements pas enregistrats.",
    "subscription_failed_user_subject": "Problèma amb lo pagament Spacedeck",
    "subscription_failed_user_body": "Unfortunately, we could not process your Payment-method. You can easly create a new payment method including PayPal in your account settings.",
	"subscription_failed_team_subject": "Problem with your Spacedeck Payment",
    "subscription_failed_team_body": "Unfortunately, we could not process your Payment-method for your Team-Account. Please fix your payment method asap.",
    "team_name": "Nom de l’equipa",
    "subdomain": "jos-domeni",
    "team_adresses": "Adreças equipa",
    "add": "Ajustar",
    "invited": "convidat",
    "duplicate_destination": "Seleccionatz lo repertòri de destinacion",
    "duplicate_confirm": "Duplicar %s dins %s ?",
    "duplicate_success": "%s es estat duplicat dins %s.",
    "goto_space": "anar a l’espaci",
    "goto_folder": "anar al repertòri",
    "stay_here": "Demorar aquí",
    "sharing": "partatge",
    "list": "lista",
    "link": "Ligam",
    "download_space": "Telecargar espaci",
    "type": "Tipe",
    "download": "Telecargar",
    "Previous Zone": "Zòna precedenta",
    "Next Zone": "Zòna seguenta",
    "promote": "Promòure",
    "demote": "Retrogradar",
    "more": "Mai",
    "lock": "Verrolhar",
    "unlock": "Desverrolhar",
    "follow_present": "Seguir",
    "mute_present": "Quitar de seguir",
    "follow_present_help": "follow_present_help",
    "export": "exportar"
}