Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • 19-on-proposals-page-make-vote-count-clickable-and-have-it-show-modal-dialog-with-individual-votes
  • 42-take-into-account-badactor-list-and-disallow-transfers-2
  • dependabot/npm_and_yarn/handlebars-4.5.3
  • develop
  • master
  • mirrornet
  • refactor-proposals-ui
  • walletCleanse
  • witnesses-page-fixes
9 results

Target

Select target project
  • hive/wallet
1 result
Select Git revision
  • 19-on-proposals-page-make-vote-count-clickable-and-have-it-show-modal-dialog-with-individual-votes
  • 42-take-into-account-badactor-list-and-disallow-transfers-2
  • dependabot/npm_and_yarn/handlebars-4.5.3
  • develop
  • master
  • mirrornet
  • refactor-proposals-ui
  • walletCleanse
  • witnesses-page-fixes
9 results
Show changes
Commits on Source (2)
......@@ -99,7 +99,6 @@ if (!window.Intl) {
require('intl/locale-data/jsonp/ru.js');
require('intl/locale-data/jsonp/fr.js');
require('intl/locale-data/jsonp/it.js');
require('intl/locale-data/jsonp/ko.js');
require('intl/locale-data/jsonp/ja.js');
Iso.bootstrap(runApp);
},
......
......@@ -6,14 +6,13 @@ import es from 'react-intl/locale-data/es';
import ru from 'react-intl/locale-data/ru';
import fr from 'react-intl/locale-data/fr';
import it from 'react-intl/locale-data/it';
import ko from 'react-intl/locale-data/ko';
import zh from 'react-intl/locale-data/zh';
import pl from 'react-intl/locale-data/pl';
import ja from 'react-intl/locale-data/ja';
import { DEFAULT_LANGUAGE } from 'app/client_config';
import tt from 'counterpart';
addLocaleData([...en, ...es, ...ru, ...fr, ...it, ...ko, ...zh, ...pl, ...ja]);
addLocaleData([...en, ...es, ...ru, ...fr, ...it, ...zh, ...pl, ...ja]);
tt.registerTranslations('en', require('counterpart/locales/en'));
tt.registerTranslations('en', require('app/locales/en.json'));
......@@ -30,9 +29,6 @@ tt.registerTranslations('fr', require('app/locales/fr.json'));
tt.registerTranslations('it', require('app/locales/counterpart/it'));
tt.registerTranslations('it', require('app/locales/it.json'));
tt.registerTranslations('ko', require('app/locales/counterpart/ko'));
tt.registerTranslations('ko', require('app/locales/ko.json'));
tt.registerTranslations('zh', require('app/locales/counterpart/zh'));
tt.registerTranslations('zh', require('app/locales/zh.json'));
......
......@@ -73,7 +73,6 @@ class Settings extends React.Component {
<option value="ru">Russian русский</option>
<option value="fr">French français</option>
<option value="it">Italian italiano</option>
<option value="ko">Korean 한국어</option>
<option value="ja">Japanese 日本語</option>
<option value="pl">Polish</option>
<option value="zh">Chinese 简体中文</option>
......
......@@ -388,7 +388,7 @@ Yes. You can see the list of followers or people you are following by clicking o
<a href="#Table_of_Contents_Site_Navigation">^</a>
## <span id="What_languages_are_supported">What languages are supported?</span>
Currently hive.blog supports English, Spanish, Russian, French, Italian, Korean, Polish, and Chinese. There are also many communities using the platform that speak other languages. If you are interested in joining our translation team to add additional languages or help support the ones we have, please email us at translate@hive.io.
Currently hive.blog supports English, Spanish, Russian, French, Italian, Polish, and Chinese. There are also many communities using the platform that speak other languages. If you are interested in joining our translation team to add additional languages or help support the ones we have, please email us at translate@hive.io.
<a href="#Table_of_Contents_Site_Navigation">^</a>
# Posting
......@@ -502,7 +502,6 @@ Language-specific groups include:
- Chinese = cn
- German = deutsch
- Spanish = spanish
- Korean = kr
- Russian = ru
- French = fr
- Portuguese = pt
......
// for LANG in es fr it ja ko pl ru zh; do echo $LANG; node add_missing.js en $LANG > tmp.json ; mv tmp.json $LANG.json ; done
// for LANG in es fr it ja pl ru zh; do echo $LANG; node add_missing.js en $LANG > tmp.json ; mv tmp.json $LANG.json ; done
const fs = require('fs');
const lodash = require('lodash');
......
// The translations in this file are added by default.
module.exports = {
counterpart: {
names: require('date-names/en'),
pluralize: require('pluralizers/en'),
formats: {
date: {
default: '%a, %e %b %Y',
long: '%A, %B %o, %Y',
short: '%b %e',
},
time: {
default: '%H:%M',
long: '%H:%M:%S %z',
short: '%H:%M',
},
datetime: {
default: '%a, %e %b %Y %H:%M',
long: '%A, %B %o, %Y %H:%M:%S %z',
short: '%e %b %H:%M',
},
},
},
};
This diff is collapsed.