Compare commits

..

13 Commits

Author SHA1 Message Date
Ariel Rin
bf2e5adf70 Translate django.po in cs_CZ [Manual Sync]
16% of minimum 1% translated source file: 'django.po'
on 'cs_CZ'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-13 04:15:45 +00:00
Ariel Rin
ecd594a5bb Translate django.po in nl_NL [Manual Sync]
47% of minimum 1% translated source file: 'django.po'
on 'nl_NL'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-13 04:15:06 +00:00
Ariel Rin
8c2648ac7f Translate django.po in de
100% translated source file: 'django.po'
on 'de'.
2024-09-09 17:44:20 +00:00
Ariel Rin
4e901b602b Translate django.po in uk
98% of minimum 50% translated source file: 'django.po'
on 'uk'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-09 04:59:20 +00:00
Ariel Rin
1ad5c361f7 Translate django.po in ja
98% of minimum 50% translated source file: 'django.po'
on 'ja'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-09 04:59:10 +00:00
Ariel Rin
bbc8998396 Translate django.po in zh-Hans
67% of minimum 50% translated source file: 'django.po'
on 'zh-Hans'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-09 04:58:53 +00:00
Ariel Rin
508e701863 Translate django.po in pl_PL
98% of minimum 50% translated source file: 'django.po'
on 'pl_PL'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-09 04:58:40 +00:00
Ariel Rin
4539103d70 Translate django.po in it_IT
97% of minimum 50% translated source file: 'django.po'
on 'it_IT'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-09 04:58:28 +00:00
Ariel Rin
d5c1f01fd5 Translate django.po in ru
81% of minimum 50% translated source file: 'django.po'
on 'ru'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-09 04:58:18 +00:00
Ariel Rin
b2aa8626f3 Translate django.po in fr_FR
98% of minimum 50% translated source file: 'django.po'
on 'fr_FR'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-09 04:58:04 +00:00
Ariel Rin
3bd09cee5f Translate django.po in ko_KR
98% of minimum 50% translated source file: 'django.po'
on 'ko_KR'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-09 04:57:57 +00:00
Ariel Rin
f453955680 Translate django.po in es
77% of minimum 50% translated source file: 'django.po'
on 'es'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-09 04:57:50 +00:00
Ariel Rin
7952956056 Translate django.po in de
98% of minimum 50% translated source file: 'django.po'
on 'de'.

Sync of partially translated files: 
untranslated content is included with an empty translation 
or source language content depending on file format
2024-09-09 04:57:44 +00:00
35 changed files with 6606 additions and 1378 deletions

View File

@@ -5,7 +5,7 @@ manage online service access.
# This will make sure the app is always imported when # This will make sure the app is always imported when
# Django starts so that shared_task will use this app. # Django starts so that shared_task will use this app.
__version__ = '4.3.1' __version__ = '4.3.0'
__title__ = 'Alliance Auth' __title__ = 'Alliance Auth'
__url__ = 'https://gitlab.com/allianceauth/allianceauth' __url__ = 'https://gitlab.com/allianceauth/allianceauth'
NAME = f'{__title__} v{__version__}' NAME = f'{__title__} v{__version__}'

View File

@@ -1,18 +0,0 @@
# Generated by Django 4.2 on 2024-09-13 09:46
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authentication', '0023_alter_userprofile_language'),
]
operations = [
migrations.AlterField(
model_name='userprofile',
name='language',
field=models.CharField(blank=True, choices=[('en', 'English'), ('cs-cz', 'Czech'), ('de', 'German'), ('es', 'Spanish'), ('it-it', 'Italian'), ('ja', 'Japanese'), ('ko-kr', 'Korean'), ('fr-fr', 'French'), ('ru', 'Russian'), ('nl-nl', 'Dutch'), ('pl-pl', 'Polish'), ('uk', 'Ukrainian'), ('zh-hans', 'Simplified Chinese')], default='', max_length=10, verbose_name='Language'),
),
]

View File

@@ -67,20 +67,18 @@ class UserProfile(models.Model):
""" """
Choices for UserProfile.language Choices for UserProfile.language
""" """
# Sorted by Language Code alphabetical order + English at top
ENGLISH = 'en', _('English') ENGLISH = 'en', _('English')
CZECH = 'cs-cz', _("Czech") # Not yet at 50% translated
GERMAN = 'de', _('German') GERMAN = 'de', _('German')
SPANISH = 'es', _('Spanish') SPANISH = 'es', _('Spanish')
ITALIAN = 'it-it', _('Italian') CHINESE = 'zh-hans', _('Chinese Simplified')
JAPANESE = 'ja', _('Japanese')
KOREAN = 'ko-kr', _('Korean')
FRENCH = 'fr-fr', _('French')
RUSSIAN = 'ru', _('Russian') RUSSIAN = 'ru', _('Russian')
DUTCH = 'nl-nl', _("Dutch") KOREAN = 'ko', _('Korean')
POLISH = 'pl-pl', _("Polish") FRENCH = 'fr', _('French')
JAPANESE = 'ja', _('Japanese')
ITALIAN = 'it', _('Italian')
UKRAINIAN = 'uk', _('Ukrainian') UKRAINIAN = 'uk', _('Ukrainian')
CHINESE = 'zh-hans', _('Simplified Chinese') POLISH = 'pl', _("Polish")
user = models.OneToOneField( user = models.OneToOneField(
User, User,

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: Tomas Skarecky <t.skarecky@gmail.com>, 2024\n" "Last-Translator: Tomas Skarecky <t.skarecky@gmail.com>, 2024\n"
"Language-Team: Czech (Czech Republic) (https://app.transifex.com/alliance-auth/teams/107430/cs_CZ/)\n" "Language-Team: Czech (Czech Republic) (https://app.transifex.com/alliance-auth/teams/107430/cs_CZ/)\n"
@@ -54,90 +54,70 @@ msgstr ""
"přístupem:%s" "přístupem:%s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "Angličtina" msgstr "Angličtina"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "Němčina" msgstr "Němčina"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "Španělština" msgstr "Španělština"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "Zjednodušená čínština"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "Italština"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "Japonština"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "Korejština"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "Francouzština"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "Ruština" msgstr "Ruština"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "Korejština"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "Francouzština"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "Japonština"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "Italština"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "Ukrajinština" msgstr "Ukrajinština"
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "Jazyk" msgstr "Jazyk"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "Noční režim" msgstr "Noční režim"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "Motiv" msgstr "Motiv"
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "Status změněn na: %s" msgstr "Status změněn na: %s"
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "Váš uživatelský status je nyní: %(state)s" msgstr "Váš uživatelský status je nyní: %(state)s"
@@ -2585,159 +2565,155 @@ msgstr ""
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2787,11 +2763,11 @@ msgstr ""
msgid "Structure" msgid "Structure"
msgstr "" msgstr ""
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "" msgstr ""

View File

@@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: Peter Pfeufer, 2024\n" "Last-Translator: Peter Pfeufer, 2024\n"
"Language-Team: German (https://app.transifex.com/alliance-auth/teams/107430/de/)\n" "Language-Team: German (https://app.transifex.com/alliance-auth/teams/107430/de/)\n"
@@ -62,90 +62,70 @@ msgstr ""
"Du kannst diese eingeschränkten Gruppen nicht hinzufügen oder entfernen: %s" "Du kannst diese eingeschränkten Gruppen nicht hinzufügen oder entfernen: %s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "Englisch" msgstr "Englisch"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "Deutsch" msgstr "Deutsch"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "Spanisch" msgstr "Spanisch"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "Chinesisch vereinfacht"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "Italienisch"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "Japanisch"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "Koreanisch"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "Französisch"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "Russisch" msgstr "Russisch"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "Koreanisch"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "Französisch"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "Japanisch"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "Italienisch"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr "Polnisch"
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "Ukrainisch" msgstr "Ukrainisch"
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese" msgstr "Polnisch"
msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "Sprache" msgstr "Sprache"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "Nachtmodus" msgstr "Nachtmodus"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "Theme" msgstr "Theme"
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "Status geändert zu %s" msgstr "Status geändert zu %s"
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "Dein Nutzerstatus ist nun %(state)s" msgstr "Dein Nutzerstatus ist nun %(state)s"
@@ -2653,159 +2633,155 @@ msgstr "Wichtig"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "Auf Corp beschränkt" msgstr "Auf Corp beschränkt"
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "Freundlich" msgstr "Freundlich"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "Feindlich" msgstr "Feindlich"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "Neutral" msgstr "Neutral"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "POCO" msgstr "POCO"
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "Orbital Skyhook" msgstr "Orbital Skyhook"
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "I-HUB" msgstr "I-HUB"
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "TCU" msgstr "TCU"
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "POS [S]" msgstr "POS [S]"
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "POS [M]" msgstr "POS [M]"
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "POS [L]" msgstr "POS [L]"
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "Astrahus" msgstr "Astrahus"
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "Fortizar" msgstr "Fortizar"
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "Keepstar" msgstr "Keepstar"
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "Raitaru" msgstr "Raitaru"
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "Azbel" msgstr "Azbel"
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "Sotiyo" msgstr "Sotiyo"
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "Athanor" msgstr "Athanor"
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "Tatara" msgstr "Tatara"
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "Pharolux Cyno Beacon" msgstr "Pharolux Cyno Beacon"
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "Tenebrex Cyno Jammer" msgstr "Tenebrex Cyno Jammer"
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "Ansiblex Jump Gate" msgstr "Ansiblex Jump Gate"
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "Moon Mining Cycle" msgstr "Moon Mining Cycle"
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "Metenox Moon Drill" msgstr "Metenox Moon Drill"
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "Anderes" msgstr "Anderes"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "Keine Angabe" msgstr "Keine Angabe"
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "Schild" msgstr "Schild"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "Panzerung" msgstr "Panzerung"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "Hülle" msgstr "Hülle"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "Final" msgstr "Final"
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "Ankernd" msgstr "Ankernd"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "Entankernd" msgstr "Entankernd"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2855,11 +2831,11 @@ msgstr "Strukturen Timer aktualisieren"
msgid "Structure" msgid "Structure"
msgstr "Struktur" msgstr "Struktur"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "Cyno Beacon" msgstr "Cyno Beacon"
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "Cyno Jammer" msgstr "Cyno Jammer"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -49,90 +49,70 @@ msgid "You are not allowed to add or remove these restricted groups: %s"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr ""
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr ""
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr ""
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr ""
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr ""
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr ""
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr ""
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr ""
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr ""
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "" msgstr ""
@@ -2565,159 +2545,155 @@ msgstr ""
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2767,11 +2743,11 @@ msgstr ""
msgid "Structure" msgid "Structure"
msgstr "" msgstr ""
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "" msgstr ""

View File

@@ -15,7 +15,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: trenus, 2023\n" "Last-Translator: trenus, 2023\n"
"Language-Team: Spanish (https://app.transifex.com/alliance-auth/teams/107430/es/)\n" "Language-Team: Spanish (https://app.transifex.com/alliance-auth/teams/107430/es/)\n"
@@ -58,90 +58,70 @@ msgid "You are not allowed to add or remove these restricted groups: %s"
msgstr "No puedes añadir o eliminar estos grupos restringidos: %s" msgstr "No puedes añadir o eliminar estos grupos restringidos: %s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "Inglés" msgstr "Inglés"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "Alemán" msgstr "Alemán"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "Español" msgstr "Español"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "Chino Simplificado"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "Italiano"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "Japonés"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "Coreano"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "Francés"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "Ruso" msgstr "Ruso"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "Coreano"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "Francés"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "Japonés"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "Italiano"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "Idioma" msgstr "Idioma"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "Modo Nocturno" msgstr "Modo Nocturno"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "Estado cambiado a: %s" msgstr "Estado cambiado a: %s"
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "El estado de su usuario es ahora: %(state)s" msgstr "El estado de su usuario es ahora: %(state)s"
@@ -2634,159 +2614,155 @@ msgstr "Importante"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "Restringido a Corp" msgstr "Restringido a Corp"
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "Amigable" msgstr "Amigable"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "Hostil" msgstr "Hostil"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "Neutral" msgstr "Neutral"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "Otro" msgstr "Otro"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "Sin especificación" msgstr "Sin especificación"
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "Escudo" msgstr "Escudo"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "Armadura" msgstr "Armadura"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "Tipo" msgstr "Tipo"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "Final" msgstr "Final"
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "Anclando" msgstr "Anclando"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "Desanclando" msgstr "Desanclando"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2836,11 +2812,11 @@ msgstr "Actualizar Timer de Estructura"
msgid "Structure" msgid "Structure"
msgstr "Estructura" msgstr "Estructura"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "" msgstr ""

View File

@@ -13,16 +13,15 @@
# Geoffrey Fabbro, 2023 # Geoffrey Fabbro, 2023
# Idea, 2024 # Idea, 2024
# Joel Falknau <ozirascal@gmail.com>, 2024 # Joel Falknau <ozirascal@gmail.com>, 2024
# T'rahk Rokym, 2024
# #
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: T'rahk Rokym, 2024\n" "Last-Translator: Joel Falknau <ozirascal@gmail.com>, 2024\n"
"Language-Team: French (France) (https://app.transifex.com/alliance-auth/teams/107430/fr_FR/)\n" "Language-Team: French (France) (https://app.transifex.com/alliance-auth/teams/107430/fr_FR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@@ -71,90 +70,70 @@ msgstr ""
"restreints: %s" "restreints: %s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "Anglais" msgstr "Anglais"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "Allemand" msgstr "Allemand"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "Espagnol" msgstr "Espagnol"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "Chinois simplifié"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "Italien"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "Japonais"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "Coréen"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "Français"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "Russe" msgstr "Russe"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "Coréen"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "Français"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "Japonais"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "Italien"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr "Polonais"
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "Ukrainien" msgstr "Ukrainien"
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "Langue" msgstr "Langue"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "Mode Nuit" msgstr "Mode Nuit"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "Thème" msgstr "Thème"
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "État changé à: %s" msgstr "État changé à: %s"
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "L'état de votre personnage est maintenant: %(state)s" msgstr "L'état de votre personnage est maintenant: %(state)s"
@@ -459,15 +438,15 @@ msgstr ""
#: allianceauth/custom_css/apps.py:13 allianceauth/custom_css/models.py:36 #: allianceauth/custom_css/apps.py:13 allianceauth/custom_css/models.py:36
#: allianceauth/custom_css/models.py:37 allianceauth/custom_css/models.py:47 #: allianceauth/custom_css/models.py:37 allianceauth/custom_css/models.py:47
msgid "Custom CSS" msgid "Custom CSS"
msgstr "CSS personnalisé" msgstr ""
#: allianceauth/custom_css/models.py:25 #: allianceauth/custom_css/models.py:25
msgid "Your custom CSS" msgid "Your custom CSS"
msgstr "Votre CSS personnalisé" msgstr ""
#: allianceauth/custom_css/models.py:26 #: allianceauth/custom_css/models.py:26
msgid "This CSS will be added to the site after the default CSS." msgid "This CSS will be added to the site after the default CSS."
msgstr "Ce CSS être ajouté sur le site après le CSS par défaut" msgstr ""
#: allianceauth/fleetactivitytracking/auth_hooks.py:10 #: allianceauth/fleetactivitytracking/auth_hooks.py:10
#: allianceauth/fleetactivitytracking/templates/fleetactivitytracking/characternotexisting.html:10 #: allianceauth/fleetactivitytracking/templates/fleetactivitytracking/characternotexisting.html:10
@@ -2661,159 +2640,155 @@ msgstr "Important"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "Limité à la Corporation" msgstr "Limité à la Corporation"
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "Amical" msgstr "Amical"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "Hostile" msgstr "Hostile"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "Neutre" msgstr "Neutre"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "POCO" msgstr "POCO"
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "I-HUB" msgstr "I-HUB"
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "TCU" msgstr "TCU"
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "POS [S]" msgstr "POS [S]"
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "POS [M]" msgstr "POS [M]"
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "POS [L]" msgstr "POS [L]"
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "Astrahus" msgstr "Astrahus"
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "Fortizar" msgstr "Fortizar"
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "Keepstar" msgstr "Keepstar"
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "Raitaru" msgstr "Raitaru"
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "Azbel" msgstr "Azbel"
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "Sotiyo" msgstr "Sotiyo"
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "Athanor" msgstr "Athanor"
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "Tatara" msgstr "Tatara"
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "Porte de saut Ansiblex" msgstr "Porte de saut Ansiblex"
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "Cycle dextraction de lune" msgstr "Cycle dextraction de lune"
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "Autre" msgstr "Autre"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "Non Spécifié" msgstr "Non Spécifié"
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "Bouclier" msgstr "Bouclier"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "Armure" msgstr "Armure"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "Coque" msgstr "Coque"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "Final" msgstr "Final"
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "Ancrage" msgstr "Ancrage"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "Désancrage" msgstr "Désancrage"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2863,11 +2838,11 @@ msgstr "Mettre à jour le minuteur de structure"
msgid "Structure" msgid "Structure"
msgstr "Structure" msgstr "Structure"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "Balise Cyno" msgstr "Balise Cyno"
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "Brouilleur de Cyno" msgstr "Brouilleur de Cyno"

View File

@@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: Tuz, 2024\n" "Last-Translator: Tuz, 2024\n"
"Language-Team: Italian (Italy) (https://app.transifex.com/alliance-auth/teams/107430/it_IT/)\n" "Language-Team: Italian (Italy) (https://app.transifex.com/alliance-auth/teams/107430/it_IT/)\n"
@@ -62,90 +62,70 @@ msgid "You are not allowed to add or remove these restricted groups: %s"
msgstr "Non ti è consentito aggiungere o rimuovere questi gruppi ristretti:%s" msgstr "Non ti è consentito aggiungere o rimuovere questi gruppi ristretti:%s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "Inglese" msgstr "Inglese"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "Tedesco" msgstr "Tedesco"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "Spagnolo" msgstr "Spagnolo"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "Cinese semplificato"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "Italiano"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "Giapponese"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "Coreano"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "Francese"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "Russo" msgstr "Russo"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "Coreano"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "Francese"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "Giapponese"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "Italiano"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "Ucraino" msgstr "Ucraino"
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "Lingua" msgstr "Lingua"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "Modalità scura" msgstr "Modalità scura"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "Tema" msgstr "Tema"
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "Stato modificato a: %s" msgstr "Stato modificato a: %s"
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "Il tuo stato utente è ora: %(state)s" msgstr "Il tuo stato utente è ora: %(state)s"
@@ -2658,159 +2638,155 @@ msgstr "Importante"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "Limitato alla corporazione" msgstr "Limitato alla corporazione"
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "Amichevole" msgstr "Amichevole"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "Ostile" msgstr "Ostile"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "Neutrale" msgstr "Neutrale"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "POCO" msgstr "POCO"
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "I-HUB" msgstr "I-HUB"
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "TCU" msgstr "TCU"
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "POS [S]" msgstr "POS [S]"
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "POS [M]" msgstr "POS [M]"
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "POS [L]" msgstr "POS [L]"
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "Astrahus" msgstr "Astrahus"
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "Fortizar" msgstr "Fortizar"
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "Keepstar" msgstr "Keepstar"
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "Raitaru" msgstr "Raitaru"
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "Azbel" msgstr "Azbel"
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "Sotiyo" msgstr "Sotiyo"
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "Athanor" msgstr "Athanor"
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "Tatara" msgstr "Tatara"
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "Ansiblex Jump Gate" msgstr "Ansiblex Jump Gate"
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "Moon Mining Cycle" msgstr "Moon Mining Cycle"
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "Altro" msgstr "Altro"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "Non specificato" msgstr "Non specificato"
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "Scudo" msgstr "Scudo"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "Armatura" msgstr "Armatura"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "Struttura" msgstr "Struttura"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "Ultimo" msgstr "Ultimo"
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "In ancoraggio" msgstr "In ancoraggio"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "In disancoraggio" msgstr "In disancoraggio"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2860,11 +2836,11 @@ msgstr "Aggiorna timer struttura"
msgid "Structure" msgid "Structure"
msgstr "Struttura" msgstr "Struttura"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "Cyno Beacon" msgstr "Cyno Beacon"
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "Cyno Jammer" msgstr "Cyno Jammer"

View File

@@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: kotaneko, 2024\n" "Last-Translator: kotaneko, 2024\n"
"Language-Team: Japanese (https://app.transifex.com/alliance-auth/teams/107430/ja/)\n" "Language-Team: Japanese (https://app.transifex.com/alliance-auth/teams/107430/ja/)\n"
@@ -57,90 +57,70 @@ msgid "You are not allowed to add or remove these restricted groups: %s"
msgstr "これらの制限付きグループを追加または削除することはできません。%s" msgstr "これらの制限付きグループを追加または削除することはできません。%s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "英語" msgstr "英語"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "ドイツ語" msgstr "ドイツ語"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "スペイン語" msgstr "スペイン語"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "中国語 簡体字"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "イタリア語"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "日本語"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "韓国語"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "フランス語"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "ロシア語" msgstr "ロシア語"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "韓国語"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "フランス語"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "日本語"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "イタリア語"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "ウクライナ語" msgstr "ウクライナ語"
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "言語" msgstr "言語"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "ナイトモード" msgstr "ナイトモード"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "テーマ" msgstr "テーマ"
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "分類が%sに変更されました。" msgstr "分類が%sに変更されました。"
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "あなたの分類は%(state)sになりました。" msgstr "あなたの分類は%(state)sになりました。"
@@ -2594,159 +2574,155 @@ msgstr "重要"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "コーポレーション制限付き" msgstr "コーポレーション制限付き"
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "味方" msgstr "味方"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "敵性" msgstr "敵性"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "中立" msgstr "中立"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "POCO" msgstr "POCO"
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "I-HUB" msgstr "I-HUB"
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "TCU" msgstr "TCU"
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "POS [S]" msgstr "POS [S]"
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "POS [M]" msgstr "POS [M]"
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "POS [L]" msgstr "POS [L]"
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "Astrahus" msgstr "Astrahus"
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "Fortizar" msgstr "Fortizar"
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "Keepstar" msgstr "Keepstar"
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "Raitaru" msgstr "Raitaru"
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "Azbel" msgstr "Azbel"
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "Sotiyo" msgstr "Sotiyo"
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "Athanor" msgstr "Athanor"
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "Tatara" msgstr "Tatara"
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "Ansiblex Jump Gate" msgstr "Ansiblex Jump Gate"
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "Moon Mining Cycle" msgstr "Moon Mining Cycle"
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "その他" msgstr "その他"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "指定なし" msgstr "指定なし"
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "シールド" msgstr "シールド"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "アーマー" msgstr "アーマー"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "ハル" msgstr "ハル"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "最終" msgstr "最終"
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "Anchoring" msgstr "Anchoring"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "Unanchoring" msgstr "Unanchoring"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2796,11 +2772,11 @@ msgstr "ストラクチャタイマーを更新"
msgid "Structure" msgid "Structure"
msgstr "ストラクチャ" msgstr "ストラクチャ"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "Cyno Beacon" msgstr "Cyno Beacon"
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "Cyno Jammer" msgstr "Cyno Jammer"

View File

@@ -18,7 +18,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: Woojin Kang, 2024\n" "Last-Translator: Woojin Kang, 2024\n"
"Language-Team: Korean (Korea) (https://app.transifex.com/alliance-auth/teams/107430/ko_KR/)\n" "Language-Team: Korean (Korea) (https://app.transifex.com/alliance-auth/teams/107430/ko_KR/)\n"
@@ -63,90 +63,70 @@ msgid "You are not allowed to add or remove these restricted groups: %s"
msgstr "해당 제한된 그룹을 추가하거나 제거할 수 있는 권한이 존재하지 않습니다: %s" msgstr "해당 제한된 그룹을 추가하거나 제거할 수 있는 권한이 존재하지 않습니다: %s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "영어" msgstr "영어"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "독일어" msgstr "독일어"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "스페인어" msgstr "스페인어"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "간체자"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "이탈리아어"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "일본어"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "한국어"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "프랑스어"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "러시아어" msgstr "러시아어"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "한국어"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "프랑스어"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "일본어"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "이탈리아어"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "우크라이나어" msgstr "우크라이나어"
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "언어" msgstr "언어"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "야간 모드" msgstr "야간 모드"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "테마" msgstr "테마"
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "상태가 %s로 변경됐습니다." msgstr "상태가 %s로 변경됐습니다."
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "사용자의 상태는 %(state)s입니다." msgstr "사용자의 상태는 %(state)s입니다."
@@ -2598,159 +2578,155 @@ msgstr "중요"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "코퍼레이션 제한" msgstr "코퍼레이션 제한"
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "우호" msgstr "우호"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "적대" msgstr "적대"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "중립" msgstr "중립"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "포코(POCO)" msgstr "포코(POCO)"
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "I-HUB" msgstr "I-HUB"
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "TCU" msgstr "TCU"
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "POS [S]" msgstr "POS [S]"
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "POS [M]" msgstr "POS [M]"
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "POS [L]" msgstr "POS [L]"
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "아스트라허스(Astrahus)" msgstr "아스트라허스(Astrahus)"
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "포르티자(Fortizar)" msgstr "포르티자(Fortizar)"
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "킵스타(Keepstar)" msgstr "킵스타(Keepstar)"
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "라이타루(Raitaru)" msgstr "라이타루(Raitaru)"
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "아즈벨(Azbel)" msgstr "아즈벨(Azbel)"
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "소티요(Sotiyo)" msgstr "소티요(Sotiyo)"
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "아타노르(Athanor)" msgstr "아타노르(Athanor)"
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "타타라(Tatara)" msgstr "타타라(Tatara)"
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "엔서블렉스 점프 게이트(Ansiblex Jump Gate)" msgstr "엔서블렉스 점프 게이트(Ansiblex Jump Gate)"
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "문 마이닝 주기" msgstr "문 마이닝 주기"
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "기타" msgstr "기타"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "명시되지 않음" msgstr "명시되지 않음"
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "실드" msgstr "실드"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "장갑" msgstr "장갑"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "선체" msgstr "선체"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "최종" msgstr "최종"
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "고정" msgstr "고정"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "미고정" msgstr "미고정"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2800,11 +2776,11 @@ msgstr "구조물 타이머 수정"
msgid "Structure" msgid "Structure"
msgstr "구조물" msgstr "구조물"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "사이노 비컨(Cyno Beacon)" msgstr "사이노 비컨(Cyno Beacon)"
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "사이노 재머(Cyno Jammer)" msgstr "사이노 재머(Cyno Jammer)"

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: Agent Fuse, 2024\n" "Last-Translator: Agent Fuse, 2024\n"
"Language-Team: Dutch (Netherlands) (https://app.transifex.com/alliance-auth/teams/107430/nl_NL/)\n" "Language-Team: Dutch (Netherlands) (https://app.transifex.com/alliance-auth/teams/107430/nl_NL/)\n"
@@ -62,90 +62,70 @@ msgstr ""
"Je bent niet gemachtigd om de volgende beperkte groepen te verwijderen: %s" "Je bent niet gemachtigd om de volgende beperkte groepen te verwijderen: %s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "Engels" msgstr "Engels"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "Duits" msgstr "Duits"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "Spaans" msgstr "Spaans"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "Vereenvoudigd Chinees"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "Italiaans"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "Japans"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "Koreaans"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "Frans"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "Russisch" msgstr "Russisch"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "Koreaans"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "Frans"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "Japans"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "Italiaans"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "Oekraïens" msgstr "Oekraïens"
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "Taal" msgstr "Taal"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "Nachtstand" msgstr "Nachtstand"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "Thema" msgstr "Thema"
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "State gewijzigd naar: %s" msgstr "State gewijzigd naar: %s"
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "De gebruikers staat is nu: %(state)s" msgstr "De gebruikers staat is nu: %(state)s"
@@ -2596,159 +2576,155 @@ msgstr "Belangrijk"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "Vriendelijk" msgstr "Vriendelijk"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "Vijandig" msgstr "Vijandig"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "Neutraal" msgstr "Neutraal"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "Astrahus" msgstr "Astrahus"
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "Fortizar" msgstr "Fortizar"
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "Keepstar" msgstr "Keepstar"
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "Raitaru" msgstr "Raitaru"
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "Sotiyo" msgstr "Sotiyo"
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "Sotiyo" msgstr "Sotiyo"
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "Athanor" msgstr "Athanor"
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "Tatara" msgstr "Tatara"
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "Ansiblex Jump Gate" msgstr "Ansiblex Jump Gate"
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "Maan mijn Cyclus" msgstr "Maan mijn Cyclus"
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "Andere" msgstr "Andere"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "Niet gespecifieerd" msgstr "Niet gespecifieerd"
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "Schild" msgstr "Schild"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "Pantser" msgstr "Pantser"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "Romp" msgstr "Romp"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "Laatste" msgstr "Laatste"
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "Ankeren" msgstr "Ankeren"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "ontankeren" msgstr "ontankeren"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2798,11 +2774,11 @@ msgstr ""
msgid "Structure" msgid "Structure"
msgstr "Constructie" msgstr "Constructie"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "Cyno Beacon" msgstr "Cyno Beacon"
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "Cyno Jammer" msgstr "Cyno Jammer"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: MisBimbrownik, 2024\n" "Last-Translator: MisBimbrownik, 2024\n"
"Language-Team: Polish (Poland) (https://app.transifex.com/alliance-auth/teams/107430/pl_PL/)\n" "Language-Team: Polish (Poland) (https://app.transifex.com/alliance-auth/teams/107430/pl_PL/)\n"
@@ -63,90 +63,70 @@ msgstr ""
"%s" "%s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "Angielski" msgstr "Angielski"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "Niemiecki" msgstr "Niemiecki"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "Hiszpański" msgstr "Hiszpański"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "Chiński uproszczony"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "Włoski"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "Japoński"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "Koreański"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "Francuski"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "Rosyjski" msgstr "Rosyjski"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "Koreański"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "Francuski"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "Japoński"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "Włoski"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "Ukraiński" msgstr "Ukraiński"
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "Język" msgstr "Język"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "Tryb nocny" msgstr "Tryb nocny"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "Styl" msgstr "Styl"
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "Stan został zmieniony na: %s" msgstr "Stan został zmieniony na: %s"
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "Stan twojego użytkownika to: %(state)s" msgstr "Stan twojego użytkownika to: %(state)s"
@@ -2650,159 +2630,155 @@ msgstr "Ważny"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "Wewnętrzny dla Korporacji" msgstr "Wewnętrzny dla Korporacji"
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "Przyjaciel" msgstr "Przyjaciel"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "Wróg" msgstr "Wróg"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "Neutralny" msgstr "Neutralny"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "POCO" msgstr "POCO"
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "I-HUB" msgstr "I-HUB"
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "TCU" msgstr "TCU"
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "POS (Mały)" msgstr "POS (Mały)"
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "POS (Średni)" msgstr "POS (Średni)"
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "POS (Duży)" msgstr "POS (Duży)"
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "Astrahus" msgstr "Astrahus"
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "Fortizar" msgstr "Fortizar"
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "Keepstar" msgstr "Keepstar"
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "Raitaru" msgstr "Raitaru"
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "Azbel" msgstr "Azbel"
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "Sotiyo" msgstr "Sotiyo"
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "Athanor" msgstr "Athanor"
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "Tatara" msgstr "Tatara"
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "Ansiblex Jump Gate" msgstr "Ansiblex Jump Gate"
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "Cykl Koparki Księżycowej" msgstr "Cykl Koparki Księżycowej"
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "Inny" msgstr "Inny"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "Nie określono" msgstr "Nie określono"
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "Pole siłowe" msgstr "Pole siłowe"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "Armor" msgstr "Armor"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "Struktura" msgstr "Struktura"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "Ostateczny" msgstr "Ostateczny"
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "Kotwiczenie" msgstr "Kotwiczenie"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "Usunięcie kotwiczenia" msgstr "Usunięcie kotwiczenia"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2852,11 +2828,11 @@ msgstr "Zaktualizuj Zdarzenie powiązane z Obiektami"
msgid "Structure" msgid "Structure"
msgstr "Obiekt" msgstr "Obiekt"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "Cyno Beacon" msgstr "Cyno Beacon"
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "Cyno Jammer" msgstr "Cyno Jammer"

View File

@@ -16,7 +16,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: Joel Falknau <ozirascal@gmail.com>, 2024\n" "Last-Translator: Joel Falknau <ozirascal@gmail.com>, 2024\n"
"Language-Team: Russian (https://app.transifex.com/alliance-auth/teams/107430/ru/)\n" "Language-Team: Russian (https://app.transifex.com/alliance-auth/teams/107430/ru/)\n"
@@ -58,90 +58,70 @@ msgid "You are not allowed to add or remove these restricted groups: %s"
msgstr "Вам не разрешено добавлять или удалять эти ограниченные группы: %s" msgstr "Вам не разрешено добавлять или удалять эти ограниченные группы: %s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "Английский" msgstr "Английский"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "Немецкий" msgstr "Немецкий"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "Испанский" msgstr "Испанский"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "Китайский упрощённый"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "Итальянский"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "Японский"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "Корейский"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "Французский"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "Русский" msgstr "Русский"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "Корейский"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "Французский"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "Японский"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "Итальянский"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "Украинский" msgstr "Украинский"
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "Язык" msgstr "Язык"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "Ночной режим" msgstr "Ночной режим"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "Статус изменен: %s" msgstr "Статус изменен: %s"
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "Статус пилота: %(state)s" msgstr "Статус пилота: %(state)s"
@@ -2634,159 +2614,155 @@ msgstr "Важно"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "Корпорация зарегистрированна" msgstr "Корпорация зарегистрированна"
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "Дружественный" msgstr "Дружественный"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "Вражеский" msgstr "Вражеский"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "Нейтрал" msgstr "Нейтрал"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "Прочие" msgstr "Прочие"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "Не указано" msgstr "Не указано"
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "Щит" msgstr "Щит"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "Броня" msgstr "Броня"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "Структура" msgstr "Структура"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "Финальный" msgstr "Финальный"
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "Постановка на якорь" msgstr "Постановка на якорь"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "Снятие с якоря" msgstr "Снятие с якоря"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2836,11 +2812,11 @@ msgstr "Обновить Структурный Таймер"
msgid "Structure" msgid "Structure"
msgstr "Структура" msgstr "Структура"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "" msgstr ""

View File

@@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: Andrii Yukhymchak, 2024\n" "Last-Translator: Andrii Yukhymchak, 2024\n"
"Language-Team: Ukrainian (https://app.transifex.com/alliance-auth/teams/107430/uk/)\n" "Language-Team: Ukrainian (https://app.transifex.com/alliance-auth/teams/107430/uk/)\n"
@@ -61,90 +61,70 @@ msgid "You are not allowed to add or remove these restricted groups: %s"
msgstr "Вам заборонено додавати або видаляти ці обмежені групи: %s" msgstr "Вам заборонено додавати або видаляти ці обмежені групи: %s"
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "Англійська" msgstr "Англійська"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "Німецька" msgstr "Німецька"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "Іспанська" msgstr "Іспанська"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "Китайська спрощена"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "Італійська"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "Японська"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "Корейська"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "Французька"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "Російська" msgstr "Російська"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "Корейська"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "Французька"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "Японська"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "Італійська"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "Українська" msgstr "Українська"
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "Мова" msgstr "Мова"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "Нічний режим" msgstr "Нічний режим"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "Тема" msgstr "Тема"
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "Стан змінено на: %s" msgstr "Стан змінено на: %s"
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "Стан вашого користувача зараз: %(state)s" msgstr "Стан вашого користувача зараз: %(state)s"
@@ -2658,159 +2638,155 @@ msgstr "Важливо"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "Обмежено для корпорації" msgstr "Обмежено для корпорації"
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "Дружній" msgstr "Дружній"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "Ворожий" msgstr "Ворожий"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "Нейтральний" msgstr "Нейтральний"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "POCO" msgstr "POCO"
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "I-HUB" msgstr "I-HUB"
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "TCU" msgstr "TCU"
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "POS [S]" msgstr "POS [S]"
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "POS [M]" msgstr "POS [M]"
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "POS [L]" msgstr "POS [L]"
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "Астрахус" msgstr "Астрахус"
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "Фортізар" msgstr "Фортізар"
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "Кіпстар" msgstr "Кіпстар"
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "Райтару" msgstr "Райтару"
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "Азбел" msgstr "Азбел"
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "Сотійо" msgstr "Сотійо"
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "Атанор" msgstr "Атанор"
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "Татара" msgstr "Татара"
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "Мост Ансіблекс" msgstr "Мост Ансіблекс"
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "Цикл видобутку супутника" msgstr "Цикл видобутку супутника"
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "Інше" msgstr "Інше"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "Не визначено" msgstr "Не визначено"
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "Щит" msgstr "Щит"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "Броня" msgstr "Броня"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "Корпус" msgstr "Корпус"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "Фінальна" msgstr "Фінальна"
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "Постановка на якір" msgstr "Постановка на якір"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "Зняття з якорю" msgstr "Зняття з якорю"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2860,11 +2836,11 @@ msgstr "Оновити таймер структури"
msgid "Structure" msgid "Structure"
msgstr "Структура" msgstr "Структура"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "Циномаяк" msgstr "Циномаяк"
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "Циноглушник" msgstr "Циноглушник"

View File

@@ -14,7 +14,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-09-13 19:57+1000\n" "POT-Creation-Date: 2024-09-09 13:05+1000\n"
"PO-Revision-Date: 2023-11-08 13:50+0000\n" "PO-Revision-Date: 2023-11-08 13:50+0000\n"
"Last-Translator: Joel Falknau <ozirascal@gmail.com>, 2023\n" "Last-Translator: Joel Falknau <ozirascal@gmail.com>, 2023\n"
"Language-Team: Chinese Simplified (https://app.transifex.com/alliance-auth/teams/107430/zh-Hans/)\n" "Language-Team: Chinese Simplified (https://app.transifex.com/alliance-auth/teams/107430/zh-Hans/)\n"
@@ -55,90 +55,70 @@ msgid "You are not allowed to add or remove these restricted groups: %s"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:71 #: allianceauth/authentication/models.py:71
#: allianceauth/project_template/project_name/settings/base.py:99
msgid "English" msgid "English"
msgstr "英语" msgstr "英语"
#: allianceauth/authentication/models.py:72 #: allianceauth/authentication/models.py:72
msgid "Czech"
msgstr ""
#: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:101
msgid "German" msgid "German"
msgstr "德语" msgstr "德语"
#: allianceauth/authentication/models.py:74 #: allianceauth/authentication/models.py:73
#: allianceauth/project_template/project_name/settings/base.py:102
msgid "Spanish" msgid "Spanish"
msgstr "西班牙语" msgstr "西班牙语"
#: allianceauth/authentication/models.py:74
msgid "Chinese Simplified"
msgstr "简体中文"
#: allianceauth/authentication/models.py:75 #: allianceauth/authentication/models.py:75
#: allianceauth/project_template/project_name/settings/base.py:103
msgid "Italian"
msgstr "意大利语"
#: allianceauth/authentication/models.py:76
#: allianceauth/project_template/project_name/settings/base.py:104
msgid "Japanese"
msgstr "日语"
#: allianceauth/authentication/models.py:77
#: allianceauth/project_template/project_name/settings/base.py:105
msgid "Korean"
msgstr "韩语"
#: allianceauth/authentication/models.py:78
#: allianceauth/project_template/project_name/settings/base.py:106
msgid "French"
msgstr "法语"
#: allianceauth/authentication/models.py:79
#: allianceauth/project_template/project_name/settings/base.py:109
msgid "Russian" msgid "Russian"
msgstr "俄语" msgstr "俄语"
#: allianceauth/authentication/models.py:76
msgid "Korean"
msgstr "韩语"
#: allianceauth/authentication/models.py:77
msgid "French"
msgstr "法语"
#: allianceauth/authentication/models.py:78
msgid "Japanese"
msgstr "日语"
#: allianceauth/authentication/models.py:79
msgid "Italian"
msgstr "意大利语"
#: allianceauth/authentication/models.py:80 #: allianceauth/authentication/models.py:80
#: allianceauth/project_template/project_name/settings/base.py:107
msgid "Dutch"
msgstr ""
#: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:108
msgid "Polish"
msgstr ""
#: allianceauth/authentication/models.py:82
#: allianceauth/project_template/project_name/settings/base.py:110
msgid "Ukrainian" msgid "Ukrainian"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:83 #: allianceauth/authentication/models.py:81
#: allianceauth/project_template/project_name/settings/base.py:111 msgid "Polish"
msgid "Simplified Chinese"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:99 #: allianceauth/authentication/models.py:97
#: allianceauth/menu/templates/menu/menu-user.html:42 #: allianceauth/menu/templates/menu/menu-user.html:42
msgid "Language" msgid "Language"
msgstr "语言" msgstr "语言"
#: allianceauth/authentication/models.py:104 #: allianceauth/authentication/models.py:102
#: allianceauth/templates/allianceauth/night-toggle.html:6 #: allianceauth/templates/allianceauth/night-toggle.html:6
msgid "Night Mode" msgid "Night Mode"
msgstr "夜间模式" msgstr "夜间模式"
#: allianceauth/authentication/models.py:108 #: allianceauth/authentication/models.py:106
#: allianceauth/menu/templates/menu/menu-user.html:46 #: allianceauth/menu/templates/menu/menu-user.html:46
msgid "Theme" msgid "Theme"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:125 #: allianceauth/authentication/models.py:123
#, python-format #, python-format
msgid "State changed to: %s" msgid "State changed to: %s"
msgstr "" msgstr ""
#: allianceauth/authentication/models.py:126 #: allianceauth/authentication/models.py:124
#, python-format #, python-format
msgid "Your user's state is now: %(state)s" msgid "Your user's state is now: %(state)s"
msgstr "" msgstr ""
@@ -2572,159 +2552,155 @@ msgstr "重要信息"
msgid "Corp-Restricted" msgid "Corp-Restricted"
msgstr "受限制的公司" msgstr "受限制的公司"
#: allianceauth/timerboard/models.py:15 #: allianceauth/timerboard/models.py:13
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:39
#: allianceauth/timerboard/templates/timerboard/timertable.html:36 #: allianceauth/timerboard/templates/timerboard/timertable.html:36
msgid "Friendly" msgid "Friendly"
msgstr "蓝加" msgstr "蓝加"
#: allianceauth/timerboard/models.py:16 #: allianceauth/timerboard/models.py:14
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:34
#: allianceauth/timerboard/templates/timerboard/timertable.html:34 #: allianceauth/timerboard/templates/timerboard/timertable.html:34
msgid "Hostile" msgid "Hostile"
msgstr "红减" msgstr "红减"
#: allianceauth/timerboard/models.py:17 #: allianceauth/timerboard/models.py:15
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:44
#: allianceauth/timerboard/templates/timerboard/timertable.html:38 #: allianceauth/timerboard/templates/timerboard/timertable.html:38
msgid "Neutral" msgid "Neutral"
msgstr "白名" msgstr "白名"
#: allianceauth/timerboard/models.py:24 #: allianceauth/timerboard/models.py:18
#: allianceauth/timerboard/templates/timerboard/timertable.html:48 #: allianceauth/timerboard/templates/timerboard/timertable.html:48
msgid "POCO" msgid "POCO"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:25 #: allianceauth/timerboard/models.py:19
#: allianceauth/timerboard/templates/timerboard/timertable.html:50 #: allianceauth/timerboard/templates/timerboard/timertable.html:50
msgid "Orbital Skyhook" msgid "Orbital Skyhook"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:26 #: allianceauth/timerboard/models.py:20
#: allianceauth/timerboard/templates/timerboard/timertable.html:52 #: allianceauth/timerboard/templates/timerboard/timertable.html:52
msgid "I-HUB" msgid "I-HUB"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:27 #: allianceauth/timerboard/models.py:21
#: allianceauth/timerboard/templates/timerboard/timertable.html:55 #: allianceauth/timerboard/templates/timerboard/timertable.html:54
msgid "TCU" msgid "TCU"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:28 #: allianceauth/timerboard/models.py:22
#: allianceauth/timerboard/templates/timerboard/timertable.html:57 #: allianceauth/timerboard/templates/timerboard/timertable.html:56
msgid "POS [S]" msgid "POS [S]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:29 #: allianceauth/timerboard/models.py:23
#: allianceauth/timerboard/templates/timerboard/timertable.html:59 #: allianceauth/timerboard/templates/timerboard/timertable.html:58
msgid "POS [M]" msgid "POS [M]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:30 #: allianceauth/timerboard/models.py:24
#: allianceauth/timerboard/templates/timerboard/timertable.html:61 #: allianceauth/timerboard/templates/timerboard/timertable.html:60
msgid "POS [L]" msgid "POS [L]"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:31 #: allianceauth/timerboard/models.py:25
#: allianceauth/timerboard/templates/timerboard/timertable.html:63 #: allianceauth/timerboard/templates/timerboard/timertable.html:62
msgid "Astrahus" msgid "Astrahus"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:32 #: allianceauth/timerboard/models.py:26
#: allianceauth/timerboard/templates/timerboard/timertable.html:65 #: allianceauth/timerboard/templates/timerboard/timertable.html:64
msgid "Fortizar" msgid "Fortizar"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:33 #: allianceauth/timerboard/models.py:27
#: allianceauth/timerboard/templates/timerboard/timertable.html:67 #: allianceauth/timerboard/templates/timerboard/timertable.html:66
msgid "Keepstar" msgid "Keepstar"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:34 #: allianceauth/timerboard/models.py:28
#: allianceauth/timerboard/templates/timerboard/timertable.html:69 #: allianceauth/timerboard/templates/timerboard/timertable.html:68
msgid "Raitaru" msgid "Raitaru"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:35 #: allianceauth/timerboard/models.py:29
#: allianceauth/timerboard/templates/timerboard/timertable.html:71 #: allianceauth/timerboard/templates/timerboard/timertable.html:70
msgid "Azbel" msgid "Azbel"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:36 #: allianceauth/timerboard/models.py:30
#: allianceauth/timerboard/templates/timerboard/timertable.html:73 #: allianceauth/timerboard/templates/timerboard/timertable.html:72
msgid "Sotiyo" msgid "Sotiyo"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:37 #: allianceauth/timerboard/models.py:31
#: allianceauth/timerboard/templates/timerboard/timertable.html:75 #: allianceauth/timerboard/templates/timerboard/timertable.html:74
msgid "Athanor" msgid "Athanor"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:38 #: allianceauth/timerboard/models.py:32
#: allianceauth/timerboard/templates/timerboard/timertable.html:77 #: allianceauth/timerboard/templates/timerboard/timertable.html:76
msgid "Tatara" msgid "Tatara"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:39 #: allianceauth/timerboard/models.py:33
msgid "Pharolux Cyno Beacon" msgid "Pharolux Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:40 #: allianceauth/timerboard/models.py:34
msgid "Tenebrex Cyno Jammer" msgid "Tenebrex Cyno Jammer"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:41 #: allianceauth/timerboard/models.py:35
#: allianceauth/timerboard/templates/timerboard/timertable.html:83 #: allianceauth/timerboard/templates/timerboard/timertable.html:82
msgid "Ansiblex Jump Gate" msgid "Ansiblex Jump Gate"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:42 #: allianceauth/timerboard/models.py:36
#: allianceauth/timerboard/templates/timerboard/timertable.html:85 #: allianceauth/timerboard/templates/timerboard/timertable.html:84
msgid "Moon Mining Cycle" msgid "Moon Mining Cycle"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:43 #: allianceauth/timerboard/models.py:37
#: allianceauth/timerboard/templates/timerboard/timertable.html:87 #: allianceauth/timerboard/templates/timerboard/timertable.html:86
msgid "Metenox Moon Drill" msgid "Metenox Moon Drill"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:44 #: allianceauth/timerboard/models.py:38
#: allianceauth/timerboard/templates/timerboard/timertable.html:89 #: allianceauth/timerboard/templates/timerboard/timertable.html:88
msgid "Other" msgid "Other"
msgstr "其他" msgstr "其他"
#: allianceauth/timerboard/models.py:51 #: allianceauth/timerboard/models.py:45
msgid "Not Specified" msgid "Not Specified"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:52 #: allianceauth/timerboard/models.py:46
msgid "Shield" msgid "Shield"
msgstr "护盾" msgstr "护盾"
#: allianceauth/timerboard/models.py:53 #: allianceauth/timerboard/models.py:47
msgid "Armor" msgid "Armor"
msgstr "装甲" msgstr "装甲"
#: allianceauth/timerboard/models.py:54 #: allianceauth/timerboard/models.py:48
msgid "Hull" msgid "Hull"
msgstr "结构" msgstr "结构"
#: allianceauth/timerboard/models.py:55 #: allianceauth/timerboard/models.py:49
msgid "Final" msgid "Final"
msgstr "" msgstr ""
#: allianceauth/timerboard/models.py:56 #: allianceauth/timerboard/models.py:50
msgid "Anchoring" msgid "Anchoring"
msgstr "铆钉" msgstr "铆钉"
#: allianceauth/timerboard/models.py:57 #: allianceauth/timerboard/models.py:51
msgid "Unanchoring" msgid "Unanchoring"
msgstr "解锚" msgstr "解锚"
#: allianceauth/timerboard/models.py:58
msgid "Abandoned"
msgstr ""
#: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7 #: allianceauth/timerboard/templates/timerboard/dashboard.timers.html:7
#: allianceauth/timerboard/templates/timerboard/view.html:53 #: allianceauth/timerboard/templates/timerboard/view.html:53
msgid "Upcoming Timers" msgid "Upcoming Timers"
@@ -2774,11 +2750,11 @@ msgstr "更新建筑时间表"
msgid "Structure" msgid "Structure"
msgstr "建筑" msgstr "建筑"
#: allianceauth/timerboard/templates/timerboard/timertable.html:79 #: allianceauth/timerboard/templates/timerboard/timertable.html:78
msgid "Cyno Beacon" msgid "Cyno Beacon"
msgstr "" msgstr ""
#: allianceauth/timerboard/templates/timerboard/timertable.html:81 #: allianceauth/timerboard/templates/timerboard/timertable.html:80
msgid "Cyno Jammer" msgid "Cyno Jammer"
msgstr "" msgstr ""

View File

@@ -12,8 +12,6 @@ from celery.schedules import crontab
from django.contrib import messages from django.contrib import messages
from django.utils.translation import gettext_lazy as _
INSTALLED_APPS = [ INSTALLED_APPS = [
'allianceauth', # needs to be on top of this list to support favicons in Django admin (see https://gitlab.com/allianceauth/allianceauth/-/issues/1301) 'allianceauth', # needs to be on top of this list to support favicons in Django admin (see https://gitlab.com/allianceauth/allianceauth/-/issues/1301)
'django.contrib.admin', 'django.contrib.admin',
@@ -95,20 +93,18 @@ LOCALE_PATHS = (
os.path.join(BASE_DIR, 'locale/'), os.path.join(BASE_DIR, 'locale/'),
) )
LANGUAGES = ( # Sorted by Language Code alphabetical order + English at top LANGUAGES = (
("en", _("English")), ("en", "English"),
# ("cs-cz", _("Czech")), #Not yet at 50% translated ("de", "German"),
("de", _("German")), ("es", "Spanish"),
("es", _("Spanish")), ("zh-hans", "Chinese Simplified"),
("it-it", _("Italian")), ("ru", "Russian"),
("ja", _("Japanese")), ("ko", "Korean"),
("ko-kr", _("Korean")), ("fr", "French"),
("fr-fr", _("French")), ("ja", "Japanese"),
("nl-nl", _("Dutch")), ("it", "Italian"),
("pl-pl", _("Polish")), ("uk", "Ukrainian"),
("ru", _("Russian")), ("pl", "Polish"),
("uk", _("Ukrainian")),
("zh-hans", _("Simplified Chinese")),
) )
TEMPLATES = [ TEMPLATES = [

View File

@@ -1,7 +1,7 @@
PROTOCOL=https:// PROTOCOL=https://
AUTH_SUBDOMAIN=%AUTH_SUBDOMAIN% AUTH_SUBDOMAIN=%AUTH_SUBDOMAIN%
DOMAIN=%DOMAIN% DOMAIN=%DOMAIN%
AA_DOCKER_TAG=registry.gitlab.com/allianceauth/allianceauth/auth:v4.3.1 AA_DOCKER_TAG=registry.gitlab.com/allianceauth/allianceauth/auth:v4.3.0
# Nginx Proxy Manager # Nginx Proxy Manager
PROXY_HTTP_PORT=80 PROXY_HTTP_PORT=80

View File

@@ -1,5 +1,5 @@
FROM python:3.11-slim FROM python:3.11-slim
ARG AUTH_VERSION=v4.3.1 ARG AUTH_VERSION=v4.3.0
ARG AUTH_PACKAGE=allianceauth==${AUTH_VERSION} ARG AUTH_PACKAGE=allianceauth==${AUTH_VERSION}
ENV AUTH_USER=allianceauth ENV AUTH_USER=allianceauth
ENV AUTH_GROUP=allianceauth ENV AUTH_GROUP=allianceauth