From 17dda695d4b6e0c3728c53e41bb0bd80fec34693 Mon Sep 17 00:00:00 2001 From: Ezequiel Santos Date: Tue, 22 Feb 2022 11:23:51 -0300 Subject: [PATCH 1/5] Adding i18n-js gem --- Gemfile | 3 +++ Gemfile.lock | 17 +++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 Gemfile create mode 100644 Gemfile.lock diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..818d200 --- /dev/null +++ b/Gemfile @@ -0,0 +1,3 @@ +source 'https://rubygems.org' + +gem "i18n-js" \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..51a3696 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,17 @@ +GEM + remote: https://rubygems.org/ + specs: + concurrent-ruby (1.1.9) + i18n (1.10.0) + concurrent-ruby (~> 1.0) + i18n-js (3.9.1) + i18n (>= 0.6.6) + +PLATFORMS + arm64-darwin-21 + +DEPENDENCIES + i18n-js + +BUNDLED WITH + 2.3.7 From 0dfb30691c32e1a09617a0b310a2aa2a27fae521 Mon Sep 17 00:00:00 2001 From: Ezequiel Santos Date: Tue, 22 Feb 2022 11:28:10 -0300 Subject: [PATCH 2/5] Adding rails-i18n --- Gemfile | 3 ++- Gemfile.lock | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 818d200..53a98d1 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,4 @@ source 'https://rubygems.org' -gem "i18n-js" \ No newline at end of file +gem "i18n-js" +gem "rails-i18n" \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 51a3696..614f4f5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,17 +1,70 @@ GEM remote: https://rubygems.org/ specs: + actionpack (6.1.4.6) + actionview (= 6.1.4.6) + activesupport (= 6.1.4.6) + rack (~> 2.0, >= 2.0.9) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.2.0) + actionview (6.1.4.6) + activesupport (= 6.1.4.6) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.1, >= 1.2.0) + activesupport (6.1.4.6) + concurrent-ruby (~> 1.0, >= 1.0.2) + i18n (>= 1.6, < 2) + minitest (>= 5.1) + tzinfo (~> 2.0) + zeitwerk (~> 2.3) + builder (3.2.4) concurrent-ruby (1.1.9) + crass (1.0.6) + erubi (1.10.0) i18n (1.10.0) concurrent-ruby (~> 1.0) i18n-js (3.9.1) i18n (>= 0.6.6) + loofah (2.14.0) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) + method_source (1.0.0) + minitest (5.15.0) + nokogiri (1.13.3-arm64-darwin) + racc (~> 1.4) + racc (1.6.0) + rack (2.2.3) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.4.2) + loofah (~> 2.3) + rails-i18n (7.0.2) + i18n (>= 0.7, < 2) + railties (>= 6.0.0, < 8) + railties (6.1.4.6) + actionpack (= 6.1.4.6) + activesupport (= 6.1.4.6) + method_source + rake (>= 0.13) + thor (~> 1.0) + rake (13.0.6) + thor (1.2.1) + tzinfo (2.0.4) + concurrent-ruby (~> 1.0) + zeitwerk (2.5.4) PLATFORMS arm64-darwin-21 DEPENDENCIES i18n-js + rails-i18n BUNDLED WITH 2.3.7 From 0d29c133157da69ff6f4d3272ffd5e4cf4816707 Mon Sep 17 00:00:00 2001 From: Ezequiel Santos Date: Tue, 22 Feb 2022 17:56:44 -0300 Subject: [PATCH 3/5] Adding support to multi language (language.json) --- build.rb | 22 +- index.template | 8 +- languages.json | 1826 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 1851 insertions(+), 5 deletions(-) create mode 100644 languages.json diff --git a/build.rb b/build.rb index 065c4a4..6e06985 100755 --- a/build.rb +++ b/build.rb @@ -2,6 +2,7 @@ require 'json' require 'date' +require 'fileutils' def years_since(date_string) years = if date_string =~ /^\d{4}$/ @@ -32,6 +33,7 @@ def icon(key) template = File.read('index.template') technologies = JSON.parse(File.read('technologies.json')) +languages = JSON.parse(File.read('languages.json')) @icons = JSON.parse(File.read('icons.json')) technology_html = technologies.map do |tech| @@ -54,4 +56,22 @@ def icon(key) generated_html = template.sub("TECH_GOES_HERE", technology_html) generated_html = generated_html.sub("DROPDOWN_OPTIONS", dropdown_html) -File.write("index.html", generated_html) +lang_codes = languages.map.with_index do |language, index| + + generated_html_translated = generated_html.sub("TITLE_TEXT", language['title_text']) + generated_html_translated = generated_html_translated.sub("MAIN_TEXT", language['main_text']) + generated_html_translated = generated_html_translated.sub("HOW_LONG_TEXT", language['howlong_text']) + generated_html_translated = generated_html_translated.sub("EXISTED_TEXT", language['existed_text']) + generated_html_translated = generated_html_translated.sub("FOOTER_TEXT", language['footer_text']) + + path = "localized/" + language['code'] + FileUtils.mkdir_p(path) + + if (language['code'] == 'en') + File.write("index.html", generated_html_translated) + end + + File.write(path + "/index.html", generated_html_translated) +end.join + + diff --git a/index.template b/index.template index 824096b..99b3b3f 100644 --- a/index.template +++ b/index.template @@ -24,7 +24,7 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> - You want HOW MANY years experience?! + TITLE_TEXT
-

