diff options
| author | Marak <[email protected]> | 2017-03-01 15:11:22 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-03-01 15:11:22 -0500 |
| commit | 8c43fe8f7cf81b60fc77be5510228ec8bd38f9d3 (patch) | |
| tree | 391b06cd852f2b6afccdaff6c31cc239ca1cc6e9 /lib | |
| parent | d9369eafe02c442b455cd775f9a69a094f16a704 (diff) | |
| parent | d2d32ab4845f2303d7ffd7eb858eb3c5b631aa23 (diff) | |
| download | faker-8c43fe8f7cf81b60fc77be5510228ec8bd38f9d3.tar.xz faker-8c43fe8f7cf81b60fc77be5510228ec8bd38f9d3.zip | |
Merge pull request #476 from AlmazN/master
[api] ru locale hacker directory
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/locales/ru/hacker/adjective.js | 20 | ||||
| -rw-r--r-- | lib/locales/ru/hacker/index.js | 6 | ||||
| -rw-r--r-- | lib/locales/ru/hacker/ingverb.js | 18 | ||||
| -rw-r--r-- | lib/locales/ru/hacker/noun.js | 26 | ||||
| -rw-r--r-- | lib/locales/ru/hacker/verb.js | 20 | ||||
| -rw-r--r-- | lib/locales/ru/index.js | 1 |
6 files changed, 91 insertions, 0 deletions
diff --git a/lib/locales/ru/hacker/adjective.js b/lib/locales/ru/hacker/adjective.js new file mode 100644 index 00000000..c3b16769 --- /dev/null +++ b/lib/locales/ru/hacker/adjective.js @@ -0,0 +1,20 @@ +module["exports"] = [ + "вспомогательный", + "основной", + "внутренний", + "цифровой", + "open-source", + "виртуальный", + "кросс-платформенный", + "излишний", + "онлайн", + "сенсорный", + "многобайтный", + "bluetooth", + "беспроводной", + "1080p", + "нейронный", + "оптический", + "твердотельный", + "мобильный" +]; diff --git a/lib/locales/ru/hacker/index.js b/lib/locales/ru/hacker/index.js new file mode 100644 index 00000000..bae5ec9f --- /dev/null +++ b/lib/locales/ru/hacker/index.js @@ -0,0 +1,6 @@ +var hacker = {}; +module['exports'] = hacker; +hacker.adjective = require("./adjective"); +hacker.noun = require("./noun"); +hacker.verb = require("./verb"); +hacker.ingverb = require("./ingverb"); diff --git a/lib/locales/ru/hacker/ingverb.js b/lib/locales/ru/hacker/ingverb.js new file mode 100644 index 00000000..7d4ac451 --- /dev/null +++ b/lib/locales/ru/hacker/ingverb.js @@ -0,0 +1,18 @@ +module["exports"] = [ + "резервное копирование", + "обход", + "взлом", + "переопределение", + "сжатие", + "копирование", + "навигация", + "индексирование", + "соединение", + "генерация", + "определение количества", + "вычисление", + "синтез", + "передача", + "программирование", + "разбор" +]; diff --git a/lib/locales/ru/hacker/noun.js b/lib/locales/ru/hacker/noun.js new file mode 100644 index 00000000..89312370 --- /dev/null +++ b/lib/locales/ru/hacker/noun.js @@ -0,0 +1,26 @@ +module["exports"] = [ + "драйвер", + "протокол", + "пропускная способность", + "панель", + "микрочип", + "программа", + "порт", + "карта", + "массив", + "интерфейс", + "система", + "сенсор", + "брандмауэр", + "жесткий диск", + "пиксель", + "тревога", + "устройство подачи", + "монитор", + "приложение", + "передатчик", + "материнская плата", + "схема", + "конденсатор", + "матрица" +]; diff --git a/lib/locales/ru/hacker/verb.js b/lib/locales/ru/hacker/verb.js new file mode 100644 index 00000000..37e161b4 --- /dev/null +++ b/lib/locales/ru/hacker/verb.js @@ -0,0 +1,20 @@ +module["exports"] = [ + "осуществлять резервное копирование", + "обходить", + "взломать", + "переопределить", + "сжимать", + "копировать", + "осуществлять навигацию", + "индексировать", + "соединять", + "генерировать", + "определять количество", + "вычислять", + "синтезировать", + "вводить", + "передавать", + "программировать", + "перезагружать", + "разбирать" +]; diff --git a/lib/locales/ru/index.js b/lib/locales/ru/index.js index 9c2d7660..a9a36bc5 100644 --- a/lib/locales/ru/index.js +++ b/lib/locales/ru/index.js @@ -9,3 +9,4 @@ ru.phone_number = require("./phone_number"); ru.commerce = require("./commerce"); ru.company = require("./company"); ru.date = require("./date"); +ru.hacker = require("./hacker");
\ No newline at end of file |
