@agent-native/scheduling 0.1.11 → 0.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/react/components/SlotPicker.d.ts.map +1 -1
- package/dist/react/components/SlotPicker.js +3 -1
- package/dist/react/components/SlotPicker.js.map +1 -1
- package/dist/react/components/booking-links/AvailabilityEditor.d.ts +2 -1
- package/dist/react/components/booking-links/AvailabilityEditor.d.ts.map +1 -1
- package/dist/react/components/booking-links/AvailabilityEditor.js +28 -22
- package/dist/react/components/booking-links/AvailabilityEditor.js.map +1 -1
- package/dist/react/components/booking-links/BookingLinkCreateDialog.d.ts.map +1 -1
- package/dist/react/components/booking-links/BookingLinkCreateDialog.js +6 -4
- package/dist/react/components/booking-links/BookingLinkCreateDialog.js.map +1 -1
- package/dist/react/components/booking-links/ConferencingSelector.d.ts.map +1 -1
- package/dist/react/components/booking-links/ConferencingSelector.js +25 -19
- package/dist/react/components/booking-links/ConferencingSelector.js.map +1 -1
- package/dist/react/components/booking-links/CustomFieldsEditor.d.ts.map +1 -1
- package/dist/react/components/booking-links/CustomFieldsEditor.js +39 -25
- package/dist/react/components/booking-links/CustomFieldsEditor.js.map +1 -1
- package/dist/react/components/booking-links/DurationPicker.d.ts.map +1 -1
- package/dist/react/components/booking-links/DurationPicker.js +6 -2
- package/dist/react/components/booking-links/DurationPicker.js.map +1 -1
- package/dist/react/components/booking-links/SlugEditor.d.ts.map +1 -1
- package/dist/react/components/booking-links/SlugEditor.js +5 -3
- package/dist/react/components/booking-links/SlugEditor.js.map +1 -1
- package/dist/react/i18n.d.ts +109 -0
- package/dist/react/i18n.d.ts.map +1 -0
- package/dist/react/i18n.js +976 -0
- package/dist/react/i18n.js.map +1 -0
- package/dist/schema/bookings.d.ts +12 -12
- package/dist/schema/event-types.d.ts +12 -12
- package/dist/schema/routing-forms.d.ts +12 -12
- package/dist/schema/schedules.d.ts +12 -12
- package/dist/schema/teams.d.ts +12 -12
- package/dist/schema/workflows.d.ts +15 -15
- package/package.json +10 -11
- package/src/react/components/SlotPicker.tsx +6 -1
- package/src/react/components/booking-links/AvailabilityEditor.tsx +48 -27
- package/src/react/components/booking-links/BookingLinkCreateDialog.tsx +17 -15
- package/src/react/components/booking-links/ConferencingSelector.tsx +36 -31
- package/src/react/components/booking-links/CustomFieldsEditor.tsx +71 -52
- package/src/react/components/booking-links/DurationPicker.tsx +8 -4
- package/src/react/components/booking-links/SlugEditor.tsx +7 -5
- package/src/react/i18n.ts +1050 -0
|
@@ -0,0 +1,976 @@
|
|
|
1
|
+
import { DEFAULT_LOCALE, useLocale, } from "@agent-native/core/client";
|
|
2
|
+
const enUS = {
|
|
3
|
+
add: "Add",
|
|
4
|
+
addField: "Add field",
|
|
5
|
+
addEventTypeDescription: "Create a new event type for people to book.",
|
|
6
|
+
addEventTypeTitle: "Add a new event type",
|
|
7
|
+
availableLeft: "left",
|
|
8
|
+
bookersChooseBetween: "Bookers will choose between: {{durations}}",
|
|
9
|
+
cancel: "Cancel",
|
|
10
|
+
clickToEditSlug: "Click to edit slug",
|
|
11
|
+
clickToEditUsername: "Click to edit username",
|
|
12
|
+
checkbox: "Checkbox",
|
|
13
|
+
company: "Company",
|
|
14
|
+
companyPlaceholder: "Your company name",
|
|
15
|
+
conferencing: "Conferencing",
|
|
16
|
+
connectGoogle: "Connect Google",
|
|
17
|
+
connectGoogleCalendar: "Connect Google Calendar",
|
|
18
|
+
connectGoogleCalendarDescription: "Meet links are auto-generated when the calendar event is created.",
|
|
19
|
+
connected: "Connected",
|
|
20
|
+
connectZoom: "Connect Zoom",
|
|
21
|
+
connectZoomAccount: "Connect your Zoom account",
|
|
22
|
+
connectZoomAccountDescription: "We'll create a real Zoom meeting for every booking - no need to paste a personal link.",
|
|
23
|
+
continue: "Continue",
|
|
24
|
+
customFields: "Custom fields",
|
|
25
|
+
customFieldsEmpty: "Add custom fields to collect information from bookers - e.g. LinkedIn profile, company name, phone number.",
|
|
26
|
+
customLink: "Custom link",
|
|
27
|
+
customLinkDescription: "Paste any meeting URL",
|
|
28
|
+
description: "Description",
|
|
29
|
+
dropdown: "Dropdown",
|
|
30
|
+
duration: "Duration",
|
|
31
|
+
email: "Email",
|
|
32
|
+
errorMessage: "Error message",
|
|
33
|
+
errorMessageHint: "(shown when pattern doesn't match)",
|
|
34
|
+
everyDay: "Every day",
|
|
35
|
+
fieldLabel: "Field label",
|
|
36
|
+
googleMeet: "Google Meet",
|
|
37
|
+
googleMeetDescription: "Auto-generate a Meet link",
|
|
38
|
+
inPersonOrOther: "In-person or other",
|
|
39
|
+
label: "Label",
|
|
40
|
+
linkedInProfile: "LinkedIn Profile",
|
|
41
|
+
linkedInUrlError: "Please enter a valid LinkedIn profile URL",
|
|
42
|
+
longText: "Long text",
|
|
43
|
+
meeting: "meeting",
|
|
44
|
+
meetingUrl: "Meeting URL",
|
|
45
|
+
minutes: "minutes",
|
|
46
|
+
minAbbrev: "min",
|
|
47
|
+
monday: "Monday",
|
|
48
|
+
mon: "Mon",
|
|
49
|
+
tuesday: "Tuesday",
|
|
50
|
+
tue: "Tue",
|
|
51
|
+
wednesday: "Wednesday",
|
|
52
|
+
wed: "Wed",
|
|
53
|
+
thursday: "Thursday",
|
|
54
|
+
thu: "Thu",
|
|
55
|
+
friday: "Friday",
|
|
56
|
+
fri: "Fri",
|
|
57
|
+
saturday: "Saturday",
|
|
58
|
+
sat: "Sat",
|
|
59
|
+
sunday: "Sunday",
|
|
60
|
+
sun: "Sun",
|
|
61
|
+
moveDown: "Move down",
|
|
62
|
+
moveUp: "Move up",
|
|
63
|
+
newField: "New Field",
|
|
64
|
+
noAvailabilitySet: "No availability set",
|
|
65
|
+
noConferencing: "No conferencing",
|
|
66
|
+
onePerLine: "(one per line)",
|
|
67
|
+
optional: "Optional",
|
|
68
|
+
options: "Options",
|
|
69
|
+
pattern: "Pattern",
|
|
70
|
+
phone: "Phone",
|
|
71
|
+
phoneNumber: "Phone Number",
|
|
72
|
+
placeholder: "Placeholder",
|
|
73
|
+
placeholderText: "Placeholder text",
|
|
74
|
+
presets: "Presets",
|
|
75
|
+
regexOptional: "(regex, optional)",
|
|
76
|
+
removeField: "Remove field",
|
|
77
|
+
required: "Required",
|
|
78
|
+
saving: "Saving...",
|
|
79
|
+
shortText: "Short text",
|
|
80
|
+
shortDescriptionPlaceholder: "A short description people will see.",
|
|
81
|
+
quickChatPlaceholder: "Quick chat",
|
|
82
|
+
quickChatSlugPlaceholder: "quick-chat",
|
|
83
|
+
optionListPlaceholder: "Option 1\nOption 2\nOption 3",
|
|
84
|
+
validationPatternPlaceholder: "e.g. ^https?://(www\\.)?linkedin\\.com/in/.+",
|
|
85
|
+
validationErrorPlaceholder: "e.g. Please enter a valid LinkedIn URL",
|
|
86
|
+
customMeetingUrlPlaceholder: "https://meet.example.com/room",
|
|
87
|
+
title: "Title",
|
|
88
|
+
to: "to",
|
|
89
|
+
toggleDay: "Toggle {{day}}",
|
|
90
|
+
type: "Type",
|
|
91
|
+
unavailable: "Unavailable",
|
|
92
|
+
url: "URL",
|
|
93
|
+
validationPattern: "Validation pattern",
|
|
94
|
+
website: "Website",
|
|
95
|
+
weekdays: "Weekdays",
|
|
96
|
+
weekends: "Weekends",
|
|
97
|
+
yourName: "your-name",
|
|
98
|
+
zoom: "Zoom",
|
|
99
|
+
zoomDescription: "Auto-create a meeting per booking",
|
|
100
|
+
zoomNotConfigured: "Ask your admin to set ZOOM_CLIENT_ID and ZOOM_CLIENT_SECRET to enable Zoom OAuth.",
|
|
101
|
+
providerNotConfigured: "{{provider}} is not configured on this server.",
|
|
102
|
+
providerNeedsCredentials: "{{provider}} needs server OAuth credentials before it can be used.",
|
|
103
|
+
};
|
|
104
|
+
const translations = {
|
|
105
|
+
"zh-CN": {
|
|
106
|
+
add: "添加",
|
|
107
|
+
addField: "添加字段",
|
|
108
|
+
addEventTypeDescription: "创建新的可预约活动类型。",
|
|
109
|
+
addEventTypeTitle: "添加新的活动类型",
|
|
110
|
+
availableLeft: "剩余",
|
|
111
|
+
bookersChooseBetween: "预约者将在这些时长中选择:{{durations}}",
|
|
112
|
+
cancel: "取消",
|
|
113
|
+
clickToEditSlug: "点击编辑短链接",
|
|
114
|
+
clickToEditUsername: "点击编辑用户名",
|
|
115
|
+
checkbox: "复选框",
|
|
116
|
+
company: "公司",
|
|
117
|
+
companyPlaceholder: "你的公司名称",
|
|
118
|
+
conferencing: "会议",
|
|
119
|
+
connectGoogle: "连接 Google",
|
|
120
|
+
connectGoogleCalendar: "连接 Google 日历",
|
|
121
|
+
connectGoogleCalendarDescription: "创建日历活动时会自动生成 Meet 链接。",
|
|
122
|
+
connected: "已连接",
|
|
123
|
+
connectZoom: "连接 Zoom",
|
|
124
|
+
connectZoomAccount: "连接你的 Zoom 账户",
|
|
125
|
+
connectZoomAccountDescription: "我们会为每个预约创建真实的 Zoom 会议,无需粘贴个人链接。",
|
|
126
|
+
continue: "继续",
|
|
127
|
+
customFields: "自定义字段",
|
|
128
|
+
customFieldsEmpty: "添加自定义字段以收集预约者信息,例如 LinkedIn 个人资料、公司名称、电话号码。",
|
|
129
|
+
customLink: "自定义链接",
|
|
130
|
+
customLinkDescription: "粘贴任意会议 URL",
|
|
131
|
+
description: "描述",
|
|
132
|
+
dropdown: "下拉菜单",
|
|
133
|
+
duration: "时长",
|
|
134
|
+
email: "电子邮件",
|
|
135
|
+
errorMessage: "错误消息",
|
|
136
|
+
errorMessageHint: "(模式不匹配时显示)",
|
|
137
|
+
everyDay: "每天",
|
|
138
|
+
fieldLabel: "字段标签",
|
|
139
|
+
googleMeet: "Google Meet",
|
|
140
|
+
googleMeetDescription: "自动生成 Meet 链接",
|
|
141
|
+
inPersonOrOther: "线下或其他方式",
|
|
142
|
+
label: "标签",
|
|
143
|
+
linkedInProfile: "LinkedIn 个人资料",
|
|
144
|
+
linkedInUrlError: "请输入有效的 LinkedIn 个人资料 URL",
|
|
145
|
+
longText: "长文本",
|
|
146
|
+
meeting: "meeting",
|
|
147
|
+
meetingUrl: "会议 URL",
|
|
148
|
+
minutes: "分钟",
|
|
149
|
+
minAbbrev: "分钟",
|
|
150
|
+
monday: "星期一",
|
|
151
|
+
mon: "周一",
|
|
152
|
+
tuesday: "星期二",
|
|
153
|
+
tue: "周二",
|
|
154
|
+
wednesday: "星期三",
|
|
155
|
+
wed: "周三",
|
|
156
|
+
thursday: "星期四",
|
|
157
|
+
thu: "周四",
|
|
158
|
+
friday: "星期五",
|
|
159
|
+
fri: "周五",
|
|
160
|
+
saturday: "星期六",
|
|
161
|
+
sat: "周六",
|
|
162
|
+
sunday: "星期日",
|
|
163
|
+
sun: "周日",
|
|
164
|
+
moveDown: "下移",
|
|
165
|
+
moveUp: "上移",
|
|
166
|
+
newField: "新字段",
|
|
167
|
+
noAvailabilitySet: "未设置可用时间",
|
|
168
|
+
noConferencing: "无会议",
|
|
169
|
+
onePerLine: "(每行一个)",
|
|
170
|
+
optional: "可选",
|
|
171
|
+
options: "选项",
|
|
172
|
+
pattern: "模式",
|
|
173
|
+
phone: "电话",
|
|
174
|
+
phoneNumber: "电话号码",
|
|
175
|
+
placeholder: "占位文本",
|
|
176
|
+
placeholderText: "占位文本",
|
|
177
|
+
presets: "预设",
|
|
178
|
+
regexOptional: "(正则,可选)",
|
|
179
|
+
removeField: "移除字段",
|
|
180
|
+
required: "必填",
|
|
181
|
+
saving: "正在保存...",
|
|
182
|
+
shortText: "短文本",
|
|
183
|
+
shortDescriptionPlaceholder: "人们会看到的简短描述。",
|
|
184
|
+
title: "标题",
|
|
185
|
+
to: "至",
|
|
186
|
+
toggleDay: "切换{{day}}",
|
|
187
|
+
type: "类型",
|
|
188
|
+
unavailable: "不可用",
|
|
189
|
+
url: "URL",
|
|
190
|
+
validationPattern: "验证模式",
|
|
191
|
+
website: "网站",
|
|
192
|
+
weekdays: "工作日",
|
|
193
|
+
weekends: "周末",
|
|
194
|
+
yourName: "your-name",
|
|
195
|
+
zoomDescription: "每次预约自动创建会议",
|
|
196
|
+
zoomNotConfigured: "请让管理员设置 ZOOM_CLIENT_ID 和 ZOOM_CLIENT_SECRET 以启用 Zoom OAuth。",
|
|
197
|
+
providerNotConfigured: "{{provider}} 未在此服务器上配置。",
|
|
198
|
+
providerNeedsCredentials: "{{provider}} 需要服务器 OAuth 凭据后才能使用。",
|
|
199
|
+
},
|
|
200
|
+
"es-ES": {
|
|
201
|
+
add: "Añadir",
|
|
202
|
+
addField: "Añadir campo",
|
|
203
|
+
addEventTypeDescription: "Crea un nuevo tipo de evento para reservar.",
|
|
204
|
+
addEventTypeTitle: "Añadir un nuevo tipo de evento",
|
|
205
|
+
availableLeft: "restantes",
|
|
206
|
+
bookersChooseBetween: "Quienes reserven elegirán entre: {{durations}}",
|
|
207
|
+
cancel: "Cancelar",
|
|
208
|
+
clickToEditSlug: "Haz clic para editar el slug",
|
|
209
|
+
clickToEditUsername: "Haz clic para editar el usuario",
|
|
210
|
+
checkbox: "Casilla",
|
|
211
|
+
company: "Empresa",
|
|
212
|
+
companyPlaceholder: "Nombre de tu empresa",
|
|
213
|
+
conferencing: "Videoconferencia",
|
|
214
|
+
connectGoogle: "Conectar Google",
|
|
215
|
+
connectGoogleCalendar: "Conectar Google Calendar",
|
|
216
|
+
connectGoogleCalendarDescription: "Los enlaces de Meet se generan automáticamente al crear el evento.",
|
|
217
|
+
connected: "Conectado",
|
|
218
|
+
connectZoom: "Conectar Zoom",
|
|
219
|
+
connectZoomAccount: "Conecta tu cuenta de Zoom",
|
|
220
|
+
connectZoomAccountDescription: "Crearemos una reunión real de Zoom para cada reserva; no hace falta pegar un enlace personal.",
|
|
221
|
+
continue: "Continuar",
|
|
222
|
+
customFields: "Campos personalizados",
|
|
223
|
+
customFieldsEmpty: "Añade campos personalizados para recopilar información, por ejemplo perfil de LinkedIn, empresa o teléfono.",
|
|
224
|
+
customLink: "Enlace personalizado",
|
|
225
|
+
customLinkDescription: "Pega cualquier URL de reunión",
|
|
226
|
+
description: "Descripción",
|
|
227
|
+
dropdown: "Desplegable",
|
|
228
|
+
duration: "Duración",
|
|
229
|
+
email: "Correo",
|
|
230
|
+
errorMessage: "Mensaje de error",
|
|
231
|
+
errorMessageHint: "(se muestra cuando el patrón no coincide)",
|
|
232
|
+
everyDay: "Todos los días",
|
|
233
|
+
fieldLabel: "Etiqueta del campo",
|
|
234
|
+
googleMeet: "Google Meet",
|
|
235
|
+
googleMeetDescription: "Generar automáticamente un enlace de Meet",
|
|
236
|
+
inPersonOrOther: "Presencial u otro",
|
|
237
|
+
label: "Etiqueta",
|
|
238
|
+
linkedInProfile: "Perfil de LinkedIn",
|
|
239
|
+
linkedInUrlError: "Introduce una URL válida de perfil de LinkedIn",
|
|
240
|
+
longText: "Texto largo",
|
|
241
|
+
meeting: "reunion",
|
|
242
|
+
meetingUrl: "URL de reunión",
|
|
243
|
+
minutes: "minutos",
|
|
244
|
+
minAbbrev: "min",
|
|
245
|
+
monday: "Lunes",
|
|
246
|
+
mon: "Lun",
|
|
247
|
+
tuesday: "Martes",
|
|
248
|
+
tue: "Mar",
|
|
249
|
+
wednesday: "Miércoles",
|
|
250
|
+
wed: "Mié",
|
|
251
|
+
thursday: "Jueves",
|
|
252
|
+
thu: "Jue",
|
|
253
|
+
friday: "Viernes",
|
|
254
|
+
fri: "Vie",
|
|
255
|
+
saturday: "Sábado",
|
|
256
|
+
sat: "Sáb",
|
|
257
|
+
sunday: "Domingo",
|
|
258
|
+
sun: "Dom",
|
|
259
|
+
moveDown: "Mover abajo",
|
|
260
|
+
moveUp: "Mover arriba",
|
|
261
|
+
newField: "Nuevo campo",
|
|
262
|
+
noAvailabilitySet: "Sin disponibilidad configurada",
|
|
263
|
+
noConferencing: "Sin videoconferencia",
|
|
264
|
+
onePerLine: "(uno por línea)",
|
|
265
|
+
optional: "Opcional",
|
|
266
|
+
options: "Opciones",
|
|
267
|
+
pattern: "Patrón",
|
|
268
|
+
phone: "Teléfono",
|
|
269
|
+
phoneNumber: "Número de teléfono",
|
|
270
|
+
placeholder: "Marcador",
|
|
271
|
+
placeholderText: "Texto de marcador",
|
|
272
|
+
presets: "Preajustes",
|
|
273
|
+
regexOptional: "(regex, opcional)",
|
|
274
|
+
removeField: "Eliminar campo",
|
|
275
|
+
required: "Obligatorio",
|
|
276
|
+
saving: "Guardando...",
|
|
277
|
+
shortText: "Texto corto",
|
|
278
|
+
shortDescriptionPlaceholder: "Una descripción breve que verán las personas.",
|
|
279
|
+
title: "Título",
|
|
280
|
+
to: "a",
|
|
281
|
+
toggleDay: "Activar {{day}}",
|
|
282
|
+
type: "Tipo",
|
|
283
|
+
unavailable: "No disponible",
|
|
284
|
+
url: "URL",
|
|
285
|
+
validationPattern: "Patrón de validación",
|
|
286
|
+
website: "Sitio web",
|
|
287
|
+
weekdays: "Días laborables",
|
|
288
|
+
weekends: "Fines de semana",
|
|
289
|
+
yourName: "tu-nombre",
|
|
290
|
+
zoomDescription: "Crear automáticamente una reunión por reserva",
|
|
291
|
+
zoomNotConfigured: "Pide a tu administrador que configure ZOOM_CLIENT_ID y ZOOM_CLIENT_SECRET para habilitar OAuth de Zoom.",
|
|
292
|
+
providerNotConfigured: "{{provider}} no está configurado en este servidor.",
|
|
293
|
+
providerNeedsCredentials: "{{provider}} necesita credenciales OAuth del servidor antes de poder usarse.",
|
|
294
|
+
},
|
|
295
|
+
"fr-FR": {
|
|
296
|
+
add: "Ajouter",
|
|
297
|
+
addField: "Ajouter un champ",
|
|
298
|
+
addEventTypeDescription: "Créez un nouveau type d'événement que les personnes pourront réserver.",
|
|
299
|
+
addEventTypeTitle: "Ajouter un nouveau type d'événement",
|
|
300
|
+
availableLeft: "restantes",
|
|
301
|
+
bookersChooseBetween: "Les participants choisiront parmi : {{durations}}",
|
|
302
|
+
cancel: "Annuler",
|
|
303
|
+
clickToEditSlug: "Cliquer pour modifier le slug",
|
|
304
|
+
clickToEditUsername: "Cliquer pour modifier le nom d'utilisateur",
|
|
305
|
+
checkbox: "Case à cocher",
|
|
306
|
+
company: "Entreprise",
|
|
307
|
+
companyPlaceholder: "Nom de votre entreprise",
|
|
308
|
+
conferencing: "Visioconférence",
|
|
309
|
+
connectGoogle: "Connecter Google",
|
|
310
|
+
connectGoogleCalendar: "Connecter Google Agenda",
|
|
311
|
+
connectGoogleCalendarDescription: "Les liens Meet sont générés automatiquement lors de la création de l'événement.",
|
|
312
|
+
connected: "Connecté",
|
|
313
|
+
connectZoom: "Connecter Zoom",
|
|
314
|
+
connectZoomAccount: "Connectez votre compte Zoom",
|
|
315
|
+
connectZoomAccountDescription: "Nous créerons une vraie réunion Zoom pour chaque réservation ; inutile de coller un lien personnel.",
|
|
316
|
+
continue: "Continuer",
|
|
317
|
+
customFields: "Champs personnalisés",
|
|
318
|
+
customFieldsEmpty: "Ajoutez des champs personnalisés pour collecter des informations, par exemple profil LinkedIn, entreprise ou téléphone.",
|
|
319
|
+
customLink: "Lien personnalisé",
|
|
320
|
+
customLinkDescription: "Collez n'importe quelle URL de réunion",
|
|
321
|
+
description: "Description",
|
|
322
|
+
dropdown: "Liste déroulante",
|
|
323
|
+
duration: "Durée",
|
|
324
|
+
email: "E-mail",
|
|
325
|
+
errorMessage: "Message d'erreur",
|
|
326
|
+
errorMessageHint: "(affiché lorsque le motif ne correspond pas)",
|
|
327
|
+
everyDay: "Tous les jours",
|
|
328
|
+
fieldLabel: "Libellé du champ",
|
|
329
|
+
googleMeet: "Google Meet",
|
|
330
|
+
googleMeetDescription: "Générer automatiquement un lien Meet",
|
|
331
|
+
inPersonOrOther: "En personne ou autre",
|
|
332
|
+
label: "Libellé",
|
|
333
|
+
linkedInProfile: "Profil LinkedIn",
|
|
334
|
+
linkedInUrlError: "Saisissez une URL de profil LinkedIn valide",
|
|
335
|
+
longText: "Texte long",
|
|
336
|
+
meeting: "reunion",
|
|
337
|
+
meetingUrl: "URL de réunion",
|
|
338
|
+
minutes: "minutes",
|
|
339
|
+
minAbbrev: "min",
|
|
340
|
+
monday: "Lundi",
|
|
341
|
+
mon: "Lun",
|
|
342
|
+
tuesday: "Mardi",
|
|
343
|
+
tue: "Mar",
|
|
344
|
+
wednesday: "Mercredi",
|
|
345
|
+
wed: "Mer",
|
|
346
|
+
thursday: "Jeudi",
|
|
347
|
+
thu: "Jeu",
|
|
348
|
+
friday: "Vendredi",
|
|
349
|
+
fri: "Ven",
|
|
350
|
+
saturday: "Samedi",
|
|
351
|
+
sat: "Sam",
|
|
352
|
+
sunday: "Dimanche",
|
|
353
|
+
sun: "Dim",
|
|
354
|
+
moveDown: "Déplacer vers le bas",
|
|
355
|
+
moveUp: "Déplacer vers le haut",
|
|
356
|
+
newField: "Nouveau champ",
|
|
357
|
+
noAvailabilitySet: "Aucune disponibilité définie",
|
|
358
|
+
noConferencing: "Pas de visioconférence",
|
|
359
|
+
onePerLine: "(un par ligne)",
|
|
360
|
+
optional: "Facultatif",
|
|
361
|
+
options: "Options",
|
|
362
|
+
pattern: "Motif",
|
|
363
|
+
phone: "Téléphone",
|
|
364
|
+
phoneNumber: "Numéro de téléphone",
|
|
365
|
+
placeholder: "Texte indicatif",
|
|
366
|
+
placeholderText: "Texte indicatif",
|
|
367
|
+
presets: "Préréglages",
|
|
368
|
+
regexOptional: "(regex, facultatif)",
|
|
369
|
+
removeField: "Supprimer le champ",
|
|
370
|
+
required: "Obligatoire",
|
|
371
|
+
saving: "Enregistrement...",
|
|
372
|
+
shortText: "Texte court",
|
|
373
|
+
shortDescriptionPlaceholder: "Une courte description visible par les participants.",
|
|
374
|
+
title: "Titre",
|
|
375
|
+
to: "à",
|
|
376
|
+
toggleDay: "Activer {{day}}",
|
|
377
|
+
type: "Type",
|
|
378
|
+
unavailable: "Indisponible",
|
|
379
|
+
url: "URL",
|
|
380
|
+
validationPattern: "Motif de validation",
|
|
381
|
+
website: "Site web",
|
|
382
|
+
weekdays: "Jours ouvrés",
|
|
383
|
+
weekends: "Week-ends",
|
|
384
|
+
yourName: "votre-nom",
|
|
385
|
+
zoomDescription: "Créer automatiquement une réunion par réservation",
|
|
386
|
+
zoomNotConfigured: "Demandez à votre administrateur de définir ZOOM_CLIENT_ID et ZOOM_CLIENT_SECRET pour activer OAuth Zoom.",
|
|
387
|
+
providerNotConfigured: "{{provider}} n'est pas configuré sur ce serveur.",
|
|
388
|
+
providerNeedsCredentials: "{{provider}} nécessite des identifiants OAuth serveur avant utilisation.",
|
|
389
|
+
},
|
|
390
|
+
"de-DE": {
|
|
391
|
+
add: "Hinzufügen",
|
|
392
|
+
addField: "Feld hinzufügen",
|
|
393
|
+
addEventTypeDescription: "Erstelle einen neuen buchbaren Ereignistyp.",
|
|
394
|
+
addEventTypeTitle: "Neuen Ereignistyp hinzufügen",
|
|
395
|
+
availableLeft: "übrig",
|
|
396
|
+
bookersChooseBetween: "Buchende wählen zwischen: {{durations}}",
|
|
397
|
+
cancel: "Abbrechen",
|
|
398
|
+
clickToEditSlug: "Zum Bearbeiten des Slugs klicken",
|
|
399
|
+
clickToEditUsername: "Zum Bearbeiten des Benutzernamens klicken",
|
|
400
|
+
checkbox: "Kontrollkästchen",
|
|
401
|
+
company: "Unternehmen",
|
|
402
|
+
companyPlaceholder: "Name deines Unternehmens",
|
|
403
|
+
conferencing: "Konferenz",
|
|
404
|
+
connectGoogle: "Google verbinden",
|
|
405
|
+
connectGoogleCalendar: "Google Kalender verbinden",
|
|
406
|
+
connectGoogleCalendarDescription: "Meet-Links werden automatisch erstellt, wenn das Kalenderereignis angelegt wird.",
|
|
407
|
+
connected: "Verbunden",
|
|
408
|
+
connectZoom: "Zoom verbinden",
|
|
409
|
+
connectZoomAccount: "Verbinde dein Zoom-Konto",
|
|
410
|
+
connectZoomAccountDescription: "Wir erstellen für jede Buchung ein echtes Zoom-Meeting; kein persönlicher Link nötig.",
|
|
411
|
+
continue: "Fortfahren",
|
|
412
|
+
customFields: "Benutzerdefinierte Felder",
|
|
413
|
+
customFieldsEmpty: "Füge benutzerdefinierte Felder hinzu, um Informationen zu sammeln, z. B. LinkedIn-Profil, Unternehmen oder Telefonnummer.",
|
|
414
|
+
customLink: "Benutzerdefinierter Link",
|
|
415
|
+
customLinkDescription: "Beliebige Meeting-URL einfügen",
|
|
416
|
+
description: "Beschreibung",
|
|
417
|
+
dropdown: "Dropdown",
|
|
418
|
+
duration: "Dauer",
|
|
419
|
+
email: "E-Mail",
|
|
420
|
+
errorMessage: "Fehlermeldung",
|
|
421
|
+
errorMessageHint: "(wird angezeigt, wenn das Muster nicht passt)",
|
|
422
|
+
everyDay: "Jeden Tag",
|
|
423
|
+
fieldLabel: "Feldbezeichnung",
|
|
424
|
+
googleMeet: "Google Meet",
|
|
425
|
+
googleMeetDescription: "Meet-Link automatisch erstellen",
|
|
426
|
+
inPersonOrOther: "Vor Ort oder anderes",
|
|
427
|
+
label: "Bezeichnung",
|
|
428
|
+
linkedInProfile: "LinkedIn-Profil",
|
|
429
|
+
linkedInUrlError: "Bitte gib eine gültige LinkedIn-Profil-URL ein",
|
|
430
|
+
longText: "Langer Text",
|
|
431
|
+
meeting: "meeting",
|
|
432
|
+
meetingUrl: "Meeting-URL",
|
|
433
|
+
minutes: "Minuten",
|
|
434
|
+
minAbbrev: "Min.",
|
|
435
|
+
monday: "Montag",
|
|
436
|
+
mon: "Mo",
|
|
437
|
+
tuesday: "Dienstag",
|
|
438
|
+
tue: "Di",
|
|
439
|
+
wednesday: "Mittwoch",
|
|
440
|
+
wed: "Mi",
|
|
441
|
+
thursday: "Donnerstag",
|
|
442
|
+
thu: "Do",
|
|
443
|
+
friday: "Freitag",
|
|
444
|
+
fri: "Fr",
|
|
445
|
+
saturday: "Samstag",
|
|
446
|
+
sat: "Sa",
|
|
447
|
+
sunday: "Sonntag",
|
|
448
|
+
sun: "So",
|
|
449
|
+
moveDown: "Nach unten",
|
|
450
|
+
moveUp: "Nach oben",
|
|
451
|
+
newField: "Neues Feld",
|
|
452
|
+
noAvailabilitySet: "Keine Verfügbarkeit festgelegt",
|
|
453
|
+
noConferencing: "Keine Konferenz",
|
|
454
|
+
onePerLine: "(eine pro Zeile)",
|
|
455
|
+
optional: "Optional",
|
|
456
|
+
options: "Optionen",
|
|
457
|
+
pattern: "Muster",
|
|
458
|
+
phone: "Telefon",
|
|
459
|
+
phoneNumber: "Telefonnummer",
|
|
460
|
+
placeholder: "Platzhalter",
|
|
461
|
+
placeholderText: "Platzhaltertext",
|
|
462
|
+
presets: "Voreinstellungen",
|
|
463
|
+
regexOptional: "(Regex, optional)",
|
|
464
|
+
removeField: "Feld entfernen",
|
|
465
|
+
required: "Erforderlich",
|
|
466
|
+
saving: "Speichern...",
|
|
467
|
+
shortText: "Kurztext",
|
|
468
|
+
shortDescriptionPlaceholder: "Eine kurze Beschreibung, die andere sehen.",
|
|
469
|
+
title: "Titel",
|
|
470
|
+
to: "bis",
|
|
471
|
+
toggleDay: "{{day}} umschalten",
|
|
472
|
+
type: "Typ",
|
|
473
|
+
unavailable: "Nicht verfügbar",
|
|
474
|
+
url: "URL",
|
|
475
|
+
validationPattern: "Validierungsmuster",
|
|
476
|
+
website: "Website",
|
|
477
|
+
weekdays: "Wochentage",
|
|
478
|
+
weekends: "Wochenenden",
|
|
479
|
+
yourName: "dein-name",
|
|
480
|
+
zoomDescription: "Pro Buchung automatisch ein Meeting erstellen",
|
|
481
|
+
zoomNotConfigured: "Bitte deinen Admin, ZOOM_CLIENT_ID und ZOOM_CLIENT_SECRET zu setzen, um Zoom OAuth zu aktivieren.",
|
|
482
|
+
providerNotConfigured: "{{provider}} ist auf diesem Server nicht konfiguriert.",
|
|
483
|
+
providerNeedsCredentials: "{{provider}} benötigt Server-OAuth-Zugangsdaten, bevor es genutzt werden kann.",
|
|
484
|
+
},
|
|
485
|
+
"ja-JP": {
|
|
486
|
+
add: "追加",
|
|
487
|
+
addField: "フィールドを追加",
|
|
488
|
+
addEventTypeDescription: "予約できる新しいイベントタイプを作成します。",
|
|
489
|
+
addEventTypeTitle: "新しいイベントタイプを追加",
|
|
490
|
+
availableLeft: "残り",
|
|
491
|
+
bookersChooseBetween: "予約者が選べる時間: {{durations}}",
|
|
492
|
+
cancel: "キャンセル",
|
|
493
|
+
clickToEditSlug: "クリックしてスラッグを編集",
|
|
494
|
+
clickToEditUsername: "クリックしてユーザー名を編集",
|
|
495
|
+
checkbox: "チェックボックス",
|
|
496
|
+
company: "会社",
|
|
497
|
+
companyPlaceholder: "会社名",
|
|
498
|
+
conferencing: "会議",
|
|
499
|
+
connectGoogle: "Google を接続",
|
|
500
|
+
connectGoogleCalendar: "Google カレンダーを接続",
|
|
501
|
+
connectGoogleCalendarDescription: "カレンダーイベントの作成時に Meet リンクが自動生成されます。",
|
|
502
|
+
connected: "接続済み",
|
|
503
|
+
connectZoom: "Zoom を接続",
|
|
504
|
+
connectZoomAccount: "Zoom アカウントを接続",
|
|
505
|
+
connectZoomAccountDescription: "各予約ごとに実際の Zoom 会議を作成します。個人リンクを貼る必要はありません。",
|
|
506
|
+
continue: "続行",
|
|
507
|
+
customFields: "カスタムフィールド",
|
|
508
|
+
customFieldsEmpty: "LinkedIn プロフィール、会社名、電話番号などを収集するカスタムフィールドを追加します。",
|
|
509
|
+
customLink: "カスタムリンク",
|
|
510
|
+
customLinkDescription: "任意の会議 URL を貼り付け",
|
|
511
|
+
description: "説明",
|
|
512
|
+
dropdown: "ドロップダウン",
|
|
513
|
+
duration: "所要時間",
|
|
514
|
+
email: "メール",
|
|
515
|
+
errorMessage: "エラーメッセージ",
|
|
516
|
+
errorMessageHint: "(パターンに一致しない場合に表示)",
|
|
517
|
+
everyDay: "毎日",
|
|
518
|
+
fieldLabel: "フィールドラベル",
|
|
519
|
+
googleMeet: "Google Meet",
|
|
520
|
+
googleMeetDescription: "Meet リンクを自動生成",
|
|
521
|
+
inPersonOrOther: "対面またはその他",
|
|
522
|
+
label: "ラベル",
|
|
523
|
+
linkedInProfile: "LinkedIn プロフィール",
|
|
524
|
+
linkedInUrlError: "有効な LinkedIn プロフィール URL を入力してください",
|
|
525
|
+
longText: "長文",
|
|
526
|
+
meeting: "meeting",
|
|
527
|
+
meetingUrl: "会議 URL",
|
|
528
|
+
minutes: "分",
|
|
529
|
+
minAbbrev: "分",
|
|
530
|
+
monday: "月曜日",
|
|
531
|
+
mon: "月",
|
|
532
|
+
tuesday: "火曜日",
|
|
533
|
+
tue: "火",
|
|
534
|
+
wednesday: "水曜日",
|
|
535
|
+
wed: "水",
|
|
536
|
+
thursday: "木曜日",
|
|
537
|
+
thu: "木",
|
|
538
|
+
friday: "金曜日",
|
|
539
|
+
fri: "金",
|
|
540
|
+
saturday: "土曜日",
|
|
541
|
+
sat: "土",
|
|
542
|
+
sunday: "日曜日",
|
|
543
|
+
sun: "日",
|
|
544
|
+
moveDown: "下へ移動",
|
|
545
|
+
moveUp: "上へ移動",
|
|
546
|
+
newField: "新しいフィールド",
|
|
547
|
+
noAvailabilitySet: "空き時間が設定されていません",
|
|
548
|
+
noConferencing: "会議なし",
|
|
549
|
+
onePerLine: "(1 行に 1 つ)",
|
|
550
|
+
optional: "任意",
|
|
551
|
+
options: "選択肢",
|
|
552
|
+
pattern: "パターン",
|
|
553
|
+
phone: "電話",
|
|
554
|
+
phoneNumber: "電話番号",
|
|
555
|
+
placeholder: "プレースホルダー",
|
|
556
|
+
placeholderText: "プレースホルダー文",
|
|
557
|
+
presets: "プリセット",
|
|
558
|
+
regexOptional: "(正規表現、任意)",
|
|
559
|
+
removeField: "フィールドを削除",
|
|
560
|
+
required: "必須",
|
|
561
|
+
saving: "保存中...",
|
|
562
|
+
shortText: "短文",
|
|
563
|
+
shortDescriptionPlaceholder: "予約者に表示される短い説明。",
|
|
564
|
+
title: "タイトル",
|
|
565
|
+
to: "から",
|
|
566
|
+
toggleDay: "{{day}} を切り替え",
|
|
567
|
+
type: "種類",
|
|
568
|
+
unavailable: "利用不可",
|
|
569
|
+
url: "URL",
|
|
570
|
+
validationPattern: "検証パターン",
|
|
571
|
+
website: "Web サイト",
|
|
572
|
+
weekdays: "平日",
|
|
573
|
+
weekends: "週末",
|
|
574
|
+
yourName: "your-name",
|
|
575
|
+
zoomDescription: "予約ごとに会議を自動作成",
|
|
576
|
+
zoomNotConfigured: "Zoom OAuth を有効にするには、管理者に ZOOM_CLIENT_ID と ZOOM_CLIENT_SECRET の設定を依頼してください。",
|
|
577
|
+
providerNotConfigured: "{{provider}} はこのサーバーで設定されていません。",
|
|
578
|
+
providerNeedsCredentials: "{{provider}} を使うにはサーバー OAuth 認証情報が必要です。",
|
|
579
|
+
},
|
|
580
|
+
"ko-KR": {
|
|
581
|
+
add: "추가",
|
|
582
|
+
addField: "필드 추가",
|
|
583
|
+
addEventTypeDescription: "예약할 수 있는 새 이벤트 유형을 만듭니다.",
|
|
584
|
+
addEventTypeTitle: "새 이벤트 유형 추가",
|
|
585
|
+
availableLeft: "남음",
|
|
586
|
+
bookersChooseBetween: "예약자는 다음 중에서 선택합니다: {{durations}}",
|
|
587
|
+
cancel: "취소",
|
|
588
|
+
clickToEditSlug: "클릭하여 슬러그 편집",
|
|
589
|
+
clickToEditUsername: "클릭하여 사용자 이름 편집",
|
|
590
|
+
checkbox: "체크박스",
|
|
591
|
+
company: "회사",
|
|
592
|
+
companyPlaceholder: "회사 이름",
|
|
593
|
+
conferencing: "회의",
|
|
594
|
+
connectGoogle: "Google 연결",
|
|
595
|
+
connectGoogleCalendar: "Google Calendar 연결",
|
|
596
|
+
connectGoogleCalendarDescription: "캘린더 이벤트가 생성될 때 Meet 링크가 자동 생성됩니다.",
|
|
597
|
+
connected: "연결됨",
|
|
598
|
+
connectZoom: "Zoom 연결",
|
|
599
|
+
connectZoomAccount: "Zoom 계정 연결",
|
|
600
|
+
connectZoomAccountDescription: "예약마다 실제 Zoom 회의를 생성하므로 개인 링크를 붙여 넣을 필요가 없습니다.",
|
|
601
|
+
continue: "계속",
|
|
602
|
+
customFields: "사용자 지정 필드",
|
|
603
|
+
customFieldsEmpty: "LinkedIn 프로필, 회사명, 전화번호 등 예약자 정보를 수집할 사용자 지정 필드를 추가하세요.",
|
|
604
|
+
customLink: "사용자 지정 링크",
|
|
605
|
+
customLinkDescription: "회의 URL 붙여넣기",
|
|
606
|
+
description: "설명",
|
|
607
|
+
dropdown: "드롭다운",
|
|
608
|
+
duration: "시간",
|
|
609
|
+
email: "이메일",
|
|
610
|
+
errorMessage: "오류 메시지",
|
|
611
|
+
errorMessageHint: "(패턴이 일치하지 않을 때 표시)",
|
|
612
|
+
everyDay: "매일",
|
|
613
|
+
fieldLabel: "필드 라벨",
|
|
614
|
+
googleMeet: "Google Meet",
|
|
615
|
+
googleMeetDescription: "Meet 링크 자동 생성",
|
|
616
|
+
inPersonOrOther: "대면 또는 기타",
|
|
617
|
+
label: "라벨",
|
|
618
|
+
linkedInProfile: "LinkedIn 프로필",
|
|
619
|
+
linkedInUrlError: "유효한 LinkedIn 프로필 URL을 입력하세요",
|
|
620
|
+
longText: "긴 텍스트",
|
|
621
|
+
meeting: "meeting",
|
|
622
|
+
meetingUrl: "회의 URL",
|
|
623
|
+
minutes: "분",
|
|
624
|
+
minAbbrev: "분",
|
|
625
|
+
monday: "월요일",
|
|
626
|
+
mon: "월",
|
|
627
|
+
tuesday: "화요일",
|
|
628
|
+
tue: "화",
|
|
629
|
+
wednesday: "수요일",
|
|
630
|
+
wed: "수",
|
|
631
|
+
thursday: "목요일",
|
|
632
|
+
thu: "목",
|
|
633
|
+
friday: "금요일",
|
|
634
|
+
fri: "금",
|
|
635
|
+
saturday: "토요일",
|
|
636
|
+
sat: "토",
|
|
637
|
+
sunday: "일요일",
|
|
638
|
+
sun: "일",
|
|
639
|
+
moveDown: "아래로 이동",
|
|
640
|
+
moveUp: "위로 이동",
|
|
641
|
+
newField: "새 필드",
|
|
642
|
+
noAvailabilitySet: "예약 가능 시간이 설정되지 않음",
|
|
643
|
+
noConferencing: "회의 없음",
|
|
644
|
+
onePerLine: "(한 줄에 하나)",
|
|
645
|
+
optional: "선택 사항",
|
|
646
|
+
options: "옵션",
|
|
647
|
+
pattern: "패턴",
|
|
648
|
+
phone: "전화",
|
|
649
|
+
phoneNumber: "전화번호",
|
|
650
|
+
placeholder: "플레이스홀더",
|
|
651
|
+
placeholderText: "플레이스홀더 텍스트",
|
|
652
|
+
presets: "프리셋",
|
|
653
|
+
regexOptional: "(정규식, 선택 사항)",
|
|
654
|
+
removeField: "필드 제거",
|
|
655
|
+
required: "필수",
|
|
656
|
+
saving: "저장 중...",
|
|
657
|
+
shortText: "짧은 텍스트",
|
|
658
|
+
shortDescriptionPlaceholder: "예약자에게 표시될 짧은 설명입니다.",
|
|
659
|
+
title: "제목",
|
|
660
|
+
to: "부터",
|
|
661
|
+
toggleDay: "{{day}} 전환",
|
|
662
|
+
type: "유형",
|
|
663
|
+
unavailable: "사용 불가",
|
|
664
|
+
url: "URL",
|
|
665
|
+
validationPattern: "검증 패턴",
|
|
666
|
+
website: "웹사이트",
|
|
667
|
+
weekdays: "평일",
|
|
668
|
+
weekends: "주말",
|
|
669
|
+
yourName: "your-name",
|
|
670
|
+
zoomDescription: "예약마다 회의 자동 생성",
|
|
671
|
+
zoomNotConfigured: "Zoom OAuth를 사용하려면 관리자에게 ZOOM_CLIENT_ID 및 ZOOM_CLIENT_SECRET 설정을 요청하세요.",
|
|
672
|
+
providerNotConfigured: "{{provider}}이(가) 이 서버에 구성되어 있지 않습니다.",
|
|
673
|
+
providerNeedsCredentials: "{{provider}}을(를) 사용하려면 서버 OAuth 자격 증명이 필요합니다.",
|
|
674
|
+
},
|
|
675
|
+
"pt-BR": {
|
|
676
|
+
add: "Adicionar",
|
|
677
|
+
addField: "Adicionar campo",
|
|
678
|
+
addEventTypeDescription: "Crie um novo tipo de evento para reservas.",
|
|
679
|
+
addEventTypeTitle: "Adicionar novo tipo de evento",
|
|
680
|
+
availableLeft: "restantes",
|
|
681
|
+
bookersChooseBetween: "Quem reservar escolherá entre: {{durations}}",
|
|
682
|
+
cancel: "Cancelar",
|
|
683
|
+
clickToEditSlug: "Clique para editar o slug",
|
|
684
|
+
clickToEditUsername: "Clique para editar o usuário",
|
|
685
|
+
checkbox: "Caixa de seleção",
|
|
686
|
+
company: "Empresa",
|
|
687
|
+
companyPlaceholder: "Nome da sua empresa",
|
|
688
|
+
conferencing: "Conferência",
|
|
689
|
+
connectGoogle: "Conectar Google",
|
|
690
|
+
connectGoogleCalendar: "Conectar Google Agenda",
|
|
691
|
+
connectGoogleCalendarDescription: "Links do Meet são gerados automaticamente quando o evento é criado.",
|
|
692
|
+
connected: "Conectado",
|
|
693
|
+
connectZoom: "Conectar Zoom",
|
|
694
|
+
connectZoomAccount: "Conecte sua conta Zoom",
|
|
695
|
+
connectZoomAccountDescription: "Criaremos uma reunião real do Zoom para cada reserva; não é preciso colar um link pessoal.",
|
|
696
|
+
continue: "Continuar",
|
|
697
|
+
customFields: "Campos personalizados",
|
|
698
|
+
customFieldsEmpty: "Adicione campos personalizados para coletar informações, como perfil do LinkedIn, empresa ou telefone.",
|
|
699
|
+
customLink: "Link personalizado",
|
|
700
|
+
customLinkDescription: "Cole qualquer URL de reunião",
|
|
701
|
+
description: "Descrição",
|
|
702
|
+
dropdown: "Menu suspenso",
|
|
703
|
+
duration: "Duração",
|
|
704
|
+
email: "E-mail",
|
|
705
|
+
errorMessage: "Mensagem de erro",
|
|
706
|
+
errorMessageHint: "(mostrada quando o padrão não corresponde)",
|
|
707
|
+
everyDay: "Todos os dias",
|
|
708
|
+
fieldLabel: "Rótulo do campo",
|
|
709
|
+
googleMeet: "Google Meet",
|
|
710
|
+
googleMeetDescription: "Gerar link do Meet automaticamente",
|
|
711
|
+
inPersonOrOther: "Presencial ou outro",
|
|
712
|
+
label: "Rótulo",
|
|
713
|
+
linkedInProfile: "Perfil do LinkedIn",
|
|
714
|
+
linkedInUrlError: "Insira uma URL válida de perfil do LinkedIn",
|
|
715
|
+
longText: "Texto longo",
|
|
716
|
+
meeting: "reuniao",
|
|
717
|
+
meetingUrl: "URL da reunião",
|
|
718
|
+
minutes: "minutos",
|
|
719
|
+
minAbbrev: "min",
|
|
720
|
+
monday: "Segunda-feira",
|
|
721
|
+
mon: "Seg",
|
|
722
|
+
tuesday: "Terça-feira",
|
|
723
|
+
tue: "Ter",
|
|
724
|
+
wednesday: "Quarta-feira",
|
|
725
|
+
wed: "Qua",
|
|
726
|
+
thursday: "Quinta-feira",
|
|
727
|
+
thu: "Qui",
|
|
728
|
+
friday: "Sexta-feira",
|
|
729
|
+
fri: "Sex",
|
|
730
|
+
saturday: "Sábado",
|
|
731
|
+
sat: "Sáb",
|
|
732
|
+
sunday: "Domingo",
|
|
733
|
+
sun: "Dom",
|
|
734
|
+
moveDown: "Mover para baixo",
|
|
735
|
+
moveUp: "Mover para cima",
|
|
736
|
+
newField: "Novo campo",
|
|
737
|
+
noAvailabilitySet: "Nenhuma disponibilidade definida",
|
|
738
|
+
noConferencing: "Sem conferência",
|
|
739
|
+
onePerLine: "(um por linha)",
|
|
740
|
+
optional: "Opcional",
|
|
741
|
+
options: "Opções",
|
|
742
|
+
pattern: "Padrão",
|
|
743
|
+
phone: "Telefone",
|
|
744
|
+
phoneNumber: "Número de telefone",
|
|
745
|
+
placeholder: "Placeholder",
|
|
746
|
+
placeholderText: "Texto de placeholder",
|
|
747
|
+
presets: "Predefinições",
|
|
748
|
+
regexOptional: "(regex, opcional)",
|
|
749
|
+
removeField: "Remover campo",
|
|
750
|
+
required: "Obrigatório",
|
|
751
|
+
saving: "Salvando...",
|
|
752
|
+
shortText: "Texto curto",
|
|
753
|
+
shortDescriptionPlaceholder: "Uma breve descrição que as pessoas verão.",
|
|
754
|
+
title: "Título",
|
|
755
|
+
to: "até",
|
|
756
|
+
toggleDay: "Alternar {{day}}",
|
|
757
|
+
type: "Tipo",
|
|
758
|
+
unavailable: "Indisponível",
|
|
759
|
+
url: "URL",
|
|
760
|
+
validationPattern: "Padrão de validação",
|
|
761
|
+
website: "Site",
|
|
762
|
+
weekdays: "Dias úteis",
|
|
763
|
+
weekends: "Fins de semana",
|
|
764
|
+
yourName: "seu-nome",
|
|
765
|
+
zoomDescription: "Criar uma reunião por reserva automaticamente",
|
|
766
|
+
zoomNotConfigured: "Peça ao admin para definir ZOOM_CLIENT_ID e ZOOM_CLIENT_SECRET para ativar OAuth do Zoom.",
|
|
767
|
+
providerNotConfigured: "{{provider}} não está configurado neste servidor.",
|
|
768
|
+
providerNeedsCredentials: "{{provider}} precisa de credenciais OAuth do servidor antes de ser usado.",
|
|
769
|
+
},
|
|
770
|
+
"hi-IN": {
|
|
771
|
+
add: "जोड़ें",
|
|
772
|
+
addField: "फ़ील्ड जोड़ें",
|
|
773
|
+
addEventTypeDescription: "लोगों के बुक करने के लिए नया इवेंट प्रकार बनाएं।",
|
|
774
|
+
addEventTypeTitle: "नया इवेंट प्रकार जोड़ें",
|
|
775
|
+
availableLeft: "बाकी",
|
|
776
|
+
bookersChooseBetween: "बुक करने वाले इनमें से चुनेंगे: {{durations}}",
|
|
777
|
+
cancel: "रद्द करें",
|
|
778
|
+
clickToEditSlug: "स्लग संपादित करने के लिए क्लिक करें",
|
|
779
|
+
clickToEditUsername: "उपयोगकर्ता नाम संपादित करने के लिए क्लिक करें",
|
|
780
|
+
checkbox: "चेकबॉक्स",
|
|
781
|
+
company: "कंपनी",
|
|
782
|
+
companyPlaceholder: "आपकी कंपनी का नाम",
|
|
783
|
+
conferencing: "कॉन्फ़्रेंसिंग",
|
|
784
|
+
connectGoogle: "Google कनेक्ट करें",
|
|
785
|
+
connectGoogleCalendar: "Google Calendar कनेक्ट करें",
|
|
786
|
+
connectGoogleCalendarDescription: "कैलेंडर इवेंट बनाते समय Meet लिंक अपने-आप बनते हैं।",
|
|
787
|
+
connected: "कनेक्टेड",
|
|
788
|
+
connectZoom: "Zoom कनेक्ट करें",
|
|
789
|
+
connectZoomAccount: "अपना Zoom खाता कनेक्ट करें",
|
|
790
|
+
connectZoomAccountDescription: "हम हर बुकिंग के लिए असली Zoom मीटिंग बनाएंगे; निजी लिंक चिपकाने की ज़रूरत नहीं।",
|
|
791
|
+
continue: "जारी रखें",
|
|
792
|
+
customFields: "कस्टम फ़ील्ड",
|
|
793
|
+
customFieldsEmpty: "बुक करने वालों से जानकारी लेने के लिए कस्टम फ़ील्ड जोड़ें, जैसे LinkedIn प्रोफ़ाइल, कंपनी नाम, फ़ोन नंबर।",
|
|
794
|
+
customLink: "कस्टम लिंक",
|
|
795
|
+
customLinkDescription: "कोई भी मीटिंग URL चिपकाएं",
|
|
796
|
+
description: "विवरण",
|
|
797
|
+
dropdown: "ड्रॉपडाउन",
|
|
798
|
+
duration: "अवधि",
|
|
799
|
+
email: "ईमेल",
|
|
800
|
+
errorMessage: "त्रुटि संदेश",
|
|
801
|
+
errorMessageHint: "(पैटर्न मेल न खाने पर दिखाया जाता है)",
|
|
802
|
+
everyDay: "हर दिन",
|
|
803
|
+
fieldLabel: "फ़ील्ड लेबल",
|
|
804
|
+
googleMeet: "Google Meet",
|
|
805
|
+
googleMeetDescription: "Meet लिंक अपने-आप बनाएं",
|
|
806
|
+
inPersonOrOther: "व्यक्तिगत या अन्य",
|
|
807
|
+
label: "लेबल",
|
|
808
|
+
linkedInProfile: "LinkedIn प्रोफ़ाइल",
|
|
809
|
+
linkedInUrlError: "मान्य LinkedIn प्रोफ़ाइल URL दर्ज करें",
|
|
810
|
+
longText: "लंबा टेक्स्ट",
|
|
811
|
+
meeting: "meeting",
|
|
812
|
+
meetingUrl: "मीटिंग URL",
|
|
813
|
+
minutes: "मिनट",
|
|
814
|
+
minAbbrev: "मिनट",
|
|
815
|
+
monday: "सोमवार",
|
|
816
|
+
mon: "सोम",
|
|
817
|
+
tuesday: "मंगलवार",
|
|
818
|
+
tue: "मंगल",
|
|
819
|
+
wednesday: "बुधवार",
|
|
820
|
+
wed: "बुध",
|
|
821
|
+
thursday: "गुरुवार",
|
|
822
|
+
thu: "गुरु",
|
|
823
|
+
friday: "शुक्रवार",
|
|
824
|
+
fri: "शुक्र",
|
|
825
|
+
saturday: "शनिवार",
|
|
826
|
+
sat: "शनि",
|
|
827
|
+
sunday: "रविवार",
|
|
828
|
+
sun: "रवि",
|
|
829
|
+
moveDown: "नीचे ले जाएं",
|
|
830
|
+
moveUp: "ऊपर ले जाएं",
|
|
831
|
+
newField: "नया फ़ील्ड",
|
|
832
|
+
noAvailabilitySet: "कोई उपलब्धता सेट नहीं",
|
|
833
|
+
noConferencing: "कोई कॉन्फ़्रेंसिंग नहीं",
|
|
834
|
+
onePerLine: "(प्रति पंक्ति एक)",
|
|
835
|
+
optional: "वैकल्पिक",
|
|
836
|
+
options: "विकल्प",
|
|
837
|
+
pattern: "पैटर्न",
|
|
838
|
+
phone: "फ़ोन",
|
|
839
|
+
phoneNumber: "फ़ोन नंबर",
|
|
840
|
+
placeholder: "प्लेसहोल्डर",
|
|
841
|
+
placeholderText: "प्लेसहोल्डर टेक्स्ट",
|
|
842
|
+
presets: "प्रीसेट",
|
|
843
|
+
regexOptional: "(regex, वैकल्पिक)",
|
|
844
|
+
removeField: "फ़ील्ड हटाएं",
|
|
845
|
+
required: "आवश्यक",
|
|
846
|
+
saving: "सहेजा जा रहा है...",
|
|
847
|
+
shortText: "छोटा टेक्स्ट",
|
|
848
|
+
shortDescriptionPlaceholder: "लोगों को दिखने वाला छोटा विवरण।",
|
|
849
|
+
title: "शीर्षक",
|
|
850
|
+
to: "से",
|
|
851
|
+
toggleDay: "{{day}} टॉगल करें",
|
|
852
|
+
type: "प्रकार",
|
|
853
|
+
unavailable: "उपलब्ध नहीं",
|
|
854
|
+
url: "URL",
|
|
855
|
+
validationPattern: "सत्यापन पैटर्न",
|
|
856
|
+
website: "वेबसाइट",
|
|
857
|
+
weekdays: "सप्ताह के दिन",
|
|
858
|
+
weekends: "सप्ताहांत",
|
|
859
|
+
yourName: "your-name",
|
|
860
|
+
zoomDescription: "हर बुकिंग के लिए मीटिंग अपने-आप बनाएं",
|
|
861
|
+
zoomNotConfigured: "Zoom OAuth सक्षम करने के लिए अपने admin से ZOOM_CLIENT_ID और ZOOM_CLIENT_SECRET सेट करने को कहें।",
|
|
862
|
+
providerNotConfigured: "{{provider}} इस सर्वर पर कॉन्फ़िगर नहीं है।",
|
|
863
|
+
providerNeedsCredentials: "{{provider}} का उपयोग करने से पहले सर्वर OAuth credentials चाहिए।",
|
|
864
|
+
},
|
|
865
|
+
"ar-SA": {
|
|
866
|
+
add: "إضافة",
|
|
867
|
+
addField: "إضافة حقل",
|
|
868
|
+
addEventTypeDescription: "أنشئ نوع حدث جديدا ليحجزه الأشخاص.",
|
|
869
|
+
addEventTypeTitle: "إضافة نوع حدث جديد",
|
|
870
|
+
availableLeft: "متبقية",
|
|
871
|
+
bookersChooseBetween: "سيختار الحاجزون بين: {{durations}}",
|
|
872
|
+
cancel: "إلغاء",
|
|
873
|
+
clickToEditSlug: "انقر لتعديل المعرّف",
|
|
874
|
+
clickToEditUsername: "انقر لتعديل اسم المستخدم",
|
|
875
|
+
checkbox: "مربع اختيار",
|
|
876
|
+
company: "الشركة",
|
|
877
|
+
companyPlaceholder: "اسم شركتك",
|
|
878
|
+
conferencing: "المؤتمرات",
|
|
879
|
+
connectGoogle: "ربط Google",
|
|
880
|
+
connectGoogleCalendar: "ربط Google Calendar",
|
|
881
|
+
connectGoogleCalendarDescription: "يتم إنشاء روابط Meet تلقائيا عند إنشاء حدث التقويم.",
|
|
882
|
+
connected: "متصل",
|
|
883
|
+
connectZoom: "ربط Zoom",
|
|
884
|
+
connectZoomAccount: "اربط حساب Zoom الخاص بك",
|
|
885
|
+
connectZoomAccountDescription: "سننشئ اجتماع Zoom حقيقيا لكل حجز؛ لا حاجة للصق رابط شخصي.",
|
|
886
|
+
continue: "متابعة",
|
|
887
|
+
customFields: "حقول مخصصة",
|
|
888
|
+
customFieldsEmpty: "أضف حقولا مخصصة لجمع معلومات من الحاجزين، مثل ملف LinkedIn أو اسم الشركة أو رقم الهاتف.",
|
|
889
|
+
customLink: "رابط مخصص",
|
|
890
|
+
customLinkDescription: "الصق أي عنوان URL للاجتماع",
|
|
891
|
+
description: "الوصف",
|
|
892
|
+
dropdown: "قائمة منسدلة",
|
|
893
|
+
duration: "المدة",
|
|
894
|
+
email: "البريد الإلكتروني",
|
|
895
|
+
errorMessage: "رسالة الخطأ",
|
|
896
|
+
errorMessageHint: "(تظهر عندما لا يطابق النمط)",
|
|
897
|
+
everyDay: "كل يوم",
|
|
898
|
+
fieldLabel: "تسمية الحقل",
|
|
899
|
+
googleMeet: "Google Meet",
|
|
900
|
+
googleMeetDescription: "إنشاء رابط Meet تلقائيا",
|
|
901
|
+
inPersonOrOther: "حضوري أو غير ذلك",
|
|
902
|
+
label: "التسمية",
|
|
903
|
+
linkedInProfile: "ملف LinkedIn",
|
|
904
|
+
linkedInUrlError: "أدخل عنوان URL صالحا لملف LinkedIn",
|
|
905
|
+
longText: "نص طويل",
|
|
906
|
+
meeting: "meeting",
|
|
907
|
+
meetingUrl: "عنوان URL للاجتماع",
|
|
908
|
+
minutes: "دقائق",
|
|
909
|
+
minAbbrev: "د",
|
|
910
|
+
monday: "الاثنين",
|
|
911
|
+
mon: "اثن",
|
|
912
|
+
tuesday: "الثلاثاء",
|
|
913
|
+
tue: "ثلا",
|
|
914
|
+
wednesday: "الأربعاء",
|
|
915
|
+
wed: "أرب",
|
|
916
|
+
thursday: "الخميس",
|
|
917
|
+
thu: "خمي",
|
|
918
|
+
friday: "الجمعة",
|
|
919
|
+
fri: "جمع",
|
|
920
|
+
saturday: "السبت",
|
|
921
|
+
sat: "سبت",
|
|
922
|
+
sunday: "الأحد",
|
|
923
|
+
sun: "أحد",
|
|
924
|
+
moveDown: "نقل لأسفل",
|
|
925
|
+
moveUp: "نقل لأعلى",
|
|
926
|
+
newField: "حقل جديد",
|
|
927
|
+
noAvailabilitySet: "لم يتم ضبط أي توفر",
|
|
928
|
+
noConferencing: "بلا مؤتمر",
|
|
929
|
+
onePerLine: "(واحد في كل سطر)",
|
|
930
|
+
optional: "اختياري",
|
|
931
|
+
options: "الخيارات",
|
|
932
|
+
pattern: "النمط",
|
|
933
|
+
phone: "الهاتف",
|
|
934
|
+
phoneNumber: "رقم الهاتف",
|
|
935
|
+
placeholder: "النص البديل",
|
|
936
|
+
placeholderText: "نص بديل",
|
|
937
|
+
presets: "إعدادات مسبقة",
|
|
938
|
+
regexOptional: "(regex، اختياري)",
|
|
939
|
+
removeField: "إزالة الحقل",
|
|
940
|
+
required: "مطلوب",
|
|
941
|
+
saving: "جار الحفظ...",
|
|
942
|
+
shortText: "نص قصير",
|
|
943
|
+
shortDescriptionPlaceholder: "وصف قصير سيراه الأشخاص.",
|
|
944
|
+
title: "العنوان",
|
|
945
|
+
to: "إلى",
|
|
946
|
+
toggleDay: "تبديل {{day}}",
|
|
947
|
+
type: "النوع",
|
|
948
|
+
unavailable: "غير متاح",
|
|
949
|
+
url: "URL",
|
|
950
|
+
validationPattern: "نمط التحقق",
|
|
951
|
+
website: "الموقع الإلكتروني",
|
|
952
|
+
weekdays: "أيام الأسبوع",
|
|
953
|
+
weekends: "عطلات نهاية الأسبوع",
|
|
954
|
+
yourName: "your-name",
|
|
955
|
+
zoomDescription: "إنشاء اجتماع تلقائيا لكل حجز",
|
|
956
|
+
zoomNotConfigured: "اطلب من المسؤول ضبط ZOOM_CLIENT_ID و ZOOM_CLIENT_SECRET لتفعيل Zoom OAuth.",
|
|
957
|
+
providerNotConfigured: "{{provider}} غير مهيأ على هذا الخادم.",
|
|
958
|
+
providerNeedsCredentials: "يحتاج {{provider}} إلى بيانات اعتماد OAuth على الخادم قبل استخدامه.",
|
|
959
|
+
},
|
|
960
|
+
};
|
|
961
|
+
export function schedulingMessage(locale, key, values) {
|
|
962
|
+
const template = translations[locale]?.[key] ??
|
|
963
|
+
translations[DEFAULT_LOCALE]?.[key] ??
|
|
964
|
+
enUS[key];
|
|
965
|
+
return interpolate(template, values);
|
|
966
|
+
}
|
|
967
|
+
export function useSchedulingT() {
|
|
968
|
+
const { locale } = useLocale();
|
|
969
|
+
return (key, values) => schedulingMessage(locale, key, values);
|
|
970
|
+
}
|
|
971
|
+
function interpolate(template, values) {
|
|
972
|
+
if (!values)
|
|
973
|
+
return template;
|
|
974
|
+
return template.replace(/\{\{(\w+)\}\}/g, (_, key) => String(values[key] ?? ""));
|
|
975
|
+
}
|
|
976
|
+
//# sourceMappingURL=i18n.js.map
|