diff --git a/locales/bg/app.json b/locales/bg/app.json new file mode 100644 index 0000000000..028c91fe21 --- /dev/null +++ b/locales/bg/app.json @@ -0,0 +1,115 @@ +{ +"_commenttut": "TUTORIAL", + +"_commenthead": "HEADER", + "Health": "Живот", + "Experience": "Опит", + "History": "История", + "Settings": "Настройки", + "Party": "Група", + "Logout": "Излез", + +"_commentuser": "USER", + "Anonymous": "Анонимен", + "Avatar": "Аватар", + "Level": "Ниво", + "GP": "GP", + "Head": "Шлем", + "ShowHelm": "Покажи шлем", + "Hair": "Коса", + "Skin": "Кожа", + "Profile": "Профил", + "Edit": "Редактирай", + "Save": "Запази", + "PhotoUrl": "Линк към снимка", + "FullName": "Име", + "Blurb": "Blurb", + "Websites": "Уебсайт", + "Achievements": "Постижения", + "OriginalUser": "Автентичен юзър", + "Inventory": "Инвентория", + "EggsTitle": "Яйца", + "EggsContent": "Все още нямаш никакви яйца.", + "HatchingPotionsTitle": "Отвари за излюпване", + "HatchingPotionsContent": "Все още нямаш отвари за излюпване.", + "Market": "Магазин", + "MarketTitle": "Добре дошъл в магазина!", + "MarketContent": "Иска ти се да намериш определен домашен любимец, но не искаш да чакаш да ти се падне ? Купи го от тук!", + "Stable": "Конюшни", + "Tokens": "Токъни", + +"_commentitems": "DROPS, ITEMS & REWARDS", + "_comment": "PET EGGS", + "WolfEgg": "Вълче", + "TigerEgg": "Тигърче", + "PandaEgg": "Панда", + "LionEgg": "Лъвче", + "FoxEgg": "Лисиче", + "PigEgg": "Летящо прасенце", + "DragonEgg": "Дракон", + "CactusEgg": "Кактус", + "BearEgg": "Мече", + "WolfEgg": "Вълк", + "_comment": "HATCHING POTIONS", + "BasePot": "Основна", + "WhitePot": "Бяла", + "DesertPot": "Пустинна", + "RedPot": "Червена", + "ShadePot": "Сянка", + "SkeletonPot": "Скелет", + "ZombiePot": "Зомби", + "CottonPinkPot": "Розов захарен памук", + "CottonBluePot": "Син захарен памук", + "GoldenPot": "Златен", + "_comment": "GOLD REWARDS", + + + +"_commentmain": "MAIN WINDOW", + "Habits": "Навици", + "NewHabit": "Нов навик", + "Edit": "Промени", + "Text": "Текст", + "ExtraNotes": "Забележки", + "Directions/Actions": "Посоки/Дейности", + "AdvancedOptions": "Разширени опции", + "Difficulty": "Трудност", + "DifficultyHelpTitle": "Колко труден е тази задача?", + "DifficultyHelpContent": "Това умножава стойността на задачата. Използвай пестеливо, разчитай повече на нашия алгоритъм за корекция на стойностите. Но някои задачи са много по-трудни ("Да си напишеш дисертацията" срещу "Да си почистиш зъбите с конец"). Кликни за повече информация.", + "Easy": "Лесно", + "Medium": "Средно", + "Hard": "Трудно", + "Save&Close": "Запази и Излез", + "Delete": "Изтрий", + "Progress": "Прогрес", + "Score": "Точки", + "Daily": "Ежедневни задачи", + "NewDaily": "Нова задача", + "Repeat": "Повтаряй", + "Su": "Нед", + "M": "Пон", + "T": "Вт", + "We": "Ср", + "Th": "Чет", + "F": "Пет", + "S": "Съб", + "Todos": "Да направя", + "NewTodo": "Ново", + "DueDate": "Краен срок", + "Remaining": "Оставащи", + "Complete": "Завършени", + "Rewards": "Награди", + "Gold": "Злато", + "Silver": "Сребро", + "NewReward": "Нова награда", + "Price": "Цена", + +"_commentfooter": "FOOTER", + +"_commentmisc": "MISC", + "RemoveAds": "Премахни рекламите", + "WhyAds": "Защо има реклами?", + "WhyAdsContent1": "Habit is an open source project, and can use all the help it can get - consider this a donation to the contributors. You also get 20 tokens from the purchase, which you can use to buy special items.", + "WhyAdsContent2": "'Hey, I backed the Kickstarter!' - follow ", + "WhyAdsContent3": "these instructions." +} diff --git a/src/app/i18n.coffee b/src/app/i18n.coffee index 07b233a562..2aa6e70e9f 100644 --- a/src/app/i18n.coffee +++ b/src/app/i18n.coffee @@ -1,5 +1,6 @@ i18n = require 'derby-i18n' i18n.plurals.add 'he', (n) -> n +i18n.plurals.add 'bg', (n) -> n module.exports = i18n diff --git a/src/app/index.coffee b/src/app/index.coffee index 4395dc970f..26d8963c4c 100644 --- a/src/app/index.coffee +++ b/src/app/index.coffee @@ -9,7 +9,7 @@ derby.use require 'derby-auth/components' # Translations i18n = require './i18n' i18n.localize app, - availableLocales: ['en', 'he'] + availableLocales: ['en', 'he', 'bg'] defaultLocale: 'en' helpers = require './helpers'