Welcome to mirror list, hosted at ThFree Co, Russian Federation.

translations.py « sun_position - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c50b797cd2eac735e7209f6458f30de003a4cd04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
# SPDX-License-Identifier: GPL-2.0-or-later

# ##### BEGIN AUTOGENERATED I18N SECTION #####
# NOTE: You can safely move around this auto-generated block (with the begin/end markers!),
#       and edit the translations by hand.
#       Just carefully respect the format of the tuple!

# Tuple of tuples:
# ((msgctxt, msgid), (sources, gen_comments), (lang, translation, (is_fuzzy, comments)), ...)
translations_tuple = (
    (("*", ""),
     ((), ()),
     ("fr_FR", "Project-Id-Version: Sun Position 3.1.2 (0)\n",
               (False,
                ("Blender's translation file (po format).",
                 "Copyright (C) 2022 The Blender Foundation.",
                 "This file is distributed under the same license as the Blender package.",
                 "Damien Picard <dam.pic@free.fr>, 2022."))),
    ),
    (("*", "Azimuth and elevation info"),
     (("bpy.types.SunPosAddonPreferences.show_az_el",),
      ()),
     ("fr_FR", "Infos d’azimut et de hauteur",
               (False, ())),
    ),
    (("*", "Show azimuth and solar elevation info"),
     (("bpy.types.SunPosAddonPreferences.show_az_el",),
      ()),
     ("fr_FR", "Afficher les infos d’azimut et de hauteur du soleil",
               (False, ())),
    ),
    (("*", "Daylight savings"),
     (("bpy.types.SunPosAddonPreferences.show_daylight_savings",
       "bpy.types.SunPosProperties.use_daylight_savings"),
      ()),
     ("fr_FR", "Heure d’été",
               (False, ())),
    ),
    (("*", "Show daylight savings time choice"),
     (("bpy.types.SunPosAddonPreferences.show_daylight_savings",),
      ()),
     ("fr_FR", "Afficher l’option de changement d’heure",
               (False, ())),
    ),
    (("*", "D° M' S\""),
     (("bpy.types.SunPosAddonPreferences.show_dms",),
      ()),
     ("fr_FR", "",
               (False, ())),
    ),
    (("*", "Show lat/long degrees, minutes, seconds labels"),
     (("bpy.types.SunPosAddonPreferences.show_dms",),
      ()),
     ("fr_FR", "Afficher les étiquettes de latitude et longitude en degrés, minutes, secondes",
               (False, ())),
    ),
    (("*", "Show North"),
     (("bpy.types.SunPosAddonPreferences.show_north",
       "bpy.types.SunPosProperties.show_north"),
      ()),
     ("fr_FR", "Afficher le nord",
               (False, ())),
    ),
    (("*", "Show north offset choice and slider"),
     (("bpy.types.SunPosAddonPreferences.show_north",),
      ()),
     ("fr_FR", "Afficher l’option et le curseur de décalage du nord",
               (False, ())),
    ),
    (("*", "Refraction"),
     (("bpy.types.SunPosAddonPreferences.show_refraction",),
      ()),
     ("fr_FR", "Réfraction",
               (False, ())),
    ),
    (("*", "Show sun refraction choice"),
     (("bpy.types.SunPosAddonPreferences.show_refraction",),
      ()),
     ("fr_FR", "Afficher l’option de réfraction du soleil",
               (False, ())),
    ),
    (("*", "Sunrise and sunset info"),
     (("bpy.types.SunPosAddonPreferences.show_rise_set",),
      ()),
     ("fr_FR", "Infos de lever et coucher",
               (False, ())),
    ),
    (("*", "Show sunrise and sunset labels"),
     (("bpy.types.SunPosAddonPreferences.show_rise_set",),
      ()),
     ("fr_FR", "Afficher les informations de lever et coucher du soleil",
               (False, ())),
    ),
    (("*", "Time and place presets"),
     (("bpy.types.SunPosAddonPreferences.show_time_place",),
      ()),
     ("fr_FR", "Préréglages d’heure et de lieu",
               (False, ())),
    ),
    (("*", "Show time/place presets"),
     (("bpy.types.SunPosAddonPreferences.show_time_place",),
      ()),
     ("fr_FR", "Afficher les préréglages d’heure et de lieu",
               (False, ())),
    ),
    (("*", "Sun Position"),
     (("bpy.types.Scene.sun_pos_properties",
       "bpy.types.SUNPOS_PT_Panel",
       "Add-on Sun Position info: name"),
      ()),
     ("fr_FR", "Position du Soleil",
               (False, ())),
    ),
    (("*", "Sun Position Settings"),
     (("bpy.types.Scene.sun_pos_properties",),
      ()),
     ("fr_FR", "Options de Position du Soleil",
               (False, ())),
    ),
    (("*", "Sun Position Presets"),
     (("bpy.types.SUNPOS_MT_Presets",),
      ()),
     ("fr_FR", "Préréglages de position du Soleil",
               (False, ())),
    ),
    (("Operator", "Sync Sun to Texture"),
     (("bpy.types.WORLD_OT_sunpos_show_hdr",),
      ()),
     ("fr_FR", "Synchroniser Soleil et texture",
               (False, ())),
    ),
    (("*", "UTC zone"),
     (("bpy.types.SunPosProperties.UTC_zone",),
      ()),
     ("fr_FR", "Fuseau horaire",
               (False, ())),
    ),
    (("*", "Time zone: Difference from Greenwich, England in hours"),
     (("bpy.types.SunPosProperties.UTC_zone",),
      ()),
     ("fr_FR", "Fuseau horaire : différence avec Greenwich, Angleterre, en heures",
               (False, ())),
    ),
    (("*", "Bind Texture to Sun"),
     (("bpy.types.SunPosProperties.bind_to_sun",
       "scripts/addons/sun_position/ui_sun.py:119"),
      ()),
     ("fr_FR", "Lier la texture au Soleil",
               (False, ())),
    ),
    (("*", "If true, Environment texture moves with sun"),
     (("bpy.types.SunPosProperties.bind_to_sun",),
      ()),
     ("fr_FR", "Si actif, la texture d’environnement tourne avec le Soleil",
               (False, ())),
    ),
    (("*", "Enter coordinates"),
     (("bpy.types.SunPosProperties.co_parser",),
      ()),
     ("fr_FR", "Saisir coordonnées",
               (False, ())),
    ),
    (("*", "Enter coordinates from an online map"),
     (("bpy.types.SunPosProperties.co_parser",),
      ()),
     ("fr_FR", "Saisir des coordonnées depuis une carte",
               (False, ())),
    ),
    (("*", "Day"),
     (("bpy.types.SunPosProperties.day",),
      ()),
     ("fr_FR", "Jour",
               (False, ())),
    ),
    (("*", "Day of year"),
     (("bpy.types.SunPosProperties.day_of_year",),
      ()),
     ("fr_FR", "Jour de l’année",
               (False, ())),
    ),
    (("*", "Rotation angle of sun and environment texture"),
     (("bpy.types.SunPosProperties.hdr_azimuth",),
      ()),
     ("fr_FR", "Angle de rotation du Soleil et de la texture d’environnement",
               (False, ())),
    ),
    (("*", "Elevation"),
     (("bpy.types.SunPosProperties.hdr_elevation",),
      ()),
     ("fr_FR", "Hauteur",
               (False, ())),
    ),
    (("*", "Elevation angle of sun"),
     (("bpy.types.SunPosProperties.hdr_elevation",),
      ()),
     ("fr_FR", "Angle de hauteur du Soleil",
               (False, ())),
    ),
    (("*", "Name of texture to use. World nodes must be enabled and color set to Environment Texture"),
     (("bpy.types.SunPosProperties.hdr_texture",),
      ()),
     ("fr_FR", "Nom de la texture à utiliser. Les nœuds de shader du monde doivent être activés, et la couleur utiliser une texture d’environnement",
               (False, ())),
    ),
    (("*", "Latitude"),
     (("bpy.types.SunPosProperties.latitude",),
      ()),
     ("fr_FR", "Latitude",
               (False, ())),
    ),
    (("*", "Latitude: (+) Northern (-) Southern"),
     (("bpy.types.SunPosProperties.latitude",),
      ()),
     ("fr_FR", "Latitude : (+) nord (-) sud",
               (False, ())),
    ),
    (("*", "Longitude"),
     (("bpy.types.SunPosProperties.longitude",),
      ()),
     ("fr_FR", "Longitude",
               (False, ())),
    ),
    (("*", "Longitude: (-) West of Greenwich (+) East of Greenwich"),
     (("bpy.types.SunPosProperties.longitude",),
      ()),
     ("fr_FR", "Longitude : (-) ouest depuis Greenwich (+) est depuis Greenwich",
               (False, ())),
    ),
    (("*", "Month"),
     (("bpy.types.SunPosProperties.month",),
      ()),
     ("fr_FR", "Mois",
               (False, ())),
    ),
    (("*", "North Offset"),
     (("bpy.types.SunPosProperties.north_offset",),
      ()),
     ("fr_FR", "Décalage du nord",
               (False, ())),
    ),
    (("*", "Rotate the scene to choose North direction"),
     (("bpy.types.SunPosProperties.north_offset",),
      ()),
     ("fr_FR", "Tourner la scène pour choisir la direction du nord",
               (False, ())),
    ),
    (("*", "Collection of objects used to visualize sun motion"),
     (("bpy.types.SunPosProperties.object_collection",),
      ()),
     ("fr_FR", "Collection d’objets utilisée pour visualiser la trajectoire du Soleil",
               (False, ())),
    ),
    (("*", "Show object collection as sun motion"),
     (("bpy.types.SunPosProperties.object_collection_type",),
      ()),
     ("fr_FR", "Afficher la collection en tant que",
               (False, ())),
    ),
    (("*", "Analemma"),
     (("bpy.types.SunPosProperties.object_collection_type:'ANALEMMA'",),
      ()),
     ("fr_FR", "Analemme",
               (False, ())),
    ),
    (("*", "Diurnal"),
     (("bpy.types.SunPosProperties.object_collection_type:'DIURNAL'",),
      ()),
     ("fr_FR", "Diurne",
               (False, ())),
    ),
    (("*", "Draw line pointing north"),
     (("bpy.types.SunPosProperties.show_north",),
      ()),
     ("fr_FR", "Afficher une ligne pointant le nord",
               (False, ())),
    ),
    (("*", "Name of sky texture to be used"),
     (("bpy.types.SunPosProperties.sky_texture",),
      ()),
     ("fr_FR", "Nom de la texture à utiliser",
               (False, ())),
    ),
    (("*", "Distance to sun from origin"),
     (("bpy.types.SunPosProperties.sun_distance",),
      ()),
     ("fr_FR", "Distance entre l’origine et le Soleil",
               (False, ())),
    ),
    (("*", "Sun Object"),
     (("bpy.types.SunPosProperties.sun_object",
       "scripts/addons/sun_position/ui_sun.py:101"),
      ()),
     ("fr_FR", "Objet soleil",
               (False, ())),
    ),
    (("*", "Sun object to set in the scene"),
     (("bpy.types.SunPosProperties.sun_object",),
      ()),
     ("fr_FR", "Objet soleil à utiliser dans la scène",
               (False, ())),
    ),
    (("*", "Time of the day"),
     (("bpy.types.SunPosProperties.time",),
      ()),
     ("fr_FR", "Heure du jour",
               (False, ())),
    ),
    (("*", "Time Spread"),
     (("bpy.types.SunPosProperties.time_spread",),
      ()),
     ("fr_FR", "Plage horaire",
               (False, ())),
    ),
    (("*", "Time period in which to spread object collection"),
     (("bpy.types.SunPosProperties.time_spread",),
      ()),
     ("fr_FR", "Plage horaire à visualiser par les objets de la collection",
               (False, ())),
    ),
    (("*", "Usage mode"),
     (("bpy.types.SunPosProperties.usage_mode",),
      ()),
     ("fr_FR", "Mode",
               (False, ())),
    ),
    (("*", "Operate in normal mode or environment texture mode"),
     (("bpy.types.SunPosProperties.usage_mode",),
      ()),
     ("fr_FR", "Passer en mode normal ou texture d’environnement",
               (False, ())),
    ),
    (("*", "Sun + HDR texture"),
     (("bpy.types.SunPosProperties.usage_mode:'HDR'",),
      ()),
     ("fr_FR", "Soleil + texture HDRI",
               (False, ())),
    ),
    (("*", "Use day of year"),
     (("bpy.types.SunPosProperties.use_day_of_year",),
      ()),
     ("fr_FR", "Utiliser le jour de l’année",
               (False, ())),
    ),
    (("*", "Use a single value for day of year"),
     (("bpy.types.SunPosProperties.use_day_of_year",),
      ()),
     ("fr_FR", "Utiliser une seule valeur pour le jour de l’année",
               (False, ())),
    ),
    (("*", "Daylight savings time adds 1 hour to standard time"),
     (("bpy.types.SunPosProperties.use_daylight_savings",),
      ()),
     ("fr_FR", "L’heure d’été ajoute une heure à l’heure standard",
               (False, ())),
    ),
    (("*", "Use refraction"),
     (("bpy.types.SunPosProperties.use_refraction",),
      ()),
     ("fr_FR", "Utiliser la réfraction",
               (False, ())),
    ),
    (("*", "Show apparent sun position due to refraction"),
     (("bpy.types.SunPosProperties.use_refraction",),
      ()),
     ("fr_FR", "Afficher la position apparente du Soleil due à la réfraction",
               (False, ())),
    ),
    (("*", "Year"),
     (("bpy.types.SunPosProperties.year",),
      ()),
     ("fr_FR", "Année",
               (False, ())),
    ),
    (("*", "Could not find 3D View"),
     (("scripts/addons/sun_position/hdr.py:262",),
      ()),
     ("fr_FR", "Impossible de trouver la vue 3D",
               (False, ())),
    ),
    (("*", "Please select an Environment Texture node"),
     (("scripts/addons/sun_position/hdr.py:268",),
      ()),
     ("fr_FR", "Veuillez utiliser un nœud de texture d’environnement",
               (False, ())),
    ),
    (("*", "Unknown projection"),
     (("scripts/addons/sun_position/hdr.py:180",),
      ()),
     ("fr_FR", "Projection inconnue",
               (False, ())),
    ),
    (("*", "Show options or labels:"),
     (("scripts/addons/sun_position/properties.py:242",),
      ()),
     ("fr_FR", "Afficher les options et étiquettes :",
               (False, ())),
    ),
    (("*", "Usage Mode"),
     (("scripts/addons/sun_position/ui_sun.py:71",),
      ()),
     ("fr_FR", "Mode",
               (False, ())),
    ),
    (("*", "Environment Texture"),
     (("scripts/addons/sun_position/ui_sun.py:85",),
      ()),
     ("fr_FR", "Texture d’environnement",
               (False, ())),
    ),
    (("*", "Enter Coordinates"),
     (("scripts/addons/sun_position/ui_sun.py:174",),
      ()),
     ("fr_FR", "Saisir coordonnées",
               (False, ())),
    ),
    (("*", "Local:"),
     (("scripts/addons/sun_position/ui_sun.py:269",),
      ()),
     ("fr_FR", "Locale :",
               (False, ())),
    ),
    (("*", "UTC:"),
     (("scripts/addons/sun_position/ui_sun.py:272",),
      ()),
     ("fr_FR", "UTC : ",
               (False, ())),
    ),
    (("*", "Please select World in the World panel."),
     (("scripts/addons/sun_position/ui_sun.py:95",
       "scripts/addons/sun_position/ui_sun.py:153"),
      ()),
     ("fr_FR", "Veuillez sélectionner le monde dans le panneau Monde",
               (False, ())),
    ),
    (("*", "Release binding"),
     (("scripts/addons/sun_position/ui_sun.py:116",),
      ()),
     ("fr_FR", "Annuler le lien",
               (False, ())),
    ),
    (("*", "Azimuth:"),
     (("scripts/addons/sun_position/ui_sun.py:205",),
      ()),
     ("fr_FR", "Azimut :",
               (False, ())),
    ),
    (("*", "Elevation:"),
     (("scripts/addons/sun_position/ui_sun.py:208",),
      ()),
     ("fr_FR", "Hauteur :",
               (False, ())),
    ),
    (("*", "Sunrise:"),
     (("scripts/addons/sun_position/ui_sun.py:284",),
      ()),
     ("fr_FR", "Lever : ",
               (False, ())),
    ),
    (("*", "Sunset:"),
     (("scripts/addons/sun_position/ui_sun.py:287",),
      ()),
     ("fr_FR", "Coucher : ",
               (False, ())),
    ),
    (("*", "Please activate Use Nodes in the World panel."),
     (("scripts/addons/sun_position/ui_sun.py:92",
       "scripts/addons/sun_position/ui_sun.py:150"),
      ()),
     ("fr_FR", "Veuillez activer Utiliser nœuds dans le panneau Monde",
               (False, ())),
    ),
    (("*", "World > Sun Position"),
     (("Add-on Sun Position info: location",),
      ()),
     ("fr_FR", "Monde > Position du Soleil",
               (False, ())),
    ),
    (("*", "Show sun position with objects and/or sky texture"),
     (("Add-on Sun Position info: description",),
      ()),
     ("fr_FR", "Afficher la position du Soleil avec des objets ou une texture de ciel",
               (False, ())),
    ),
)

translations_dict = {}
for msg in translations_tuple:
    key = msg[0]
    for lang, trans, (is_fuzzy, comments) in msg[2:]:
        if trans and not is_fuzzy:
            translations_dict.setdefault(lang, {})[key] = trans

# ##### END AUTOGENERATED I18N SECTION #####