How long has existed? +

HOW_LONG_TEXT EXISTED_TEXT DROPDOWN_OPTIONS

-

Thinking of asking for five years of experience in a two year old technology? Think again!

+

MAIN_TEXT

TECH_GOES_HERE
diff --git a/languages.json b/languages.json new file mode 100644 index 0000000..1f46d0b --- /dev/null +++ b/languages.json @@ -0,0 +1,1826 @@ +/** + * @author Phil Teare + * using wikipedia data + */ +[ + { + "code": "ab", + "name": "Abkhaz", + "nativeName": "аҧсуа", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "aa", + "name": "Afar", + "nativeName": "Afaraf", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "af", + "name": "Afrikaans", + "nativeName": "Afrikaans", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ak", + "name": "Akan", + "nativeName": "Akan", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sq", + "name": "Albanian", + "nativeName": "Shqip", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "am", + "name": "Amharic", + "nativeName": "አማርኛ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ar", + "name": "Arabic", + "nativeName": "العربية", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "an", + "name": "Aragonese", + "nativeName": "Aragonés", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "hy", + "name": "Armenian", + "nativeName": "Հայերեն", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "as", + "name": "Assamese", + "nativeName": "অসমীয়া", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "av", + "name": "Avaric", + "nativeName": "авар мацӀ, магӀарул мацӀ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ae", + "name": "Avestan", + "nativeName": "avesta", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ay", + "name": "Aymara", + "nativeName": "aymar aru", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "az", + "name": "Azerbaijani", + "nativeName": "azərbaycan dili", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "bm", + "name": "Bambara", + "nativeName": "bamanankan", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ba", + "name": "Bashkir", + "nativeName": "башҡорт теле", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "eu", + "name": "Basque", + "nativeName": "euskara, euskera", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "be", + "name": "Belarusian", + "nativeName": "Беларуская", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "bn", + "name": "Bengali", + "nativeName": "বাংলা", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "bh", + "name": "Bihari", + "nativeName": "भोजपुरी", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "bi", + "name": "Bislama", + "nativeName": "Bislama", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "bs", + "name": "Bosnian", + "nativeName": "bosanski jezik", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "br", + "name": "Breton", + "nativeName": "brezhoneg", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "bg", + "name": "Bulgarian", + "nativeName": "български език", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "my", + "name": "Burmese", + "nativeName": "ဗမာစာ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ca", + "name": "Catalan; Valencian", + "nativeName": "Català", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ch", + "name": "Chamorro", + "nativeName": "Chamoru", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ce", + "name": "Chechen", + "nativeName": "нохчийн мотт", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ny", + "name": "Chichewa; Chewa; Nyanja", + "nativeName": "chiCheŵa, chinyanja", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "zh", + "name": "Chinese", + "nativeName": "中文 (Zhōngwén), 汉语, 漢語", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "cv", + "name": "Chuvash", + "nativeName": "чӑваш чӗлхи", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "kw", + "name": "Cornish", + "nativeName": "Kernewek", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "co", + "name": "Corsican", + "nativeName": "corsu, lingua corsa", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "cr", + "name": "Cree", + "nativeName": "ᓀᐦᐃᔭᐍᐏᐣ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "hr", + "name": "Croatian", + "nativeName": "hrvatski", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "cs", + "name": "Czech", + "nativeName": "česky, čeština", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "da", + "name": "Danish", + "nativeName": "dansk", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "dv", + "name": "Divehi; Dhivehi; Maldivian;", + "nativeName": "ދިވެހި", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "nl", + "name": "Dutch", + "nativeName": "Nederlands, Vlaams", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "en", + "name": "English", + "nativeName": "English", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "eo", + "name": "Esperanto", + "nativeName": "Esperanto", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "et", + "name": "Estonian", + "nativeName": "eesti, eesti keel", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ee", + "name": "Ewe", + "nativeName": "Eʋegbe", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "fo", + "name": "Faroese", + "nativeName": "føroyskt", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "fj", + "name": "Fijian", + "nativeName": "vosa Vakaviti", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "fi", + "name": "Finnish", + "nativeName": "suomi, suomen kieli", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "fr", + "name": "French", + "nativeName": "français, langue française", + "title_text": "Vous voulez COMBIEN d'années d'expérience?!", + "main_text": "Vous songez à demander cinq ans d'expérience dans une technologie vieille de deux ans? Détrompez-vous!", + "footer_text": "Une technologie vous manque ? Trouvez ceci sur GitHub. Tu me cherches? Crier sur Twitter.", + "howlong_text": "Combien de temps a", + "existed_text": "existé?" + }, + { + "code": "ff", + "name": "Fula; Fulah; Pulaar; Pular", + "nativeName": "Fulfulde, Pulaar, Pular", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "gl", + "name": "Galician", + "nativeName": "Galego", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ka", + "name": "Georgian", + "nativeName": "ქართული", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "de", + "name": "German", + "nativeName": "Deutsch", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "el", + "name": "Greek, Modern", + "nativeName": "Ελληνικά", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "gn", + "name": "Guaraní", + "nativeName": "Avañeẽ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "gu", + "name": "Gujarati", + "nativeName": "ગુજરાતી", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ht", + "name": "Haitian; Haitian Creole", + "nativeName": "Kreyòl ayisyen", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ha", + "name": "Hausa", + "nativeName": "Hausa, هَوُسَ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "he", + "name": "Hebrew (modern)", + "nativeName": "עברית", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "hz", + "name": "Herero", + "nativeName": "Otjiherero", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "hi", + "name": "Hindi", + "nativeName": "हिन्दी, हिंदी", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ho", + "name": "Hiri Motu", + "nativeName": "Hiri Motu", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "hu", + "name": "Hungarian", + "nativeName": "Magyar", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ia", + "name": "Interlingua", + "nativeName": "Interlingua", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "id", + "name": "Indonesian", + "nativeName": "Bahasa Indonesia", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ie", + "name": "Interlingue", + "nativeName": "Originally called Occidental; then Interlingue after WWII", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ga", + "name": "Irish", + "nativeName": "Gaeilge", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ig", + "name": "Igbo", + "nativeName": "Asụsụ Igbo", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ik", + "name": "Inupiaq", + "nativeName": "Iñupiaq, Iñupiatun", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "io", + "name": "Ido", + "nativeName": "Ido", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "is", + "name": "Icelandic", + "nativeName": "Íslenska", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "it", + "name": "Italian", + "nativeName": "Italiano", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "iu", + "name": "Inuktitut", + "nativeName": "ᐃᓄᒃᑎᑐᑦ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ja", + "name": "Japanese", + "nativeName": "日本語 (にほんご/にっぽんご)", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "jv", + "name": "Javanese", + "nativeName": "basa Jawa", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "kl", + "name": "Kalaallisut, Greenlandic", + "nativeName": "kalaallisut, kalaallit oqaasii", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "kn", + "name": "Kannada", + "nativeName": "ಕನ್ನಡ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "kr", + "name": "Kanuri", + "nativeName": "Kanuri", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ks", + "name": "Kashmiri", + "nativeName": "कश्मीरी, كشميري", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "kk", + "name": "Kazakh", + "nativeName": "Қазақ тілі", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "km", + "name": "Khmer", + "nativeName": "ភាសាខ្មែរ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ki", + "name": "Kikuyu, Gikuyu", + "nativeName": "Gĩkũyũ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "rw", + "name": "Kinyarwanda", + "nativeName": "Ikinyarwanda", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ky", + "name": "Kirghiz, Kyrgyz", + "nativeName": "кыргыз тили", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "kv", + "name": "Komi", + "nativeName": "коми кыв", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "kg", + "name": "Kongo", + "nativeName": "KiKongo", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ko", + "name": "Korean", + "nativeName": "한국어 (韓國語), 조선말 (朝鮮語)", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ku", + "name": "Kurdish", + "nativeName": "Kurdî, كوردی", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "kj", + "name": "Kwanyama, Kuanyama", + "nativeName": "Kuanyama", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "la", + "name": "Latin", + "nativeName": "latine, lingua latina", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "lb", + "name": "Luxembourgish, Letzeburgesch", + "nativeName": "Lëtzebuergesch", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "lg", + "name": "Luganda", + "nativeName": "Luganda", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "li", + "name": "Limburgish, Limburgan, Limburger", + "nativeName": "Limburgs", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ln", + "name": "Lingala", + "nativeName": "Lingála", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "lo", + "name": "Lao", + "nativeName": "ພາສາລາວ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "lt", + "name": "Lithuanian", + "nativeName": "lietuvių kalba", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "lu", + "name": "Luba-Katanga", + "nativeName": "", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "lv", + "name": "Latvian", + "nativeName": "latviešu valoda", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "gv", + "name": "Manx", + "nativeName": "Gaelg, Gailck", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "mk", + "name": "Macedonian", + "nativeName": "македонски јазик", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "mg", + "name": "Malagasy", + "nativeName": "Malagasy fiteny", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ms", + "name": "Malay", + "nativeName": "bahasa Melayu, بهاس ملايو", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ml", + "name": "Malayalam", + "nativeName": "മലയാളം", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "mt", + "name": "Maltese", + "nativeName": "Malti", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "mi", + "name": "Māori", + "nativeName": "te reo Māori", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "mr", + "name": "Marathi (Marāṭhī)", + "nativeName": "मराठी", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "mh", + "name": "Marshallese", + "nativeName": "Kajin M̧ajeļ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "mn", + "name": "Mongolian", + "nativeName": "монгол", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "na", + "name": "Nauru", + "nativeName": "Ekakairũ Naoero", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "nv", + "name": "Navajo, Navaho", + "nativeName": "Diné bizaad, Dinékʼehǰí", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "nb", + "name": "Norwegian Bokmål", + "nativeName": "Norsk bokmål", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "nd", + "name": "North Ndebele", + "nativeName": "isiNdebele", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ne", + "name": "Nepali", + "nativeName": "नेपाली", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ng", + "name": "Ndonga", + "nativeName": "Owambo", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "nn", + "name": "Norwegian Nynorsk", + "nativeName": "Norsk nynorsk", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "no", + "name": "Norwegian", + "nativeName": "Norsk", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ii", + "name": "Nuosu", + "nativeName": "ꆈꌠ꒿ Nuosuhxop", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "nr", + "name": "South Ndebele", + "nativeName": "isiNdebele", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "oc", + "name": "Occitan", + "nativeName": "Occitan", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "oj", + "name": "Ojibwe, Ojibwa", + "nativeName": "ᐊᓂᔑᓈᐯᒧᐎᓐ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "cu", + "name": "Old Church Slavonic, Church Slavic, Church Slavonic, Old Bulgarian, Old Slavonic", + "nativeName": "ѩзыкъ словѣньскъ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "om", + "name": "Oromo", + "nativeName": "Afaan Oromoo", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "or", + "name": "Oriya", + "nativeName": "ଓଡ଼ିଆ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "os", + "name": "Ossetian, Ossetic", + "nativeName": "ирон æвзаг", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "pa", + "name": "Panjabi, Punjabi", + "nativeName": "ਪੰਜਾਬੀ, پنجابی", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "pi", + "name": "Pāli", + "nativeName": "पाऴि", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "fa", + "name": "Persian", + "nativeName": "فارسی", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "pl", + "name": "Polish", + "nativeName": "polski", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ps", + "name": "Pashto, Pushto", + "nativeName": "پښتو", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "pt", + "name": "Portuguese", + "nativeName": "Português", + "title_text": "Você quer quantos anos de experiência?!", + "main_text": "Pensando em pedir cinco anos de experiência em uma tecnologia de dois anos? Pense novamente!", + "footer_text": "Faltando alguma tecnologia? Adicione no repositório no GitHub. Precisa de mim? dá um grito no meu Twitter.", + "howlong_text": "Há quanto tempo", + "existed_text": "existe" + }, + { + "code": "qu", + "name": "Quechua", + "nativeName": "Runa Simi, Kichwa", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "rm", + "name": "Romansh", + "nativeName": "rumantsch grischun", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "rn", + "name": "Kirundi", + "nativeName": "kiRundi", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ro", + "name": "Romanian, Moldavian, Moldovan", + "nativeName": "română", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ru", + "name": "Russian", + "nativeName": "русский язык", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sa", + "name": "Sanskrit (Saṁskṛta)", + "nativeName": "संस्कृतम्", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sc", + "name": "Sardinian", + "nativeName": "sardu", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sd", + "name": "Sindhi", + "nativeName": "सिन्धी, سنڌي، سندھی", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "se", + "name": "Northern Sami", + "nativeName": "Davvisámegiella", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sm", + "name": "Samoan", + "nativeName": "gagana faa Samoa", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sg", + "name": "Sango", + "nativeName": "yângâ tî sängö", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sr", + "name": "Serbian", + "nativeName": "српски језик", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "gd", + "name": "Scottish Gaelic; Gaelic", + "nativeName": "Gàidhlig", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sn", + "name": "Shona", + "nativeName": "chiShona", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "si", + "name": "Sinhala, Sinhalese", + "nativeName": "සිංහල", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sk", + "name": "Slovak", + "nativeName": "slovenčina", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sl", + "name": "Slovene", + "nativeName": "slovenščina", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "so", + "name": "Somali", + "nativeName": "Soomaaliga, af Soomaali", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "st", + "name": "Southern Sotho", + "nativeName": "Sesotho", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "es", + "name": "Spanish; Castilian", + "nativeName": "español, castellano", + "title_text": "¿Quieres CUÁNTOS años de experiencia?", + "main_text": "¿Estás pensando en pedir cinco años de experiencia en una tecnología con dos años de antigüedad? ¡Piénsalo de nuevo!", + "footer_text": "¿Falta una tecnología? Encuentra este repositorio en GitHub. ¿Quieres un pedazo de mí? Grita en Twitter.", + "howlong_text": "Cuánto tiempo tiene", + "existed_text": "¿existió?" + }, + { + "code": "su", + "name": "Sundanese", + "nativeName": "Basa Sunda", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sw", + "name": "Swahili", + "nativeName": "Kiswahili", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ss", + "name": "Swati", + "nativeName": "SiSwati", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "sv", + "name": "Swedish", + "nativeName": "svenska", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ta", + "name": "Tamil", + "nativeName": "தமிழ்", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "te", + "name": "Telugu", + "nativeName": "తెలుగు", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "tg", + "name": "Tajik", + "nativeName": "тоҷикӣ, toğikī, تاجیکی", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "th", + "name": "Thai", + "nativeName": "ไทย", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ti", + "name": "Tigrinya", + "nativeName": "ትግርኛ", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "bo", + "name": "Tibetan Standard, Tibetan, Central", + "nativeName": "བོད་ཡིག", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "tk", + "name": "Turkmen", + "nativeName": "Türkmen, Түркмен", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "tl", + "name": "Tagalog", + "nativeName": "Wikang Tagalog, ᜏᜒᜃᜅ᜔ ᜆᜄᜎᜓᜄ᜔", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "tn", + "name": "Tswana", + "nativeName": "Setswana", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "to", + "name": "Tonga (Tonga Islands)", + "nativeName": "faka Tonga", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "tr", + "name": "Turkish", + "nativeName": "Türkçe", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ts", + "name": "Tsonga", + "nativeName": "Xitsonga", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "tt", + "name": "Tatar", + "nativeName": "татарча, tatarça, تاتارچا", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "tw", + "name": "Twi", + "nativeName": "Twi", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ty", + "name": "Tahitian", + "nativeName": "Reo Tahiti", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ug", + "name": "Uighur, Uyghur", + "nativeName": "Uyƣurqə, ئۇيغۇرچە", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "uk", + "name": "Ukrainian", + "nativeName": "українська", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ur", + "name": "Urdu", + "nativeName": "اردو", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "uz", + "name": "Uzbek", + "nativeName": "zbek, Ўзбек, أۇزبېك", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "ve", + "name": "Venda", + "nativeName": "Tshivenḓa", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "vi", + "name": "Vietnamese", + "nativeName": "Tiếng Việt", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "vo", + "name": "Volapük", + "nativeName": "Volapük", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "wa", + "name": "Walloon", + "nativeName": "Walon", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "cy", + "name": "Welsh", + "nativeName": "Cymraeg", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "wo", + "name": "Wolof", + "nativeName": "Wollof", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "fy", + "name": "Western Frisian", + "nativeName": "Frysk", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "xh", + "name": "Xhosa", + "nativeName": "isiXhosa", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "yi", + "name": "Yiddish", + "nativeName": "ייִדיש", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "yo", + "name": "Yoruba", + "nativeName": "Yorùbá", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + }, + { + "code": "za", + "name": "Zhuang, Chuang", + "nativeName": "Saɯ cueŋƅ, Saw cuengh", + "title_text": "You want HOW MANY years experience?!", + "main_text": "Thinking of asking for five years of experience in a two year old technology? Think again!", + "footer_text": "Missing a technology? Find this repo on GitHub. Want a piece of me? Hurl abuse on Twitter.", + "howlong_text": "How long has", + "existed_text": "existed?" + } +] \ No newline at end of file From 626f9105429540a345a5b83638b9caf30d4af9f8 Mon Sep 17 00:00:00 2001 From: Ezequiel Santos Date: Tue, 22 Feb 2022 17:56:57 -0300 Subject: [PATCH 4/5] Revert "Adding rails-i18n" This reverts commit 0dfb30691c32e1a09617a0b310a2aa2a27fae521. --- Gemfile | 3 +-- Gemfile.lock | 53 ---------------------------------------------------- 2 files changed, 1 insertion(+), 55 deletions(-) diff --git a/Gemfile b/Gemfile index 53a98d1..818d200 100644 --- a/Gemfile +++ b/Gemfile @@ -1,4 +1,3 @@ source 'https://rubygems.org' -gem "i18n-js" -gem "rails-i18n" \ No newline at end of file +gem "i18n-js" \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index 614f4f5..51a3696 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,70 +1,17 @@ GEM remote: https://rubygems.org/ specs: - actionpack (6.1.4.6) - actionview (= 6.1.4.6) - activesupport (= 6.1.4.6) - rack (~> 2.0, >= 2.0.9) - rack-test (>= 0.6.3) - rails-dom-testing (~> 2.0) - rails-html-sanitizer (~> 1.0, >= 1.2.0) - actionview (6.1.4.6) - activesupport (= 6.1.4.6) - builder (~> 3.1) - erubi (~> 1.4) - rails-dom-testing (~> 2.0) - rails-html-sanitizer (~> 1.1, >= 1.2.0) - activesupport (6.1.4.6) - concurrent-ruby (~> 1.0, >= 1.0.2) - i18n (>= 1.6, < 2) - minitest (>= 5.1) - tzinfo (~> 2.0) - zeitwerk (~> 2.3) - builder (3.2.4) concurrent-ruby (1.1.9) - crass (1.0.6) - erubi (1.10.0) i18n (1.10.0) concurrent-ruby (~> 1.0) i18n-js (3.9.1) i18n (>= 0.6.6) - loofah (2.14.0) - crass (~> 1.0.2) - nokogiri (>= 1.5.9) - method_source (1.0.0) - minitest (5.15.0) - nokogiri (1.13.3-arm64-darwin) - racc (~> 1.4) - racc (1.6.0) - rack (2.2.3) - rack-test (1.1.0) - rack (>= 1.0, < 3) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) - nokogiri (>= 1.6) - rails-html-sanitizer (1.4.2) - loofah (~> 2.3) - rails-i18n (7.0.2) - i18n (>= 0.7, < 2) - railties (>= 6.0.0, < 8) - railties (6.1.4.6) - actionpack (= 6.1.4.6) - activesupport (= 6.1.4.6) - method_source - rake (>= 0.13) - thor (~> 1.0) - rake (13.0.6) - thor (1.2.1) - tzinfo (2.0.4) - concurrent-ruby (~> 1.0) - zeitwerk (2.5.4) PLATFORMS arm64-darwin-21 DEPENDENCIES i18n-js - rails-i18n BUNDLED WITH 2.3.7 From 01cfbea668b2905368af98a509f1d2a77d0167bc Mon Sep 17 00:00:00 2001 From: Ezequiel Santos Date: Tue, 22 Feb 2022 17:58:22 -0300 Subject: [PATCH 5/5] Deleted Gemfile --- Gemfile | 3 --- Gemfile.lock | 17 ----------------- 2 files changed, 20 deletions(-) delete mode 100644 Gemfile delete mode 100644 Gemfile.lock diff --git a/Gemfile b/Gemfile deleted file mode 100644 index 818d200..0000000 --- a/Gemfile +++ /dev/null @@ -1,3 +0,0 @@ -source 'https://rubygems.org' - -gem "i18n-js" \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index 51a3696..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,17 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - concurrent-ruby (1.1.9) - i18n (1.10.0) - concurrent-ruby (~> 1.0) - i18n-js (3.9.1) - i18n (>= 0.6.6) - -PLATFORMS - arm64-darwin-21 - -DEPENDENCIES - i18n-js - -BUNDLED WITH - 2.3.7