* follow the instructions for registering the language as stated on the Tootsuite's docs. * Added translation strings from latest master Adding ‏ characters to many strings that are misdirected in the interface. A tiny grammar fix Updates of Hebrew strings to v1.3.1 Hebrew translation of the mailer templates. Fix strings and a missing comma. Just discovered two string keys were updated. this should lay Travis' mind to rest at last. Remove mentions before counting characters to decide RTL ratio Fixes for PR #2573 updated strings for latest master Undo RTL counting, moved out to another branch for future consideration...
		
			
				
	
	
		
			42 lines
		
	
	
		
			855 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			855 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module SettingsHelper
 | |
|   HUMAN_LOCALES = {
 | |
|     en: 'English',
 | |
|     ar: 'العربية',
 | |
|     bg: 'Български',
 | |
|     de: 'Deutsch',
 | |
|     eo: 'Esperanto',
 | |
|     es: 'Español',
 | |
|     fa: 'فارسی',
 | |
|     fi: 'Suomi',
 | |
|     fr: 'Français',
 | |
|     he: 'עברית',
 | |
|     hr: 'Hrvatski',
 | |
|     hu: 'Magyar',
 | |
|     id: 'Bahasa Indonesia',
 | |
|     io: 'Ido',
 | |
|     it: 'Italiano',
 | |
|     ja: '日本語',
 | |
|     nl: 'Nederlands',
 | |
|     no: 'Norsk',
 | |
|     oc: 'Occitan',
 | |
|     pl: 'Polszczyzna',
 | |
|     pt: 'Português',
 | |
|     'pt-BR': 'Português do Brasil',
 | |
|     ru: 'Русский',
 | |
|     uk: 'Українська',
 | |
|     'zh-CN': '简体中文',
 | |
|     'zh-HK': '繁體中文(香港)',
 | |
|     'zh-TW': '繁體中文(臺灣)',
 | |
|   }.freeze
 | |
| 
 | |
|   def human_locale(locale)
 | |
|     HUMAN_LOCALES[locale]
 | |
|   end
 | |
| 
 | |
|   def hash_to_object(hash)
 | |
|     HashObject.new(hash)
 | |
|   end
 | |
| end
 |