rubocop and improved lang support
This commit is contained in:
parent
29f0b78667
commit
4c33688b19
7 changed files with 492 additions and 452 deletions
503
languages.rb
503
languages.rb
|
|
@ -1,327 +1,328 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
NO = {
|
||||
en: {
|
||||
language: "English",
|
||||
language: 'English',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "No." },
|
||||
{ context: :formal, phrase: "I’m afraid I must decline." },
|
||||
{ context: :informal, phrase: "Nope." },
|
||||
{ context: :humorous, phrase: "Not in a million years!" },
|
||||
{ context: :indirect, phrase: "I don’t think that’s going to work." },
|
||||
{ context: :emphatic, phrase: "Absolutely not." },
|
||||
{ context: :business, phrase: "Unfortunately, that’s not feasible at this time." },
|
||||
{ context: :friendship, phrase: "Sorry, not today!" },
|
||||
{ context: :family, phrase: "Maybe another time." },
|
||||
{ context: :spicy, phrase: "Hell no!" },
|
||||
{ context: :offensive, phrase: "Not a chance in hell." },
|
||||
{ context: :very_offensive, phrase: "F*** no!" },
|
||||
{ context: :simple, phrase: 'No.' },
|
||||
{ context: :formal, phrase: 'I’m afraid I must decline.' },
|
||||
{ context: :informal, phrase: 'Nope.' },
|
||||
{ context: :humorous, phrase: 'Not in a million years!' },
|
||||
{ context: :indirect, phrase: 'I don’t think that’s going to work.' },
|
||||
{ context: :emphatic, phrase: 'Absolutely not.' },
|
||||
{ context: :business, phrase: 'Unfortunately, that’s not feasible at this time.' },
|
||||
{ context: :friendship, phrase: 'Sorry, not today!' },
|
||||
{ context: :family, phrase: 'Maybe another time.' },
|
||||
{ context: :spicy, phrase: 'Hell no!' },
|
||||
{ context: :offensive, phrase: 'Not a chance in hell.' },
|
||||
{ context: :very_offensive, phrase: 'F*** no!' },
|
||||
{ context: :shady, phrase: "I can't help you with that." }
|
||||
]
|
||||
},
|
||||
zh: {
|
||||
language: "中文",
|
||||
language: '中文',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "不" },
|
||||
{ context: :formal, phrase: "很抱歉,我无法同意。" },
|
||||
{ context: :informal, phrase: "不行!" },
|
||||
{ context: :humorous, phrase: "做梦吧!" },
|
||||
{ context: :indirect, phrase: "恐怕不行。" },
|
||||
{ context: :emphatic, phrase: "绝对不行!" },
|
||||
{ context: :business, phrase: "很遗憾,这不可行。" },
|
||||
{ context: :friendship, phrase: "今天不行哦。" },
|
||||
{ context: :family, phrase: "下次吧。" },
|
||||
{ context: :spicy, phrase: "想都别想!" },
|
||||
{ context: :offensive, phrase: "别烦我!" },
|
||||
{ context: :very_offensive, phrase: "滚开!" },
|
||||
{ context: :shady, phrase: "我不掺和。" }
|
||||
{ context: :simple, phrase: '不' },
|
||||
{ context: :formal, phrase: '很抱歉,我无法同意。' },
|
||||
{ context: :informal, phrase: '不行!' },
|
||||
{ context: :humorous, phrase: '做梦吧!' },
|
||||
{ context: :indirect, phrase: '恐怕不行。' },
|
||||
{ context: :emphatic, phrase: '绝对不行!' },
|
||||
{ context: :business, phrase: '很遗憾,这不可行。' },
|
||||
{ context: :friendship, phrase: '今天不行哦。' },
|
||||
{ context: :family, phrase: '下次吧。' },
|
||||
{ context: :spicy, phrase: '想都别想!' },
|
||||
{ context: :offensive, phrase: '别烦我!' },
|
||||
{ context: :very_offensive, phrase: '滚开!' },
|
||||
{ context: :shady, phrase: '我不掺和。' }
|
||||
]
|
||||
},
|
||||
hi: {
|
||||
language: "हिन्दी",
|
||||
language: 'हिन्दी',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "नहीं" },
|
||||
{ context: :formal, phrase: "माफ़ कीजिए, यह संभव नहीं है।" },
|
||||
{ context: :informal, phrase: "बिल्कुल नहीं!" },
|
||||
{ context: :humorous, phrase: "सपनों में ही हो सकता है!" },
|
||||
{ context: :indirect, phrase: "मुझे नहीं लगता कि यह हो सकता है।" },
|
||||
{ context: :emphatic, phrase: "कभी नहीं!" },
|
||||
{ context: :business, phrase: "क्षमा करें, यह संभव नहीं है।" },
|
||||
{ context: :friendship, phrase: "आज नहीं यार।" },
|
||||
{ context: :family, phrase: "शायद बाद में।" },
|
||||
{ context: :spicy, phrase: "कभी नहीं!" },
|
||||
{ context: :offensive, phrase: "दफा हो जाओ!" },
|
||||
{ context: :very_offensive, phrase: "भाग जाओ यहाँ से!" },
|
||||
{ context: :shady, phrase: "मैं इसमें शामिल नहीं हूँ।" }
|
||||
{ context: :simple, phrase: 'नहीं' },
|
||||
{ context: :formal, phrase: 'माफ़ कीजिए, यह संभव नहीं है।' },
|
||||
{ context: :informal, phrase: 'बिल्कुल नहीं!' },
|
||||
{ context: :humorous, phrase: 'सपनों में ही हो सकता है!' },
|
||||
{ context: :indirect, phrase: 'मुझे नहीं लगता कि यह हो सकता है।' },
|
||||
{ context: :emphatic, phrase: 'कभी नहीं!' },
|
||||
{ context: :business, phrase: 'क्षमा करें, यह संभव नहीं है।' },
|
||||
{ context: :friendship, phrase: 'आज नहीं यार।' },
|
||||
{ context: :family, phrase: 'शायद बाद में।' },
|
||||
{ context: :spicy, phrase: 'कभी नहीं!' },
|
||||
{ context: :offensive, phrase: 'दफा हो जाओ!' },
|
||||
{ context: :very_offensive, phrase: 'भाग जाओ यहाँ से!' },
|
||||
{ context: :shady, phrase: 'मैं इसमें शामिल नहीं हूँ।' }
|
||||
]
|
||||
},
|
||||
es: {
|
||||
language: "Español",
|
||||
language: 'Español',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "No." },
|
||||
{ context: :formal, phrase: "Lamento informarle que no es posible." },
|
||||
{ context: :informal, phrase: "¡Ni loco!" },
|
||||
{ context: :humorous, phrase: "¡Ni en sueños!" },
|
||||
{ context: :indirect, phrase: "No creo que sea posible." },
|
||||
{ context: :emphatic, phrase: "¡De ninguna manera!" },
|
||||
{ context: :business, phrase: "Desafortunadamente, no podemos aceptar." },
|
||||
{ context: :friendship, phrase: "Hoy no, amigo." },
|
||||
{ context: :family, phrase: "Quizás después." },
|
||||
{ context: :spicy, phrase: "¡Ni de coña!" },
|
||||
{ context: :offensive, phrase: "¡Ni en pedo!" },
|
||||
{ context: :very_offensive, phrase: "¡Ni cagando!" },
|
||||
{ context: :shady, phrase: "Eso no se puede hacer aquí." }
|
||||
{ context: :simple, phrase: 'No.' },
|
||||
{ context: :formal, phrase: 'Lamento informarle que no es posible.' },
|
||||
{ context: :informal, phrase: '¡Ni loco!' },
|
||||
{ context: :humorous, phrase: '¡Ni en sueños!' },
|
||||
{ context: :indirect, phrase: 'No creo que sea posible.' },
|
||||
{ context: :emphatic, phrase: '¡De ninguna manera!' },
|
||||
{ context: :business, phrase: 'Desafortunadamente, no podemos aceptar.' },
|
||||
{ context: :friendship, phrase: 'Hoy no, amigo.' },
|
||||
{ context: :family, phrase: 'Quizás después.' },
|
||||
{ context: :spicy, phrase: '¡Ni de coña!' },
|
||||
{ context: :offensive, phrase: '¡Ni en pedo!' },
|
||||
{ context: :very_offensive, phrase: '¡Ni cagando!' },
|
||||
{ context: :shady, phrase: 'Eso no se puede hacer aquí.' }
|
||||
]
|
||||
},
|
||||
ar: {
|
||||
language: "العربية",
|
||||
language: 'العربية',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "لا" },
|
||||
{ context: :formal, phrase: "عذرًا، لا يمكنني الموافقة." },
|
||||
{ context: :informal, phrase: "مستحيل!" },
|
||||
{ context: :humorous, phrase: "في الأحلام فقط!" },
|
||||
{ context: :indirect, phrase: "أخشى أن هذا غير ممكن." },
|
||||
{ context: :emphatic, phrase: "مستحيل تمامًا!" },
|
||||
{ context: :business, phrase: "للأسف، لا يمكننا تلبية الطلب." },
|
||||
{ context: :friendship, phrase: "ليس اليوم، آسف." },
|
||||
{ context: :family, phrase: "ربما لاحقًا." },
|
||||
{ context: :spicy, phrase: "ولا في الأحلام!" },
|
||||
{ context: :offensive, phrase: "انسى الموضوع!" },
|
||||
{ context: :very_offensive, phrase: "روح من وجهي!" },
|
||||
{ context: :shady, phrase: "هذا ليس من شأني." }
|
||||
{ context: :simple, phrase: 'لا' },
|
||||
{ context: :formal, phrase: 'عذرًا، لا يمكنني الموافقة.' },
|
||||
{ context: :informal, phrase: 'مستحيل!' },
|
||||
{ context: :humorous, phrase: 'في الأحلام فقط!' },
|
||||
{ context: :indirect, phrase: 'أخشى أن هذا غير ممكن.' },
|
||||
{ context: :emphatic, phrase: 'مستحيل تمامًا!' },
|
||||
{ context: :business, phrase: 'للأسف، لا يمكننا تلبية الطلب.' },
|
||||
{ context: :friendship, phrase: 'ليس اليوم، آسف.' },
|
||||
{ context: :family, phrase: 'ربما لاحقًا.' },
|
||||
{ context: :spicy, phrase: 'ولا في الأحلام!' },
|
||||
{ context: :offensive, phrase: 'انسى الموضوع!' },
|
||||
{ context: :very_offensive, phrase: 'روح من وجهي!' },
|
||||
{ context: :shady, phrase: 'هذا ليس من شأني.' }
|
||||
]
|
||||
},
|
||||
fr: {
|
||||
language: "Français",
|
||||
language: 'Français',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "Non." },
|
||||
{ context: :formal, phrase: "Je suis au regret de devoir refuser." },
|
||||
{ context: :informal, phrase: "Nan." },
|
||||
{ context: :humorous, phrase: "Même pas en rêve !" },
|
||||
{ context: :indirect, phrase: "Je ne pense pas que ce soit possible." },
|
||||
{ context: :emphatic, phrase: "Absolument pas." },
|
||||
{ context: :simple, phrase: 'Non.' },
|
||||
{ context: :formal, phrase: 'Je suis au regret de devoir refuser.' },
|
||||
{ context: :informal, phrase: 'Nan.' },
|
||||
{ context: :humorous, phrase: 'Même pas en rêve !' },
|
||||
{ context: :indirect, phrase: 'Je ne pense pas que ce soit possible.' },
|
||||
{ context: :emphatic, phrase: 'Absolument pas.' },
|
||||
{ context: :business, phrase: "Malheureusement, ce n'est pas envisageable." },
|
||||
{ context: :friendship, phrase: "Pas aujourd'hui, désolé !" },
|
||||
{ context: :family, phrase: "Une autre fois, peut-être." },
|
||||
{ context: :spicy, phrase: "Pas question !" },
|
||||
{ context: :offensive, phrase: "Va te faire voir !" },
|
||||
{ context: :very_offensive, phrase: "Va te faire foutre !" },
|
||||
{ context: :shady, phrase: "On ne fait pas ça ici." }
|
||||
{ context: :family, phrase: 'Une autre fois, peut-être.' },
|
||||
{ context: :spicy, phrase: 'Pas question !' },
|
||||
{ context: :offensive, phrase: 'Va te faire voir !' },
|
||||
{ context: :very_offensive, phrase: 'Va te faire foutre !' },
|
||||
{ context: :shady, phrase: 'On ne fait pas ça ici.' }
|
||||
]
|
||||
},
|
||||
bn: {
|
||||
language: "বাংলা",
|
||||
language: 'বাংলা',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "না" },
|
||||
{ context: :formal, phrase: "দুঃখিত, এটা সম্ভব নয়।" },
|
||||
{ context: :informal, phrase: "না রে!" },
|
||||
{ context: :humorous, phrase: "স্বপ্নেও না!" },
|
||||
{ context: :indirect, phrase: "সম্ভব হবে না মনে হয়।" },
|
||||
{ context: :emphatic, phrase: "একেবারেই না!" },
|
||||
{ context: :business, phrase: "দুঃখিত, এটা করা যাবে না।" },
|
||||
{ context: :friendship, phrase: "আজ না, বন্ধু।" },
|
||||
{ context: :family, phrase: "পরের বার।" },
|
||||
{ context: :spicy, phrase: "স্বপ্নেও না!" },
|
||||
{ context: :offensive, phrase: "দূর হ!" },
|
||||
{ context: :very_offensive, phrase: "চলে যা এখান থেকে!" },
|
||||
{ context: :shady, phrase: "আমি এই ব্যাপারে নেই।" }
|
||||
{ context: :simple, phrase: 'না' },
|
||||
{ context: :formal, phrase: 'দুঃখিত, এটা সম্ভব নয়।' },
|
||||
{ context: :informal, phrase: 'না রে!' },
|
||||
{ context: :humorous, phrase: 'স্বপ্নেও না!' },
|
||||
{ context: :indirect, phrase: 'সম্ভব হবে না মনে হয়।' },
|
||||
{ context: :emphatic, phrase: 'একেবারেই না!' },
|
||||
{ context: :business, phrase: 'দুঃখিত, এটা করা যাবে না।' },
|
||||
{ context: :friendship, phrase: 'আজ না, বন্ধু।' },
|
||||
{ context: :family, phrase: 'পরের বার।' },
|
||||
{ context: :spicy, phrase: 'স্বপ্নেও না!' },
|
||||
{ context: :offensive, phrase: 'দূর হ!' },
|
||||
{ context: :very_offensive, phrase: 'চলে যা এখান থেকে!' },
|
||||
{ context: :shady, phrase: 'আমি এই ব্যাপারে নেই।' }
|
||||
]
|
||||
},
|
||||
pt: {
|
||||
language: "Português",
|
||||
language: 'Português',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "Não." },
|
||||
{ context: :formal, phrase: "Lamento, mas não é possível." },
|
||||
{ context: :informal, phrase: "Nem pensar!" },
|
||||
{ context: :humorous, phrase: "Nem sonhando!" },
|
||||
{ context: :indirect, phrase: "Acho que não vai dar." },
|
||||
{ context: :emphatic, phrase: "De jeito nenhum!" },
|
||||
{ context: :business, phrase: "Infelizmente, não será possível." },
|
||||
{ context: :friendship, phrase: "Hoje não rola." },
|
||||
{ context: :family, phrase: "Talvez depois." },
|
||||
{ context: :spicy, phrase: "Nem ferrando!" },
|
||||
{ context: :offensive, phrase: "Tá maluco?" },
|
||||
{ context: :very_offensive, phrase: "Nem fodendo!" },
|
||||
{ context: :shady, phrase: "Aqui não dá pra fazer isso." }
|
||||
{ context: :simple, phrase: 'Não.' },
|
||||
{ context: :formal, phrase: 'Lamento, mas não é possível.' },
|
||||
{ context: :informal, phrase: 'Nem pensar!' },
|
||||
{ context: :humorous, phrase: 'Nem sonhando!' },
|
||||
{ context: :indirect, phrase: 'Acho que não vai dar.' },
|
||||
{ context: :emphatic, phrase: 'De jeito nenhum!' },
|
||||
{ context: :business, phrase: 'Infelizmente, não será possível.' },
|
||||
{ context: :friendship, phrase: 'Hoje não rola.' },
|
||||
{ context: :family, phrase: 'Talvez depois.' },
|
||||
{ context: :spicy, phrase: 'Nem ferrando!' },
|
||||
{ context: :offensive, phrase: 'Tá maluco?' },
|
||||
{ context: :very_offensive, phrase: 'Nem fodendo!' },
|
||||
{ context: :shady, phrase: 'Aqui não dá pra fazer isso.' }
|
||||
]
|
||||
},
|
||||
ru: {
|
||||
language: "Русский",
|
||||
language: 'Русский',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "Нет." },
|
||||
{ context: :formal, phrase: "К сожалению, я вынужден отказать." },
|
||||
{ context: :informal, phrase: "Нетушки!" },
|
||||
{ context: :humorous, phrase: "Только во сне!" },
|
||||
{ context: :indirect, phrase: "Я думаю, это невозможно." },
|
||||
{ context: :emphatic, phrase: "Ни за что!" },
|
||||
{ context: :business, phrase: "К сожалению, это невозможно." },
|
||||
{ context: :friendship, phrase: "Сегодня не получится." },
|
||||
{ context: :family, phrase: "Может, потом." },
|
||||
{ context: :spicy, phrase: "Да ни в жизнь!" },
|
||||
{ context: :offensive, phrase: "Отвали!" },
|
||||
{ context: :very_offensive, phrase: "Пошёл на хрен!" },
|
||||
{ context: :shady, phrase: "Я в это не лезу." }
|
||||
{ context: :simple, phrase: 'Нет.' },
|
||||
{ context: :formal, phrase: 'К сожалению, я вынужден отказать.' },
|
||||
{ context: :informal, phrase: 'Нетушки!' },
|
||||
{ context: :humorous, phrase: 'Только во сне!' },
|
||||
{ context: :indirect, phrase: 'Я думаю, это невозможно.' },
|
||||
{ context: :emphatic, phrase: 'Ни за что!' },
|
||||
{ context: :business, phrase: 'К сожалению, это невозможно.' },
|
||||
{ context: :friendship, phrase: 'Сегодня не получится.' },
|
||||
{ context: :family, phrase: 'Может, потом.' },
|
||||
{ context: :spicy, phrase: 'Да ни в жизнь!' },
|
||||
{ context: :offensive, phrase: 'Отвали!' },
|
||||
{ context: :very_offensive, phrase: 'Пошёл на хрен!' },
|
||||
{ context: :shady, phrase: 'Я в это не лезу.' }
|
||||
]
|
||||
},
|
||||
ur: {
|
||||
language: "اردو",
|
||||
language: 'اردو',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "نہیں" },
|
||||
{ context: :formal, phrase: "معاف کیجئے، یہ ممکن نہیں۔" },
|
||||
{ context: :informal, phrase: "ہرگز نہیں!" },
|
||||
{ context: :humorous, phrase: "خواب میں بھی نہیں!" },
|
||||
{ context: :indirect, phrase: "مجھے نہیں لگتا کہ یہ ممکن ہے۔" },
|
||||
{ context: :emphatic, phrase: "کبھی نہیں!" },
|
||||
{ context: :business, phrase: "معذرت، یہ ممکن نہیں۔" },
|
||||
{ context: :friendship, phrase: "آج نہیں یار۔" },
|
||||
{ context: :family, phrase: "شاید بعد میں۔" },
|
||||
{ context: :spicy, phrase: "خواب میں بھی نہیں!" },
|
||||
{ context: :offensive, phrase: "دفع ہو جاؤ!" },
|
||||
{ context: :very_offensive, phrase: "نکل جاؤ یہاں سے!" },
|
||||
{ context: :shady, phrase: "میں اس میں شامل نہیں ہوں۔" }
|
||||
{ context: :simple, phrase: 'نہیں' },
|
||||
{ context: :formal, phrase: 'معاف کیجئے، یہ ممکن نہیں۔' },
|
||||
{ context: :informal, phrase: 'ہرگز نہیں!' },
|
||||
{ context: :humorous, phrase: 'خواب میں بھی نہیں!' },
|
||||
{ context: :indirect, phrase: 'مجھے نہیں لگتا کہ یہ ممکن ہے۔' },
|
||||
{ context: :emphatic, phrase: 'کبھی نہیں!' },
|
||||
{ context: :business, phrase: 'معذرت، یہ ممکن نہیں۔' },
|
||||
{ context: :friendship, phrase: 'آج نہیں یار۔' },
|
||||
{ context: :family, phrase: 'شاید بعد میں۔' },
|
||||
{ context: :spicy, phrase: 'خواب میں بھی نہیں!' },
|
||||
{ context: :offensive, phrase: 'دفع ہو جاؤ!' },
|
||||
{ context: :very_offensive, phrase: 'نکل جاؤ یہاں سے!' },
|
||||
{ context: :shady, phrase: 'میں اس میں شامل نہیں ہوں۔' }
|
||||
]
|
||||
},
|
||||
id: {
|
||||
language: "Bahasa Indonesia",
|
||||
language: 'Bahasa Indonesia',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "Tidak." },
|
||||
{ context: :formal, phrase: "Maaf, saya tidak bisa." },
|
||||
{ context: :informal, phrase: "Nggak." },
|
||||
{ context: :humorous, phrase: "Mimpi aja dulu!" },
|
||||
{ context: :indirect, phrase: "Sepertinya tidak bisa." },
|
||||
{ context: :emphatic, phrase: "Sama sekali tidak!" },
|
||||
{ context: :business, phrase: "Sayangnya, itu tidak memungkinkan." },
|
||||
{ context: :friendship, phrase: "Bukan hari ini, bro." },
|
||||
{ context: :family, phrase: "Mungkin nanti." },
|
||||
{ context: :spicy, phrase: "Jangan harap!" },
|
||||
{ context: :offensive, phrase: "Lupakan saja!" },
|
||||
{ context: :very_offensive, phrase: "Pergi sana!" },
|
||||
{ context: :shady, phrase: "Gua nggak ikut campur." }
|
||||
{ context: :simple, phrase: 'Tidak.' },
|
||||
{ context: :formal, phrase: 'Maaf, saya tidak bisa.' },
|
||||
{ context: :informal, phrase: 'Nggak.' },
|
||||
{ context: :humorous, phrase: 'Mimpi aja dulu!' },
|
||||
{ context: :indirect, phrase: 'Sepertinya tidak bisa.' },
|
||||
{ context: :emphatic, phrase: 'Sama sekali tidak!' },
|
||||
{ context: :business, phrase: 'Sayangnya, itu tidak memungkinkan.' },
|
||||
{ context: :friendship, phrase: 'Bukan hari ini, bro.' },
|
||||
{ context: :family, phrase: 'Mungkin nanti.' },
|
||||
{ context: :spicy, phrase: 'Jangan harap!' },
|
||||
{ context: :offensive, phrase: 'Lupakan saja!' },
|
||||
{ context: :very_offensive, phrase: 'Pergi sana!' },
|
||||
{ context: :shady, phrase: 'Gua nggak ikut campur.' }
|
||||
]
|
||||
},
|
||||
de: {
|
||||
language: "Deutsch",
|
||||
language: 'Deutsch',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "Nein." },
|
||||
{ context: :formal, phrase: "Leider muss ich ablehnen." },
|
||||
{ context: :informal, phrase: "Nö." },
|
||||
{ context: :humorous, phrase: "Nicht mal im Traum!" },
|
||||
{ context: :indirect, phrase: "Ich glaube, das wird nichts." },
|
||||
{ context: :emphatic, phrase: "Auf keinen Fall!" },
|
||||
{ context: :business, phrase: "Das ist derzeit leider nicht möglich." },
|
||||
{ context: :friendship, phrase: "Heute nicht, sorry." },
|
||||
{ context: :family, phrase: "Vielleicht später." },
|
||||
{ context: :spicy, phrase: "Kommt gar nicht in Frage!" },
|
||||
{ context: :offensive, phrase: "Vergiss es!" },
|
||||
{ context: :very_offensive, phrase: "Leck mich!" },
|
||||
{ context: :shady, phrase: "Das läuft hier nicht." }
|
||||
{ context: :simple, phrase: 'Nein.' },
|
||||
{ context: :formal, phrase: 'Leider muss ich ablehnen.' },
|
||||
{ context: :informal, phrase: 'Nö.' },
|
||||
{ context: :humorous, phrase: 'Nicht mal im Traum!' },
|
||||
{ context: :indirect, phrase: 'Ich glaube, das wird nichts.' },
|
||||
{ context: :emphatic, phrase: 'Auf keinen Fall!' },
|
||||
{ context: :business, phrase: 'Das ist derzeit leider nicht möglich.' },
|
||||
{ context: :friendship, phrase: 'Heute nicht, sorry.' },
|
||||
{ context: :family, phrase: 'Vielleicht später.' },
|
||||
{ context: :spicy, phrase: 'Kommt gar nicht in Frage!' },
|
||||
{ context: :offensive, phrase: 'Vergiss es!' },
|
||||
{ context: :very_offensive, phrase: 'Leck mich!' },
|
||||
{ context: :shady, phrase: 'Das läuft hier nicht.' }
|
||||
]
|
||||
},
|
||||
ja: {
|
||||
language: "日本語",
|
||||
language: '日本語',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "いいえ" },
|
||||
{ context: :formal, phrase: "申し訳ありませんが、できません。" },
|
||||
{ context: :informal, phrase: "だめ" },
|
||||
{ context: :humorous, phrase: "夢の中だけですね。" },
|
||||
{ context: :indirect, phrase: "ちょっと難しいですね。" },
|
||||
{ context: :emphatic, phrase: "絶対に無理です。" },
|
||||
{ context: :business, phrase: "申し訳ありませんが、ご要望にはお応えできません。" },
|
||||
{ context: :friendship, phrase: "今日は無理だよ。" },
|
||||
{ context: :family, phrase: "また今度ね。" },
|
||||
{ context: :spicy, phrase: "絶対ダメ!" },
|
||||
{ context: :offensive, phrase: "ふざけんな!" },
|
||||
{ context: :very_offensive, phrase: "消えろ!" },
|
||||
{ context: :shady, phrase: "それはできない。" }
|
||||
{ context: :simple, phrase: 'いいえ' },
|
||||
{ context: :formal, phrase: '申し訳ありませんが、できません。' },
|
||||
{ context: :informal, phrase: 'だめ' },
|
||||
{ context: :humorous, phrase: '夢の中だけですね。' },
|
||||
{ context: :indirect, phrase: 'ちょっと難しいですね。' },
|
||||
{ context: :emphatic, phrase: '絶対に無理です。' },
|
||||
{ context: :business, phrase: '申し訳ありませんが、ご要望にはお応えできません。' },
|
||||
{ context: :friendship, phrase: '今日は無理だよ。' },
|
||||
{ context: :family, phrase: 'また今度ね。' },
|
||||
{ context: :spicy, phrase: '絶対ダメ!' },
|
||||
{ context: :offensive, phrase: 'ふざけんな!' },
|
||||
{ context: :very_offensive, phrase: '消えろ!' },
|
||||
{ context: :shady, phrase: 'それはできない。' }
|
||||
]
|
||||
},
|
||||
sv: {
|
||||
language: "Svenska",
|
||||
language: 'Svenska',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "Nej." },
|
||||
{ context: :formal, phrase: "Jag är ledsen, men jag måste tacka nej." },
|
||||
{ context: :informal, phrase: "Nä." },
|
||||
{ context: :humorous, phrase: "Inte ens i dina drömmar!" },
|
||||
{ context: :indirect, phrase: "Jag tror inte det går." },
|
||||
{ context: :emphatic, phrase: "Absolut inte!" },
|
||||
{ context: :business, phrase: "Tyvärr är det inte möjligt just nu." },
|
||||
{ context: :friendship, phrase: "Inte idag, kompis." },
|
||||
{ context: :family, phrase: "Kanske en annan gång." },
|
||||
{ context: :spicy, phrase: "Aldrig i livet!" },
|
||||
{ context: :offensive, phrase: "Glöm det!" },
|
||||
{ context: :very_offensive, phrase: "Dra åt helvete!" },
|
||||
{ context: :shady, phrase: "Jag vill inte vara inblandad." }
|
||||
{ context: :simple, phrase: 'Nej.' },
|
||||
{ context: :formal, phrase: 'Jag är ledsen, men jag måste tacka nej.' },
|
||||
{ context: :informal, phrase: 'Nä.' },
|
||||
{ context: :humorous, phrase: 'Inte ens i dina drömmar!' },
|
||||
{ context: :indirect, phrase: 'Jag tror inte det går.' },
|
||||
{ context: :emphatic, phrase: 'Absolut inte!' },
|
||||
{ context: :business, phrase: 'Tyvärr är det inte möjligt just nu.' },
|
||||
{ context: :friendship, phrase: 'Inte idag, kompis.' },
|
||||
{ context: :family, phrase: 'Kanske en annan gång.' },
|
||||
{ context: :spicy, phrase: 'Aldrig i livet!' },
|
||||
{ context: :offensive, phrase: 'Glöm det!' },
|
||||
{ context: :very_offensive, phrase: 'Dra åt helvete!' },
|
||||
{ context: :shady, phrase: 'Jag vill inte vara inblandad.' }
|
||||
]
|
||||
},
|
||||
da: {
|
||||
language: "Dansk",
|
||||
language: 'Dansk',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "Nej." },
|
||||
{ context: :formal, phrase: "Jeg er ked af det, men jeg må afslå." },
|
||||
{ context: :informal, phrase: "Næ." },
|
||||
{ context: :humorous, phrase: "Ikke engang i dine drømme!" },
|
||||
{ context: :indirect, phrase: "Det tror jeg ikke, vi kan." },
|
||||
{ context: :emphatic, phrase: "Aldrig i livet!" },
|
||||
{ context: :business, phrase: "Desværre er det ikke muligt på nuværende tidspunkt." },
|
||||
{ context: :friendship, phrase: "Ikke i dag, ven." },
|
||||
{ context: :family, phrase: "Måske en anden gang." },
|
||||
{ context: :spicy, phrase: "Aldrig nogensinde!" },
|
||||
{ context: :offensive, phrase: "Glem det!" },
|
||||
{ context: :very_offensive, phrase: "Skrid!" },
|
||||
{ context: :shady, phrase: "Det kan jeg ikke hjælpe med." }
|
||||
{ context: :simple, phrase: 'Nej.' },
|
||||
{ context: :formal, phrase: 'Jeg er ked af det, men jeg må afslå.' },
|
||||
{ context: :informal, phrase: 'Næ.' },
|
||||
{ context: :humorous, phrase: 'Ikke engang i dine drømme!' },
|
||||
{ context: :indirect, phrase: 'Det tror jeg ikke, vi kan.' },
|
||||
{ context: :emphatic, phrase: 'Aldrig i livet!' },
|
||||
{ context: :business, phrase: 'Desværre er det ikke muligt på nuværende tidspunkt.' },
|
||||
{ context: :friendship, phrase: 'Ikke i dag, ven.' },
|
||||
{ context: :family, phrase: 'Måske en anden gang.' },
|
||||
{ context: :spicy, phrase: 'Aldrig nogensinde!' },
|
||||
{ context: :offensive, phrase: 'Glem det!' },
|
||||
{ context: :very_offensive, phrase: 'Skrid!' },
|
||||
{ context: :shady, phrase: 'Det kan jeg ikke hjælpe med.' }
|
||||
]
|
||||
},
|
||||
no: {
|
||||
language: "Norsk",
|
||||
language: 'Norsk',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "Nei." },
|
||||
{ context: :formal, phrase: "Beklager, men jeg må takke nei." },
|
||||
{ context: :informal, phrase: "Næi." },
|
||||
{ context: :humorous, phrase: "Ikke engang i dine drømmer!" },
|
||||
{ context: :indirect, phrase: "Jeg tror ikke det lar seg gjøre." },
|
||||
{ context: :emphatic, phrase: "Absolutt ikke!" },
|
||||
{ context: :business, phrase: "Dessverre er det ikke mulig nå." },
|
||||
{ context: :friendship, phrase: "Ikke i dag, kompis." },
|
||||
{ context: :family, phrase: "Kanskje en annen gang." },
|
||||
{ context: :spicy, phrase: "Aldri i livet!" },
|
||||
{ context: :offensive, phrase: "Glem det!" },
|
||||
{ context: :very_offensive, phrase: "Dra til helvete!" },
|
||||
{ context: :shady, phrase: "Det har jeg ikke noe med." }
|
||||
{ context: :simple, phrase: 'Nei.' },
|
||||
{ context: :formal, phrase: 'Beklager, men jeg må takke nei.' },
|
||||
{ context: :informal, phrase: 'Næi.' },
|
||||
{ context: :humorous, phrase: 'Ikke engang i dine drømmer!' },
|
||||
{ context: :indirect, phrase: 'Jeg tror ikke det lar seg gjøre.' },
|
||||
{ context: :emphatic, phrase: 'Absolutt ikke!' },
|
||||
{ context: :business, phrase: 'Dessverre er det ikke mulig nå.' },
|
||||
{ context: :friendship, phrase: 'Ikke i dag, kompis.' },
|
||||
{ context: :family, phrase: 'Kanskje en annen gang.' },
|
||||
{ context: :spicy, phrase: 'Aldri i livet!' },
|
||||
{ context: :offensive, phrase: 'Glem det!' },
|
||||
{ context: :very_offensive, phrase: 'Dra til helvete!' },
|
||||
{ context: :shady, phrase: 'Det har jeg ikke noe med.' }
|
||||
]
|
||||
},
|
||||
is: {
|
||||
language: "Íslenska",
|
||||
language: 'Íslenska',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "Nei." },
|
||||
{ context: :formal, phrase: "Því miður verð ég að hafna þessu." },
|
||||
{ context: :informal, phrase: "Neibb." },
|
||||
{ context: :humorous, phrase: "Ekki einu sinni í draumum þínum!" },
|
||||
{ context: :indirect, phrase: "Ég held að það gangi ekki." },
|
||||
{ context: :emphatic, phrase: "Aldrei!" },
|
||||
{ context: :business, phrase: "Því miður er það ekki hægt núna." },
|
||||
{ context: :friendship, phrase: "Ekki í dag, vinur." },
|
||||
{ context: :family, phrase: "Kannski seinna." },
|
||||
{ context: :spicy, phrase: "Aldrei á ævinni!" },
|
||||
{ context: :offensive, phrase: "Gleymdu því!" },
|
||||
{ context: :very_offensive, phrase: "Farðu til fjandans!" },
|
||||
{ context: :shady, phrase: "Ég ætla ekki að blanda mér í það." }
|
||||
{ context: :simple, phrase: 'Nei.' },
|
||||
{ context: :formal, phrase: 'Því miður verð ég að hafna þessu.' },
|
||||
{ context: :informal, phrase: 'Neibb.' },
|
||||
{ context: :humorous, phrase: 'Ekki einu sinni í draumum þínum!' },
|
||||
{ context: :indirect, phrase: 'Ég held að það gangi ekki.' },
|
||||
{ context: :emphatic, phrase: 'Aldrei!' },
|
||||
{ context: :business, phrase: 'Því miður er það ekki hægt núna.' },
|
||||
{ context: :friendship, phrase: 'Ekki í dag, vinur.' },
|
||||
{ context: :family, phrase: 'Kannski seinna.' },
|
||||
{ context: :spicy, phrase: 'Aldrei á ævinni!' },
|
||||
{ context: :offensive, phrase: 'Gleymdu því!' },
|
||||
{ context: :very_offensive, phrase: 'Farðu til fjandans!' },
|
||||
{ context: :shady, phrase: 'Ég ætla ekki að blanda mér í það.' }
|
||||
]
|
||||
},
|
||||
fo: {
|
||||
language: "Føroyskt",
|
||||
language: 'Føroyskt',
|
||||
phrases: [
|
||||
{ context: :simple, phrase: "Nei." },
|
||||
{ context: :formal, phrase: "Eg má tíverri nokta." },
|
||||
{ context: :informal, phrase: "Nei, ikki nú." },
|
||||
{ context: :humorous, phrase: "Ikki einu sinni í dreymum tín!" },
|
||||
{ context: :indirect, phrase: "Eg haldi ikki tað ber til." },
|
||||
{ context: :emphatic, phrase: "Aldri!" },
|
||||
{ context: :business, phrase: "Tíverri er tað ikki gjørligt í løtuni." },
|
||||
{ context: :friendship, phrase: "Ikki í dag, vinur." },
|
||||
{ context: :family, phrase: "Kanska seinni." },
|
||||
{ context: :spicy, phrase: "Aldri í lívinum!" },
|
||||
{ context: :offensive, phrase: "Gloym tað!" },
|
||||
{ context: :very_offensive, phrase: "Far til helvitis!" },
|
||||
{ context: :shady, phrase: "Tað vil eg ikki blanda meg í." }
|
||||
{ context: :simple, phrase: 'Nei.' },
|
||||
{ context: :formal, phrase: 'Eg má tíverri nokta.' },
|
||||
{ context: :informal, phrase: 'Nei, ikki nú.' },
|
||||
{ context: :humorous, phrase: 'Ikki einu sinni í dreymum tín!' },
|
||||
{ context: :indirect, phrase: 'Eg haldi ikki tað ber til.' },
|
||||
{ context: :emphatic, phrase: 'Aldri!' },
|
||||
{ context: :business, phrase: 'Tíverri er tað ikki gjørligt í løtuni.' },
|
||||
{ context: :friendship, phrase: 'Ikki í dag, vinur.' },
|
||||
{ context: :family, phrase: 'Kanska seinni.' },
|
||||
{ context: :spicy, phrase: 'Aldri í lívinum!' },
|
||||
{ context: :offensive, phrase: 'Gloym tað!' },
|
||||
{ context: :very_offensive, phrase: 'Far til helvitis!' },
|
||||
{ context: :shady, phrase: 'Tað vil eg ikki blanda meg í.' }
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
}.freeze
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue