@@ -41,7 +41,11 @@ export default {
default: () => []
},
disabled: Boolean,
- small: Boolean
+ small: Boolean,
+ menuMaxHeight: {
+ type: String,
+ default: '224px'
+ }
},
data() {
return {
diff --git a/client/plugins/i18n.js b/client/plugins/i18n.js
index 475a6231..a277de0e 100644
--- a/client/plugins/i18n.js
+++ b/client/plugins/i18n.js
@@ -38,7 +38,30 @@ Vue.prototype.$languageCodeOptions = Object.keys(languageCodeMap).map(code => {
// iTunes search API uses ISO 3166 country codes: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2
const podcastSearchRegionMap = {
+ 'br': { label: 'Brasil' },
+ 'be': { label: 'België / Belgique / Belgien' },
+ 'cz': { label: 'Česko' },
+ 'dk': { label: 'Danmark' },
+ 'de': { label: 'Deutschland' },
+ 'ee': { label: 'Eesti' },
+ 'es': { label: 'España / Espanya / Espainia' },
+ 'fr': { label: 'France' },
+ 'hr': { label: 'Hrvatska' },
+ 'il': { label: 'ישראל / إسرائيل' },
+ 'it': { label: 'Italia' },
+ 'lu': { label: 'Luxembourg / Luxemburg / Lëtezebuerg' },
+ 'hu': { label: 'Magyarország' },
+ 'nl': { label: 'Nederland' },
+ 'no': { label: 'Norge' },
+ 'at': { label: 'Österreich' },
+ 'pl': { label: 'Polska' },
+ 'pt': { label: 'Portugal' },
+ 'ru': { label: 'Россия' },
+ 'ch': { label: 'Schweiz / Suisse / Svizzera' },
+ 'se': { label: 'Sverige' },
+ 'vn': { label: 'Việt Nam' },
'ua': { label: 'Україна' },
+ 'gb': { label: 'United Kingdom' },
'us': { label: 'United States' },
'cn': { label: '中国' }
}