summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/UK/GCModels
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/UK/GCModels')
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCTVepisodes.pm46
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCTVseries.pm50
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCboardgames.pm86
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCbooks.pm69
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCcoins.pm102
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCcomics.pm73
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCfilms.pm92
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCgames.pm81
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCgeneric.pm42
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCminicars.pm182
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCmusics.pm66
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCperiodicals.pm52
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCsmartcards.pm108
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCsoftware.pm84
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCstamps.pm189
-rw-r--r--lib/gcstar/GCLang/UK/GCModels/GCwines.pm63
16 files changed, 1385 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCTVepisodes.pm b/lib/gcstar/GCLang/UK/GCModels/GCTVepisodes.pm
new file mode 100644
index 0000000..88db64e
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCTVepisodes.pm
@@ -0,0 +1,46 @@
+{
+ package GCLang::UK::GCModels::GCTVepisodes;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use GCLang::GCLangUtils;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'TV Shows (episodes) collection',
+ Items => 'Episodes',
+ NewItem => 'New episode',
+ NewSeries => 'New series',
+ Episode => 'Episode',
+ );
+ # Both of them are required as importTranslation doesn't recurse
+ importTranslation('films');
+ importTranslation('TVseries');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCTVseries.pm b/lib/gcstar/GCLang/UK/GCModels/GCTVseries.pm
new file mode 100644
index 0000000..61a449c
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCTVseries.pm
@@ -0,0 +1,50 @@
+{
+ package GCLang::UK::GCModels::GCTVseries;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use GCLang::GCLangUtils;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'TV Shows (series) collection',
+ Items => 'Series',
+ NewItem => 'New series',
+ Name => 'Name',
+ Season => 'Season',
+ Part => 'Part',
+ Episodes => 'Episodes',
+ FirstAired => 'First Aired',
+ Time => 'Ep. Length',
+ Producer => 'Producer',
+ Music => 'Music',
+ );
+ importTranslation('Films');
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCboardgames.pm b/lib/gcstar/GCLang/UK/GCModels/GCboardgames.pm
new file mode 100644
index 0000000..385ecc4
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCboardgames.pm
@@ -0,0 +1,86 @@
+{
+ package GCLang::UK::GCModels::GCboardgames;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Колекція настільних ігор',
+ Items => {0 => 'Ігор',
+ 1 => 'Гра',
+ X => 'Ігор'},
+ NewItem => 'Нова гра',
+
+ Id => 'Id',
+ Name => 'Назва',
+ Original => 'Оригінальна назва',
+ Box => 'Зображення коробки',
+ DesignedBy => 'Розроблена',
+ PublishedBy => 'Видана',
+ Players => 'Число гравців',
+ PlayingTime => 'Час гри',
+ SuggestedAge => 'Рекомендований вік',
+ Released => 'Випущено',
+ Description => 'Опис',
+ Category => 'Категорія',
+ Mechanics => 'Механіка',
+ ExpandedBy => 'Розширення',
+ ExpansionFor => 'Розширення для',
+ GameFamily => 'Сім\'я ігор',
+ IllustratedBy => 'Ілюстрації',
+ Url => 'Сторінка тенет',
+ TimesPlayed => 'Грали разів',
+ CompleteContents => 'Наявність вмісту',
+ Copies => 'Число копій',
+ Condition => 'Стан',
+ Photos => 'Фотографії',
+ Photo1 => 'Перше зображення',
+ Photo2 => 'Друге зображення',
+ Photo3 => 'Третє зображення',
+ Photo4 => 'Четверте зображення',
+ Comments => 'Коментарі',
+
+ Perfect => 'Чудово',
+ Good => 'Добре',
+ Average => 'Посередньо',
+ Poor => 'Погано',
+
+ CompleteYes => 'Наявний повністю',
+ CompleteNo => 'Частково втрачений',
+
+ General => 'Загальна',
+ Details => 'Подробиці',
+ Personal => 'Особиста',
+ Information => 'Інформація',
+
+ FilterRatingSelect => '_Оцінка принаймні...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCbooks.pm b/lib/gcstar/GCLang/UK/GCModels/GCbooks.pm
new file mode 100644
index 0000000..0136856
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCbooks.pm
@@ -0,0 +1,69 @@
+{
+ package GCLang::UK::GCModels::GCbooks;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Колекція книг',
+ Items => 'Книги',
+ NewItem => 'Нова книга',
+
+ Isbn => 'ISBN',
+ Title => 'Заголовок',
+ Cover => 'Обкладинка',
+ Authors => 'Автори',
+ Publisher => 'Видавець',
+ Publication => 'Дата видання',
+ Language => 'Мова',
+ Genre => 'Жанр',
+ Serie => 'Серія',
+ Rank => 'Розряд',
+ Bookdescription => 'Опис',
+ Pages => 'Сторінок',
+ Read => 'Прочитана',
+ Rating => 'Оцінка',
+ Acquisition => 'Дата придбання',
+ Edition => 'Видання',
+ Format => 'Формат',
+ Comments => 'Коментарі',
+ Url => 'Сторінка тенет',
+ Translator => 'Перекладач',
+ Artist => 'Художник',
+ DigitalFile => 'Digital version',
+
+ General => 'Загальна',
+ Details => 'Подробиці',
+
+ ReadNo => 'Не прочитана',
+ ReadYes => 'Прочитана',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCcoins.pm b/lib/gcstar/GCLang/UK/GCModels/GCcoins.pm
new file mode 100644
index 0000000..3f5528d
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCcoins.pm
@@ -0,0 +1,102 @@
+{
+ package GCLang::UK::GCModels::GCcoins;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Нумізматична колекція',
+ Items => 'Монети',
+ NewItem => 'Нова монета',
+
+ Name => 'Назва',
+ Country => 'Країна',
+ Year => 'Рік',
+ Currency => 'Грошова одиниця',
+ Value => 'Значення',
+ Picture => 'Головне зображення',
+ Diameter => 'Діаметр',
+ Metal => 'Метал',
+ Edge => 'Грань',
+ Edge1 => 'Грань 1',
+ Edge2 => 'Грань 2',
+ Edge3 => 'Грань 3',
+ Edge4 => 'Грань 4',
+ Head => 'Аверс',
+ Tail => 'Реверс',
+ Comments => 'Коментарі',
+ History => 'Історія',
+ Website => 'Сторінка тенет',
+ Estimate => 'Цінність',
+ References => 'Посилання',
+ Type => 'Тип',
+ Coin => 'Монета',
+ Banknote => 'Банкнота',
+
+ Main => 'Головна',
+ Description => 'Опис',
+ Other => 'Інша інформація',
+ Pictures => 'Зображення',
+
+ Condition => 'Стан (PCGS)',
+ Grade1 => 'BS-1',
+ Grade2 => 'FR-2',
+ Grade3 => 'AG-3',
+ Grade4 => 'G-4',
+ Grade6 => 'G-6',
+ Grade8 => 'VG-8',
+ Grade10 => 'VG-10',
+ Grade12 => 'F-12',
+ Grade15 => 'F-15',
+ Grade20 => 'VF-20',
+ Grade25 => 'VF-25',
+ Grade30 => 'VF-30',
+ Grade35 => 'VF-35',
+ Grade40 => 'XF-40',
+ Grade45 => 'XF-45',
+ Grade50 => 'AU-50',
+ Grade53 => 'AU-53',
+ Grade55 => 'AU-55',
+ Grade58 => 'AU-58',
+ Grade60 => 'MS-60',
+ Grade61 => 'MS-61',
+ Grade62 => 'MS-62',
+ Grade63 => 'MS-63',
+ Grade64 => 'MS-64',
+ Grade65 => 'MS-65',
+ Grade66 => 'MS-66',
+ Grade67 => 'MS-67',
+ Grade68 => 'MS-68',
+ Grade69 => 'MS-69',
+ Grade70 => 'MS-70',
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCcomics.pm b/lib/gcstar/GCLang/UK/GCModels/GCcomics.pm
new file mode 100644
index 0000000..9a70b74
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCcomics.pm
@@ -0,0 +1,73 @@
+{
+ package GCLang::UK::GCModels::GCcomics;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Comics collection',
+ Items => {0 => 'Comics',
+ 1 => 'Comic',
+ X => 'Comics'},
+ NewItem => 'New comic',
+
+
+ Id => 'Id',
+ Name => 'Name',
+ Series => 'Series',
+ Volume => 'Volume',
+ Title => 'Title',
+ Writer => 'Writer',
+ Illustrator => 'Illustrator',
+ Colourist => 'Colourist',
+ Publisher => 'Publisher',
+ Synopsis => 'Synopsis',
+ Collection => 'Collection',
+ PublishDate => 'Publish Date',
+ PrintingDate => 'Printing Date',
+ ISBN => 'ISBN',
+ Type => 'Type',
+ Category => 'Category',
+ Format => 'Format',
+ NumberBoards => 'Number of Boards',
+ Signing => 'Signing',
+ Cost => 'Cost',
+ Rating => 'Rating',
+ Comment => 'Comments',
+ Url => 'Web page',
+
+ FilterRatingSelect => 'Rating At _Least...',
+
+ Main => 'Main items',
+ General => 'General',
+ Details => 'Details',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCfilms.pm b/lib/gcstar/GCLang/UK/GCModels/GCfilms.pm
new file mode 100644
index 0000000..6936741
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCfilms.pm
@@ -0,0 +1,92 @@
+{
+ package GCLang::UK::GCModels::GCfilms;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Колекція фільмів',
+ Items => 'Фільми',
+ NewItem => 'Новий фільм',
+
+
+ Id => 'Ідентифікатор',
+ Title => 'Назва',
+ Date => 'Дата',
+ Time => 'Тривалість',
+ Director => 'Режисер',
+ Country => 'Країна',
+ MinimumAge => 'Мінімальний вік',
+ Genre => 'Жанр',
+ Image => 'Зображення',
+ Original => 'Оригінальна назва',
+ Actors => 'В ролях',
+ Actor => 'Актор',
+ Role => 'Роль',
+ Comment => 'Коментарі',
+ Synopsis => 'Анотація',
+ Seen => 'Переглянутий',
+ Number => 'Кількість носіїв',
+ Rating => 'Оцінка',
+ Format => 'Носій',
+ Region => 'Region',
+ Identifier => 'Ідентифікатор',
+ Url => 'Сторінка тенет',
+ Audio => 'Звук',
+ Video => 'Відео формат',
+ Trailer => 'Відеофайл',
+ Serie => 'Колекція',
+ Rank => 'Розряд',
+ Subtitles => 'Субтитри',
+
+ SeenYes => 'Переглянутий',
+ SeenNo => 'Не переглянутий',
+
+ AgeUnrated => 'Неоцінений',
+ AgeAll => 'Будь-який вік',
+ AgeParent => 'Під наглядом батьків',
+
+ Main => 'Головні пункти',
+ General => 'Загальна',
+ Details => 'Подробиці',
+
+ Information => 'Інформація',
+ Languages => 'Мови',
+ Encoding => 'Кодування',
+
+ FilterAudienceAge => 'Вік глядачів',
+ FilterSeenNo => '_Ще не переглянутий',
+ FilterSeenYes => '_Вже переглянутий',
+ FilterRatingSelect => '_Оцінка принаймні...',
+
+ ExtractSize => 'Розмір',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCgames.pm b/lib/gcstar/GCLang/UK/GCModels/GCgames.pm
new file mode 100644
index 0000000..0c80a1a
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCgames.pm
@@ -0,0 +1,81 @@
+{
+ package GCLang::UK::GCModels::GCgames;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Колекція відеоігор',
+ Items => 'Ігри',
+ NewItem => 'Нова гра',
+
+ Id => 'Ідентифікатор',
+ Ean => 'EAN',
+ Name => 'Назва',
+ Platform => 'Платформа',
+ Players => 'Кількість гравців',
+ Released => 'Дата випуску',
+ Editor => 'Редактор',
+ Developer => 'Розробник',
+ Genre => 'Жанр',
+ Box => 'Зображення коробки',
+ Case => 'Корпус',
+ Manual => 'Підручник інструкцій',
+ Rating => 'Оцінка',
+ Completion => 'Завершено (%)',
+ Executable => 'Запускаючий файл',
+ Description => 'Опис',
+ Codes => 'Коди',
+ Code => 'Код',
+ Effect => 'Наслідок',
+ Secrets => 'Секрети',
+ Screenshots => 'Знімки екрану',
+ Screenshot1 => 'Перший знімок',
+ Screenshot2 => 'Другий знімок',
+ Comments => 'Коментарі',
+ Url => 'Сторінка тенет',
+ Unlockables => 'Розблокування',
+ Unlockable => 'Розблокування',
+ Howto => 'Як розблокувати',
+ Exclusive => 'Exclusive',
+ Resolutions => 'Display resolutions',
+ InstallationSize => 'Size',
+ Region => 'Region',
+ SerialNumber => 'Serial Number',
+
+ General => 'Загальна',
+ Details => 'Подробиці',
+ Tips => 'Поради',
+ Information => 'Інформація',
+
+ FilterRatingSelect => '_Оцінка принаймні...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCgeneric.pm b/lib/gcstar/GCLang/UK/GCModels/GCgeneric.pm
new file mode 100644
index 0000000..536399e
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCgeneric.pm
@@ -0,0 +1,42 @@
+{
+ package GCLang::UK::GCModels::GCgeneric;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ Items => {0 => 'Item',
+ 1 => 'Item',
+ X => 'Items'
+ },
+ NewItem => 'New item',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCminicars.pm b/lib/gcstar/GCLang/UK/GCModels/GCminicars.pm
new file mode 100644
index 0000000..e0f899a
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCminicars.pm
@@ -0,0 +1,182 @@
+{
+ package GCLang::UK::GCModels::GCminicars;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2007 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Mini vehicles collection',
+ Items => {0 => 'Vehicle',
+ 1 => 'Vehicle',
+ X => 'Vehicles',
+ lowercase1 => 'vehicle',
+ lowercaseX => 'vehicles'
+ },
+ NewItem => 'New vehicle',
+ Currency => 'Currency',
+
+# Main fields
+
+ Main => 'Main information',
+
+ Name => 'Name',
+ Exchange => 'To be sold or exchanged',
+ Wanted => 'Wanted',
+ Rating1 => 'Main rating',
+ Picture1 => 'Main picture',
+ Scale => 'Scale',
+ Manufacturer => 'Manufacturer',
+ Constructor => 'Constructor',
+ Type1 => 'Type',
+ Modele => 'Model',
+ Version => 'Version',
+ Color => 'Model color',
+ Pub => 'Advertisement',
+ Year => 'Year',
+ Reference => 'Reference',
+ Kit => 'In kit form',
+ Transformation => 'Personal transformation',
+ Comments1 => 'Comments',
+
+# Details fields
+
+ Details => 'Details',
+
+ MiscCharacteristics => 'Miscellaneous characteristics',
+ Material => 'Material',
+ Molding => 'Molding',
+ Condition => 'Condition',
+ Edition => 'Edition',
+ Collectiontype => 'Collection name',
+ Serial => 'Series',
+ Serialnumber => 'Serial number',
+ Designed => 'Design date',
+ Madein => 'Manufacture date',
+ Box1 => 'Kind of box',
+ Box2 => 'Box description',
+ Containbox => 'Box contet',
+ Rating2 => 'Realism',
+ Rating3 => 'Finish',
+ Acquisition => 'Acquisition date',
+ Location => 'Acquisition place',
+ Buyprice => 'Acquisition price',
+ Estimate => 'Estimation',
+ Comments2 => 'Comments',
+ Decorationset => 'Decoration set',
+ Characters => 'Characters',
+ CarFromFilm => 'Movie car',
+ Filmcar => 'Movie related to the vehicle',
+ Filmpart => 'Movie part/episode',
+ Parts => 'Number of parts',
+ VehiculeDetails => 'Vehicule details',
+ Detailsparts => 'Details parts',
+ Detailsdecorations => 'Kind of decorations',
+ Decorations => 'Number of decorations',
+ Lwh => 'Length / Width / Height',
+ Weight => 'Weight',
+ Framecar => 'Chassis',
+ Bodycar => 'Bodywork',
+ Colormirror => 'Model color',
+ Interior => 'Interior',
+ Wheels => 'Wheels',
+ Registrationnumber1 => 'Front registration number',
+ Registrationnumber2 => 'Back registration number',
+ RacingCar => 'Racing car',
+ Course => 'Race',
+ Courselocation => 'Race place',
+ Courseyear => 'Race date',
+ Team => 'Team',
+ Pilots => 'Pilot(s)',
+ Copilots => 'Copilot(s)',
+ Carnumber => 'Vehicle number',
+ Pub2 => 'Advertisers',
+ Finishline => 'Finish ranking',
+ Steeringwheel => 'Position of steering wheel',
+
+
+# Catalogs fields
+
+ Catalogs => 'Catalogs',
+
+ OfficialPicture => 'Official picture',
+ Barcode => 'Barcode',
+ Referencemirror => 'Reference',
+ Year3 => 'Availability date',
+ CatalogCoverPicture => 'Cover',
+ CatalogPagePicture => 'Page',
+ Catalogyear => 'Catalog year',
+ Catalogedition => 'Catalog edition',
+ Catalogpage => 'Catalog page',
+ Catalogprice => 'Catalog price',
+ Personalref => 'Personal reference',
+ Websitem => 'Mini vehicle\'s manufacturer website',
+ Websitec => 'Actual vehicle\'s manufacturer website',
+ Websiteo => 'Useful link',
+ Comments3 => 'Comments',
+
+# Pictures fields
+
+ Pictures => 'Pictures',
+
+ OthersComments => 'General remarks',
+ OthersDetails => 'Other details',
+ Top1 => 'Above',
+ Back1 => 'Below',
+ AVG => 'Front Left',
+ AV => 'Front',
+ AVD => 'Front Right',
+ G => 'Left',
+ BOX => 'Box',
+ D => 'Right',
+ ARG => 'Back Left',
+ AR => 'Back',
+ ARD => 'Back Right',
+ Others => 'Misc',
+
+# PanelLending fields
+
+ LendingExplanation => 'Useful exchanges during temporary exhibitions',
+ PanelLending => 'Lendings (for exhibitions)',
+ Comments4 => 'Comments',
+
+# Realmodel fields
+
+ Realmodel => 'Actual vehicle',
+
+ Difference => 'Differences with miniature',
+ Front2 => 'Front',
+ Back2 => 'Back',
+ Comments5 => 'Comments',
+
+ References => 'References',
+
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCmusics.pm b/lib/gcstar/GCLang/UK/GCModels/GCmusics.pm
new file mode 100644
index 0000000..d273b9b
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCmusics.pm
@@ -0,0 +1,66 @@
+{
+ package GCLang::UK::GCModels::GCmusics;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Колекція музики',
+ Items => 'Альбоми',
+ NewItem => 'Новий альбом',
+
+ Unique => 'ISRC/EAN',
+ Title => 'Назва',
+ Cover => 'Обкладинка',
+ Artist => 'Виконавець',
+ Format => 'Формат',
+ Running => 'Час виконання',
+ Release => 'Дата випуску',
+ Genre => 'Жанр',
+ Origin => 'Origin',
+
+#For tracks list
+ Tracks => 'Список доріжок',
+ Number => 'Номер',
+ Track => 'Назва',
+ Time => 'Час',
+
+ Composer => 'Композитор',
+ Producer => 'Продюсер',
+ Playlist => 'Перелік композицій',
+ Comments => 'Коментарі',
+ Label => 'Мітка',
+ Url => 'Сторінка тенет',
+
+ General => 'Загальна',
+ Details => 'Подробиці',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCperiodicals.pm b/lib/gcstar/GCLang/UK/GCModels/GCperiodicals.pm
new file mode 100644
index 0000000..c872b36
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCperiodicals.pm
@@ -0,0 +1,52 @@
+{
+ package GCLang::UK::GCModels::GCperiodicals;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Christian Jodar
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Periodicals collection',
+ Items => {0 => 'Periodical',
+ 1 => 'Periodical',
+ X => 'Periodicals'},
+ NewItem => 'New periodical',
+
+ Title => 'Title',
+ Cover => 'Cover',
+ Periodical => 'Periodical',
+ Number => 'Number',
+ Date => 'Date',
+ Subject => 'Subject',
+ Articles => 'Articles',
+
+ General => 'General',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCsmartcards.pm b/lib/gcstar/GCLang/UK/GCModels/GCsmartcards.pm
new file mode 100644
index 0000000..4272997
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCsmartcards.pm
@@ -0,0 +1,108 @@
+{
+ package GCLang::UK::GCModels::GCsmartcards;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2010 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Smart card collection',
+ Items => {0 => 'Smart card',
+ 1 => 'Smart card',
+ X => 'Smart cards'},
+ NewItem => 'New smart card',
+ Currency => 'Currency',
+
+ Help => 'Help for fields',
+ Help1 => 'Help',
+
+# Traduction des Champs "Main"
+
+ Main => 'The smart card',
+
+ Cover => 'Picture',
+
+ Name => 'Name',
+ Exchange => 'To be exchanged or sold',
+ Wanted => 'Wanted',
+ Rating1 => 'Global rating',
+ TheSmartCard => 'The smart card, front/back',
+
+ Country => 'Country',
+ Color => 'Color',
+ Type1 => 'Card type',
+ Type2 => 'Chip type',
+ Dimension => 'Length / Width / Thickness',
+
+ Box => 'Box',
+ Chip => 'Chip',
+ Year1 => 'Edition year',
+ Year2 => 'Validity year',
+ Condition => 'Condition',
+ Charge => 'Rechargeable card',
+ Variety => 'Variety',
+
+ Edition => 'Number of exemplars',
+ Serial => 'Serial number',
+ Theme => 'Theme',
+
+ Acquisition => 'Acquired on',
+
+ Catalog0 => 'Catalog',
+ Catalog1 => 'Phonecote / Infopuce (YT)',
+ Catalog2 => 'La Cote en Poche',
+
+ Reference0 => 'Reference',
+ Reference1 => 'Reference Phonecote / Infopuce (YT)',
+ Reference2 => 'Reference La Cote en Poche',
+ Reference3 => 'Other reference',
+
+ Quotationnew00 => 'Quotation for new card',
+ Quotationnew10 => 'Quotation Phonecote / Infopuce (YT)',
+ Quotationnew20 => 'Quotation La Cote en Poche',
+ Quotationnew30 => 'Cotation Autre',
+ Quotationold00 => 'Quotation for used card',
+ Quotationold10 => 'Quotation Phonecote / Infopuce (YT)',
+ Quotationold20 => 'Quotation La Cote en Poche',
+ Quotationold30 => 'Other quotation',
+
+ Title1 => 'Title',
+
+ Unit => 'Units / Minutes number',
+
+ Pressed => 'Impression type',
+ Location => 'Impression place',
+
+ Comments1 => 'Comments',
+
+ Others => 'Misc.',
+ Weight => 'Weight',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCsoftware.pm b/lib/gcstar/GCLang/UK/GCModels/GCsoftware.pm
new file mode 100644
index 0000000..8959938
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCsoftware.pm
@@ -0,0 +1,84 @@
+{
+ package GCLang::UK::GCModels::GCsoftware;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2009 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Computer software collection',
+ Items => {0 => 'Application',
+ 1 => 'Application',
+ X => 'Applications',
+ lowercase1 => 'application',
+ lowercaseX => 'applications'},
+ NewItem => 'New application',
+
+ Id => 'Id',
+ Ean => 'EAN',
+ Name => 'Name',
+ Platform => 'Platform',
+ Released => 'Release date',
+ Homepage => 'Homepage',
+ Editor => 'Editor',
+ Developer => 'Developer',
+ Category => 'Category',
+ NumberOfCopies => 'Copies',
+ Price => 'Price',
+ Box => 'Box picture',
+ Case => 'Case',
+ Manual => 'Instruction manual',
+ Executable => 'Executable',
+ Description => 'Description',
+ License => 'License',
+ Commercial => 'Commercial',
+ FreewareNoncommercial => 'Freeware (non-commercial use)',
+ OtherOpenSource => 'Other Open Source',
+ PublicDomain => 'Public Domain',
+ OtherLicense => 'Other',
+ Registration => 'Registration',
+ RegistrationInfo => 'Registration Info',
+ RegInfo => 'Registration Info',
+ RegistrationName => 'Username',
+ RegistrationNumber => 'Registration Number',
+ PanelRegistration => 'Registration Info',
+ RegistrationComments => 'Additional info or comments',
+ Screenshots => 'Screenshots',
+ Screenshot1 => 'First screenshot',
+ Screenshot2 => 'Second screenshot',
+ Comments => 'Comments',
+ Url => 'Web page',
+ General => 'General',
+ Details => 'Details',
+ Information => 'Information',
+
+ FilterRatingSelect => 'Rating At _Least...',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCstamps.pm b/lib/gcstar/GCLang/UK/GCModels/GCstamps.pm
new file mode 100644
index 0000000..64e1c8a
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCstamps.pm
@@ -0,0 +1,189 @@
+{
+ package GCLang::UK::GCModels::GCstamps;
+
+ use utf8;
+###################################################
+#
+# Copyright 2005-2007 Tian
+#
+# This file is part of GCstar.
+#
+# GCstar is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# GCstar is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GCstar; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+#
+###################################################
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Stamp collection',
+ Items => {0 => 'Stamps',
+ 1 => 'Stamp',
+ X => 'Stamps'},
+ NewItem => 'New stamp',
+
+ General => 'General',
+ Detail => 'Detail',
+ Value => 'Value',
+ Notes => 'Notes',
+ Views => 'Views',
+
+ Name => 'Name',
+ Country => 'Country',
+ Year => 'Year',
+ Catalog => 'Catalog',
+ Number => 'Number',
+ Topic => 'Topic',
+ Serie => 'Serie',
+ Designer => 'Designer',
+ Engraver => 'Engraver',
+ Type => 'Type',
+ Format => 'Format',
+ Description => 'Description',
+ Color => 'Color',
+ Gum => 'Gum',
+ Paper => 'Paper',
+ Perforation => 'Perforation',
+ PerforationSize => 'Perforation size',
+ CancellationType => 'Cancellation type',
+ Comments => 'Comments',
+ PrintingVariety => 'Printing variety',
+ IssueDate => 'Issue date',
+ EndOfIssue => 'End of issue',
+ Issue => 'Issue',
+ Grade => 'Grade',
+ Status => 'Status',
+ Adjusted => 'Adjusted',
+ Cancellation => 'Cancellation',
+ CancellationCondition => 'Cancellation condition',
+ GumCondition => 'Gum condition',
+ PerforationCondition => 'Perforation condition',
+ ConditionNotes => 'Condition notes',
+ Error => 'Error',
+ ErrorNotes => 'Error notes',
+ FaceValue => 'Face value',
+ MintValue => 'Mint value',
+ UsedValue => 'Used value',
+ PurchasedDate => 'Purchased date',
+ Quantity => 'Quantity',
+ History => 'History',
+ Picture1 => 'Picture 1',
+ Picture2 => 'Picture 2',
+ Picture3 => 'Picture 3',
+
+ AirMail => 'Air mail',
+ MilitaryStamp => 'Military stamp',
+ Official => 'Official',
+ PostageDue => 'Postage due',
+ Regular => 'Regular',
+ Revenue => 'Revenue',
+ SpecialDelivery => 'Special delivery',
+ StrikeStamp => 'Strike stamp',
+ TelegraphStamp => 'Telegraph stamp',
+ WarStamp => 'War stamp',
+ WarTaxStamp => 'War tax stamp',
+
+ Booklet => 'Booklet',
+ BookletPane => 'Booklet Pane',
+ Card => 'Card',
+ Coil => 'Coil',
+ Envelope => 'Envelope',
+ FirstDayCover => 'First Day Cover',
+ Sheet => 'Sheet',
+ Single => 'Single',
+
+ Heliogravure => 'Heliogravure',
+ Lithography => 'Lithography',
+ Offset => 'Offset',
+ Photogravure => 'Photogravure',
+ RecessPrinting => 'Recess printing',
+ Typography => 'Typography',
+
+ OriginalGum => 'Original gum',
+ Ungummed => 'Ungummed',
+ Regummed => 'Regummed',
+
+ Chalky => 'Chalky',
+ ChinaPaper => 'China paper',
+ Coarsed => 'Coarsed',
+ Glossy => 'Glossy',
+ Granite => 'Granite',
+ Laid => 'Laid',
+ Manila => 'Manila',
+ Native => 'Native',
+ Pelure => 'Pelure',
+ Quadrille => 'Quadrille',
+ Ribbed => 'Ribbed',
+ Rice => 'Rice',
+ Silk => 'Silk',
+ Smoothed => 'Smoothed',
+ Thick => 'Thick',
+ Thin => 'Thin',
+ Wove => 'Wove',
+
+ CoarsedPerforation => 'Coarsed perforation',
+ CombPerforation => 'Comb perforation',
+ CompoundPerforation => 'Compound perforation',
+ DamagedPerforation => 'Damaged perforation',
+ DoublePerforation => 'Double perforation',
+ HarrowPerforation => 'Harrow perforation',
+ LinePerforation => 'Line perforation',
+ NoPerforation => 'No perforation',
+
+ CancellationToOrder => 'Cancellation To Order',
+ FancyCancellation => 'Fancy cancellation',
+ FirstDayCancellation => 'First Day cancellation',
+ NumeralCancellation => 'Numeral cancellation',
+ PenMarked => 'Pen-Marked',
+ RailroadCancellation => 'Railroad cancellation',
+ SpecialCancellation => 'Special cancellation',
+
+ Superb => 'Superb',
+ ExtraFine => 'Extra-Fine',
+ VeryFine => 'Very fine',
+ FineVeryFine => 'Fine/Very fine',
+ Fine => 'Fine',
+ Average => 'Average',
+ Poor => 'Poor',
+
+ Owned => 'Owned',
+ Ordered => 'Ordered',
+ Sold => 'Sold',
+ ToSell => 'To sell',
+ Wanted => 'Wanted',
+
+ LightCancellation => 'Light cancellation',
+ HeavyCancellation => 'Heavy cancellation',
+ ModerateCancellation => 'Moderate cancellation',
+
+ MintNeverHinged => 'Mint never hinged',
+ MintLightHinged => 'Mint light hinged',
+ HingedRemnant => 'Hinged remnant',
+ HeavilyHinged => 'Heavily hinged',
+ LargePartOriginalGum => 'Large part original gum',
+ SmallPartOriginalGum => 'Small part original gum',
+ NoGum => 'No gum',
+
+ Perfect => 'Perfect',
+ VeryNice => 'Very nice',
+ Nice => 'Nice',
+ Incomplete => 'Incomplete',
+ );
+}
+
+1;
diff --git a/lib/gcstar/GCLang/UK/GCModels/GCwines.pm b/lib/gcstar/GCLang/UK/GCModels/GCwines.pm
new file mode 100644
index 0000000..2a25fab
--- /dev/null
+++ b/lib/gcstar/GCLang/UK/GCModels/GCwines.pm
@@ -0,0 +1,63 @@
+{
+ package GCLang::UK::GCModels::GCwines;
+
+ use utf8;
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Колекція вин',
+ Items => {0 => 'Вин',
+ 1 => 'Вино',
+ X => 'Вин'},
+ NewItem => 'Нове вино',
+
+ Name => 'Назва',
+ Designation => 'Позначка',
+ Vintage => 'Модель',
+ Vineyard => 'Виноградник',
+ Type => 'Тип',
+ Grapes => 'Виноград',
+ Soil => 'Грунт',
+ Producer => 'Виробник',
+ Country => 'Країна',
+ Volume => 'Об\'єм (мл)',
+ Alcohol => 'Спирт (%)',
+ Medal => 'Медаль/Вшанування',
+
+ Storage => 'Зберігання',
+ Location => 'Місце',
+ ShelfIndex => 'Покажчик',
+ Quantity => 'Розмір',
+ Acquisition => 'Придбано',
+ PurchaseDate => 'Дата покупки',
+ PurchasePrice => 'Вартість покупки',
+ Gift => 'Подарунок',
+ BottleLabel => 'Етикетка пляшки',
+ Website => 'Посилання на тенета',
+
+ Tasted => 'Дегустоване',
+ Comments => 'Коментарі',
+ Serving => 'Порції',
+ TastingField => 'Помітки дегустації',
+
+ General => 'Загальна',
+ Details => 'Подробиці',
+ Tasting => 'Дегустація',
+
+ TastedNo => 'Не дегустоване',
+ TastedYes => 'Дегустоване',
+
+ FilterRange => 'Діапазон',
+ FilterTastedNo => '_Ще не дегустоване',
+ FilterTastedYes => 'Уже _дегустоване',
+ FilterRatingSelect => 'Оцінка _принаймні...'
+
+ );
+}
+
+1;