Skip to content

Commit 8398e97

Browse files
committed
initial commit
1 parent 9e0cbe4 commit 8398e97

File tree

763 files changed

+2435
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

763 files changed

+2435
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules
2+
.DS_Store

.npmignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build
2+
bower.json

bower.json

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "vue-intl",
3+
"main": "dist/vue-intl.js",
4+
"description": "Internationalization plugin for Vue.js",
5+
"version": "0.1.0",
6+
"license": "MIT",
7+
"ignore": [
8+
".*",
9+
"build",
10+
"*.json",
11+
"*.md"
12+
]
13+
}

build/locales.build.js

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
var fs = require('fs');
2+
var md5 = require('md5');
3+
var glob = require('glob');
4+
var path = require('path');
5+
var plural = path.join(__dirname, '../src/plural.js');
6+
var output = path.join(__dirname, '../dist/locales/');
7+
var source = path.join(__dirname, '../node_modules/angular-i18n/');
8+
var relative = path.join(__dirname, '../node_modules/twitter_cldr/full/');
9+
10+
global.angular = {
11+
12+
locales: [],
13+
plurals: {},
14+
15+
module: function (name, requires, config) {
16+
17+
var fn = config[1];
18+
19+
fn.call(fn, this);
20+
},
21+
22+
value: function (name, value) {
23+
24+
var id = value.id.match(/^\w+/i)[0],
25+
fn = value.pluralCat.toString(),
26+
key = md5(fn), file, data;
27+
28+
if (this.locales.indexOf(id) === -1) {
29+
30+
if (!this.plurals[key]) {
31+
this.plurals[key] = {fn: fn, locales: [id]};
32+
} else if (this.plurals[key].locales.indexOf(id) === -1) {
33+
this.plurals[key].locales.push(id);
34+
}
35+
36+
this.locales.push(id);
37+
}
38+
39+
delete value.pluralCat;
40+
41+
[value.id, id, 'en'].forEach(function(locale) {
42+
var path = relative+locale+'.js';
43+
if (!file && fs.existsSync(path)) {
44+
file = path;
45+
}
46+
});
47+
48+
if (file) {
49+
value.TIMESPAN_FORMATS = (new (require(file)).TimespanFormatter).patterns;
50+
}
51+
52+
file = output + value.id + '.json';
53+
data = JSON.stringify(value);
54+
55+
fs.writeFileSync(file, data);
56+
}
57+
58+
};
59+
60+
console.log('> Generating locale files ...');
61+
62+
if (!fs.existsSync(output)) {
63+
fs.mkdirSync(output);
64+
}
65+
66+
glob.sync('angular-locale*', {cwd: source}).forEach(function (file) {
67+
require(source + file);
68+
});
69+
70+
console.log('> Updating plural.js ...');
71+
72+
var rules = [];
73+
var locales = [];
74+
var content = fs.readFileSync(plural, 'utf8');
75+
var convert = function (value) {
76+
return "'" + value + "'";
77+
};
78+
79+
Object.keys(angular.plurals).forEach(function (key) {
80+
81+
var data = angular.plurals[key];
82+
83+
// skip same locales from 'en', because it's the default
84+
if (data.locales.indexOf('en') !== -1) {
85+
data.locales = ['en'];
86+
}
87+
88+
locales.push('[' + data.locales.map(convert).toString() + ']');
89+
rules.push(data.fn.replace(/opt_precision/gi, 'precision'));
90+
});
91+
92+
content = content.replace(/(var PLURAL_LOCALES = \[)[^]*(\]; \/\/ END LOCALES)/gm, '$1' + locales.toString() + '$2');
93+
content = content.replace(/(var PLURAL_RULES = \[)[^]*(\]; \/\/ END RULES)/gm, '$1' + rules.toString() + '$2');
94+
95+
fs.writeFileSync(plural, content);
96+
console.log('');

build/webpack.build.config.js

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
var webpack = require("webpack");
2+
var version = require("../package.json").version;
3+
var banner =
4+
"/**\n" +
5+
" * vue-intl v" + version + "\n" +
6+
" * Released under the MIT License.\n" +
7+
" */\n";
8+
9+
module.exports = [
10+
11+
{
12+
entry: "./src/index",
13+
output: {
14+
path: "./dist",
15+
filename: "vue-intl.js",
16+
library: "VueIntl",
17+
libraryTarget: "umd"
18+
},
19+
module: {
20+
loaders: [
21+
{ test: /\.json$/, loader: "json" }
22+
]
23+
},
24+
plugins: [
25+
new webpack.BannerPlugin(banner, {raw: true})
26+
]
27+
},
28+
29+
{
30+
entry: "./src/index",
31+
output: {
32+
path: "./dist",
33+
filename: "vue-intl.min.js",
34+
library: "VueIntl",
35+
libraryTarget: "umd"
36+
},
37+
module: {
38+
loaders: [
39+
{ test: /\.json$/, loader: "json" }
40+
]
41+
},
42+
plugins: [
43+
new webpack.optimize.UglifyJsPlugin,
44+
new webpack.BannerPlugin(banner, {raw: true})
45+
]
46+
}
47+
48+
];

dist/locales/aa-dj.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"DATETIME_FORMATS":{"AMPMS":["saaku","carra"],"DAY":["Acaada","Etleeni","Talaata","Arbaqa","Kamiisi","Gumqata","Sabti"],"ERANAMES":["Yaasuusuk Duma","Yaasuusuk Wadir"],"ERAS":["Yaasuusuk Duma","Yaasuusuk Wadir"],"FIRSTDAYOFWEEK":5,"MONTH":["Qunxa Garablu","Kudo","Ciggilta Kudo","Agda Baxis","Caxah Alsa","Qasa Dirri","Qado Dirri","Leqeeni","Waysu","Diteli","Ximoli","Kaxxa Garablu"],"SHORTDAY":["Aca","Etl","Tal","Arb","Kam","Gum","Sab"],"SHORTMONTH":["Qun","Nah","Cig","Agd","Cax","Qas","Qad","Leq","Way","Dit","Xim","Kax"],"WEEKENDRANGE":[5,6],"fullDate":"EEEE, MMMM dd, y","longDate":"dd MMMM y","medium":"dd-MMM-y h:mm:ss a","mediumDate":"dd-MMM-y","mediumTime":"h:mm:ss a","short":"dd/MM/yy h:mm a","shortDate":"dd/MM/yy","shortTime":"h:mm a"},"NUMBER_FORMATS":{"CURRENCY_SYM":"Fdj","DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"gSize":3,"lgSize":3,"maxFrac":3,"minFrac":0,"minInt":1,"negPre":"-","negSuf":"","posPre":"","posSuf":""},{"gSize":3,"lgSize":3,"maxFrac":2,"minFrac":2,"minInt":1,"negPre":"¤-","negSuf":"","posPre":"¤","posSuf":""}]},"id":"aa-dj","TIMESPAN_FORMATS":{"ago":{"second":{"default":{"one":"{0} second ago","other":"{0} seconds ago"}},"minute":{"default":{"one":"{0} minute ago","other":"{0} minutes ago"}},"hour":{"default":{"one":"{0} hour ago","other":"{0} hours ago"}},"day":{"default":{"one":"{0} day ago","other":"{0} days ago"}},"week":{"default":{"one":"{0} week ago","other":"{0} weeks ago"}},"month":{"default":{"one":"{0} month ago","other":"{0} months ago"}},"year":{"default":{"one":"{0} year ago","other":"{0} years ago"}}},"until":{"second":{"default":{"one":"In {0} second","other":"In {0} seconds"}},"minute":{"default":{"one":"In {0} minute","other":"In {0} minutes"}},"hour":{"default":{"one":"In {0} hour","other":"In {0} hours"}},"day":{"default":{"one":"In {0} day","other":"In {0} days"}},"week":{"default":{"one":"In {0} week","other":"In {0} weeks"}},"month":{"default":{"one":"In {0} month","other":"In {0} months"}},"year":{"default":{"one":"In {0} year","other":"In {0} years"}}},"none":{"second":{"default":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec","other":"{0} secs"},"abbreviated":{"one":"{0}s","other":"{0}s"}},"minute":{"default":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min","other":"{0} mins"},"abbreviated":{"one":"{0}m","other":"{0}m"}},"hour":{"default":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr","other":"{0} hrs"},"abbreviated":{"one":"{0}h","other":"{0}h"}},"day":{"default":{"one":"{0} day","other":"{0} days"},"short":{"one":"{0} day","other":"{0} days"},"abbreviated":{"one":"{0}d","other":"{0}d"}},"week":{"default":{"one":"{0} week","other":"{0} weeks"},"short":{"one":"{0} wk","other":"{0} wks"}},"month":{"default":{"one":"{0} month","other":"{0} months"},"short":{"one":"{0} mth","other":"{0} mths"}},"year":{"default":{"one":"{0} year","other":"{0} years"},"short":{"one":"{0} yr","other":"{0} yrs"}}}}}

dist/locales/aa-er.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"DATETIME_FORMATS":{"AMPMS":["saaku","carra"],"DAY":["Acaada","Etleeni","Talaata","Arbaqa","Kamiisi","Gumqata","Sabti"],"ERANAMES":["Yaasuusuk Duma","Yaasuusuk Wadir"],"ERAS":["Yaasuusuk Duma","Yaasuusuk Wadir"],"FIRSTDAYOFWEEK":0,"MONTH":["Qunxa Garablu","Kudo","Ciggilta Kudo","Agda Baxis","Caxah Alsa","Qasa Dirri","Qado Dirri","Liiqen","Waysu","Diteli","Ximoli","Kaxxa Garablu"],"SHORTDAY":["Aca","Etl","Tal","Arb","Kam","Gum","Sab"],"SHORTMONTH":["Qun","Nah","Cig","Agd","Cax","Qas","Qad","Leq","Way","Dit","Xim","Kax"],"WEEKENDRANGE":[5,6],"fullDate":"EEEE, MMMM dd, y","longDate":"dd MMMM y","medium":"dd-MMM-y h:mm:ss a","mediumDate":"dd-MMM-y","mediumTime":"h:mm:ss a","short":"dd/MM/yy h:mm a","shortDate":"dd/MM/yy","shortTime":"h:mm a"},"NUMBER_FORMATS":{"CURRENCY_SYM":"Nfk","DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"gSize":3,"lgSize":3,"maxFrac":3,"minFrac":0,"minInt":1,"negPre":"-","negSuf":"","posPre":"","posSuf":""},{"gSize":3,"lgSize":3,"maxFrac":2,"minFrac":2,"minInt":1,"negPre":"¤-","negSuf":"","posPre":"¤","posSuf":""}]},"id":"aa-er","TIMESPAN_FORMATS":{"ago":{"second":{"default":{"one":"{0} second ago","other":"{0} seconds ago"}},"minute":{"default":{"one":"{0} minute ago","other":"{0} minutes ago"}},"hour":{"default":{"one":"{0} hour ago","other":"{0} hours ago"}},"day":{"default":{"one":"{0} day ago","other":"{0} days ago"}},"week":{"default":{"one":"{0} week ago","other":"{0} weeks ago"}},"month":{"default":{"one":"{0} month ago","other":"{0} months ago"}},"year":{"default":{"one":"{0} year ago","other":"{0} years ago"}}},"until":{"second":{"default":{"one":"In {0} second","other":"In {0} seconds"}},"minute":{"default":{"one":"In {0} minute","other":"In {0} minutes"}},"hour":{"default":{"one":"In {0} hour","other":"In {0} hours"}},"day":{"default":{"one":"In {0} day","other":"In {0} days"}},"week":{"default":{"one":"In {0} week","other":"In {0} weeks"}},"month":{"default":{"one":"In {0} month","other":"In {0} months"}},"year":{"default":{"one":"In {0} year","other":"In {0} years"}}},"none":{"second":{"default":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec","other":"{0} secs"},"abbreviated":{"one":"{0}s","other":"{0}s"}},"minute":{"default":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min","other":"{0} mins"},"abbreviated":{"one":"{0}m","other":"{0}m"}},"hour":{"default":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr","other":"{0} hrs"},"abbreviated":{"one":"{0}h","other":"{0}h"}},"day":{"default":{"one":"{0} day","other":"{0} days"},"short":{"one":"{0} day","other":"{0} days"},"abbreviated":{"one":"{0}d","other":"{0}d"}},"week":{"default":{"one":"{0} week","other":"{0} weeks"},"short":{"one":"{0} wk","other":"{0} wks"}},"month":{"default":{"one":"{0} month","other":"{0} months"},"short":{"one":"{0} mth","other":"{0} mths"}},"year":{"default":{"one":"{0} year","other":"{0} years"},"short":{"one":"{0} yr","other":"{0} yrs"}}}}}

dist/locales/aa-et.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"DATETIME_FORMATS":{"AMPMS":["saaku","carra"],"DAY":["Acaada","Etleeni","Talaata","Arbaqa","Kamiisi","Gumqata","Sabti"],"ERANAMES":["Yaasuusuk Duma","Yaasuusuk Wadir"],"ERAS":["Yaasuusuk Duma","Yaasuusuk Wadir"],"FIRSTDAYOFWEEK":0,"MONTH":["Qunxa Garablu","Kudo","Ciggilta Kudo","Agda Baxis","Caxah Alsa","Qasa Dirri","Qado Dirri","Liiqen","Waysu","Diteli","Ximoli","Kaxxa Garablu"],"SHORTDAY":["Aca","Etl","Tal","Arb","Kam","Gum","Sab"],"SHORTMONTH":["Qun","Nah","Cig","Agd","Cax","Qas","Qad","Leq","Way","Dit","Xim","Kax"],"WEEKENDRANGE":[5,6],"fullDate":"EEEE, MMMM dd, y","longDate":"dd MMMM y","medium":"dd-MMM-y h:mm:ss a","mediumDate":"dd-MMM-y","mediumTime":"h:mm:ss a","short":"dd/MM/yy h:mm a","shortDate":"dd/MM/yy","shortTime":"h:mm a"},"NUMBER_FORMATS":{"CURRENCY_SYM":"Birr","DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"gSize":3,"lgSize":3,"maxFrac":3,"minFrac":0,"minInt":1,"negPre":"-","negSuf":"","posPre":"","posSuf":""},{"gSize":3,"lgSize":3,"maxFrac":2,"minFrac":2,"minInt":1,"negPre":"¤-","negSuf":"","posPre":"¤","posSuf":""}]},"id":"aa-et","TIMESPAN_FORMATS":{"ago":{"second":{"default":{"one":"{0} second ago","other":"{0} seconds ago"}},"minute":{"default":{"one":"{0} minute ago","other":"{0} minutes ago"}},"hour":{"default":{"one":"{0} hour ago","other":"{0} hours ago"}},"day":{"default":{"one":"{0} day ago","other":"{0} days ago"}},"week":{"default":{"one":"{0} week ago","other":"{0} weeks ago"}},"month":{"default":{"one":"{0} month ago","other":"{0} months ago"}},"year":{"default":{"one":"{0} year ago","other":"{0} years ago"}}},"until":{"second":{"default":{"one":"In {0} second","other":"In {0} seconds"}},"minute":{"default":{"one":"In {0} minute","other":"In {0} minutes"}},"hour":{"default":{"one":"In {0} hour","other":"In {0} hours"}},"day":{"default":{"one":"In {0} day","other":"In {0} days"}},"week":{"default":{"one":"In {0} week","other":"In {0} weeks"}},"month":{"default":{"one":"In {0} month","other":"In {0} months"}},"year":{"default":{"one":"In {0} year","other":"In {0} years"}}},"none":{"second":{"default":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec","other":"{0} secs"},"abbreviated":{"one":"{0}s","other":"{0}s"}},"minute":{"default":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min","other":"{0} mins"},"abbreviated":{"one":"{0}m","other":"{0}m"}},"hour":{"default":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr","other":"{0} hrs"},"abbreviated":{"one":"{0}h","other":"{0}h"}},"day":{"default":{"one":"{0} day","other":"{0} days"},"short":{"one":"{0} day","other":"{0} days"},"abbreviated":{"one":"{0}d","other":"{0}d"}},"week":{"default":{"one":"{0} week","other":"{0} weeks"},"short":{"one":"{0} wk","other":"{0} wks"}},"month":{"default":{"one":"{0} month","other":"{0} months"},"short":{"one":"{0} mth","other":"{0} mths"}},"year":{"default":{"one":"{0} year","other":"{0} years"},"short":{"one":"{0} yr","other":"{0} yrs"}}}}}

dist/locales/aa.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"DATETIME_FORMATS":{"AMPMS":["saaku","carra"],"DAY":["Acaada","Etleeni","Talaata","Arbaqa","Kamiisi","Gumqata","Sabti"],"ERANAMES":["Yaasuusuk Duma","Yaasuusuk Wadir"],"ERAS":["Yaasuusuk Duma","Yaasuusuk Wadir"],"FIRSTDAYOFWEEK":0,"MONTH":["Qunxa Garablu","Kudo","Ciggilta Kudo","Agda Baxis","Caxah Alsa","Qasa Dirri","Qado Dirri","Liiqen","Waysu","Diteli","Ximoli","Kaxxa Garablu"],"SHORTDAY":["Aca","Etl","Tal","Arb","Kam","Gum","Sab"],"SHORTMONTH":["Qun","Nah","Cig","Agd","Cax","Qas","Qad","Leq","Way","Dit","Xim","Kax"],"WEEKENDRANGE":[5,6],"fullDate":"EEEE, MMMM dd, y","longDate":"dd MMMM y","medium":"dd-MMM-y h:mm:ss a","mediumDate":"dd-MMM-y","mediumTime":"h:mm:ss a","short":"dd/MM/yy h:mm a","shortDate":"dd/MM/yy","shortTime":"h:mm a"},"NUMBER_FORMATS":{"CURRENCY_SYM":"Birr","DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"gSize":3,"lgSize":3,"maxFrac":3,"minFrac":0,"minInt":1,"negPre":"-","negSuf":"","posPre":"","posSuf":""},{"gSize":3,"lgSize":3,"maxFrac":2,"minFrac":2,"minInt":1,"negPre":"¤-","negSuf":"","posPre":"¤","posSuf":""}]},"id":"aa","TIMESPAN_FORMATS":{"ago":{"second":{"default":{"one":"{0} second ago","other":"{0} seconds ago"}},"minute":{"default":{"one":"{0} minute ago","other":"{0} minutes ago"}},"hour":{"default":{"one":"{0} hour ago","other":"{0} hours ago"}},"day":{"default":{"one":"{0} day ago","other":"{0} days ago"}},"week":{"default":{"one":"{0} week ago","other":"{0} weeks ago"}},"month":{"default":{"one":"{0} month ago","other":"{0} months ago"}},"year":{"default":{"one":"{0} year ago","other":"{0} years ago"}}},"until":{"second":{"default":{"one":"In {0} second","other":"In {0} seconds"}},"minute":{"default":{"one":"In {0} minute","other":"In {0} minutes"}},"hour":{"default":{"one":"In {0} hour","other":"In {0} hours"}},"day":{"default":{"one":"In {0} day","other":"In {0} days"}},"week":{"default":{"one":"In {0} week","other":"In {0} weeks"}},"month":{"default":{"one":"In {0} month","other":"In {0} months"}},"year":{"default":{"one":"In {0} year","other":"In {0} years"}}},"none":{"second":{"default":{"one":"{0} second","other":"{0} seconds"},"short":{"one":"{0} sec","other":"{0} secs"},"abbreviated":{"one":"{0}s","other":"{0}s"}},"minute":{"default":{"one":"{0} minute","other":"{0} minutes"},"short":{"one":"{0} min","other":"{0} mins"},"abbreviated":{"one":"{0}m","other":"{0}m"}},"hour":{"default":{"one":"{0} hour","other":"{0} hours"},"short":{"one":"{0} hr","other":"{0} hrs"},"abbreviated":{"one":"{0}h","other":"{0}h"}},"day":{"default":{"one":"{0} day","other":"{0} days"},"short":{"one":"{0} day","other":"{0} days"},"abbreviated":{"one":"{0}d","other":"{0}d"}},"week":{"default":{"one":"{0} week","other":"{0} weeks"},"short":{"one":"{0} wk","other":"{0} wks"}},"month":{"default":{"one":"{0} month","other":"{0} months"},"short":{"one":"{0} mth","other":"{0} mths"}},"year":{"default":{"one":"{0} year","other":"{0} years"},"short":{"one":"{0} yr","other":"{0} yrs"}}}}}

dist/locales/af-na.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"DATETIME_FORMATS":{"AMPMS":["vm.","nm."],"DAY":["Sondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrydag","Saterdag"],"ERANAMES":["voor Christus","na Christus"],"ERAS":["v.C.","n.C."],"FIRSTDAYOFWEEK":0,"MONTH":["Januarie","Februarie","Maart","April","Mei","Junie","Julie","Augustus","September","Oktober","November","Desember"],"SHORTDAY":["So","Ma","Di","Wo","Do","Vr","Sa"],"SHORTMONTH":["Jan.","Feb.","Mrt.","Apr","Mei","Jun","Jul","Aug","Sep","Okt","Nov","Des"],"WEEKENDRANGE":[5,6],"fullDate":"EEEE d MMMM y","longDate":"d MMMM y","medium":"d MMM y HH:mm:ss","mediumDate":"d MMM y","mediumTime":"HH:mm:ss","short":"y-MM-dd HH:mm","shortDate":"y-MM-dd","shortTime":"HH:mm"},"NUMBER_FORMATS":{"CURRENCY_SYM":"$","DECIMAL_SEP":",","GROUP_SEP":" ","PATTERNS":[{"gSize":3,"lgSize":3,"maxFrac":3,"minFrac":0,"minInt":1,"negPre":"-","negSuf":"","posPre":"","posSuf":""},{"gSize":3,"lgSize":3,"maxFrac":2,"minFrac":2,"minInt":1,"negPre":"-¤","negSuf":"","posPre":"¤","posSuf":""}]},"id":"af-na","TIMESPAN_FORMATS":{"ago":{"second":{"default":{"one":"{0} sekonde gelede","other":"{0} sekondes gelede"}},"minute":{"default":{"one":"{0} minuut gelede","other":"{0} minute gelede"}},"hour":{"default":{"one":"{0} uur gelede","other":"{0} uur gelede"}},"day":{"default":{"one":"{0} dag gelede","other":"{0} dae gelede"}},"week":{"default":{"one":"{0} week gelede","other":"{0} weke gelede"}},"month":{"default":{"one":"{0} maand gelede","other":"{0} maande gelede"}},"year":{"default":{"one":"{0} jaar gelede","other":"{0} jaar gelede"}}},"until":{"second":{"default":{"one":"In {0} sekond","other":"In {0} sekondes"}},"minute":{"default":{"one":"In {0} minuut","other":"In {0} minute"}},"hour":{"default":{"one":"In {0} uur","other":"In {0} uur"}},"day":{"default":{"one":"In {0} dag","other":"In {0} dae"}},"week":{"default":{"one":"In {0} week","other":"In {0} weke"}},"month":{"default":{"one":"In {0} maand","other":"In {0} maande"}},"year":{"default":{"one":"In {0} jaar","other":"In {0} jaar"}}},"none":{"second":{"default":{"one":"{0} sekonde","other":"{0} sekondes"},"short":{"one":"{0} sek","other":"{0} sek"},"abbreviated":{"one":"{0}s","other":"{0}s"}},"minute":{"default":{"one":"{0} minuut","other":"{0} minute"},"short":{"one":"{0} min","other":"{0} min"},"abbreviated":{"one":"{0}m","other":"{0}m"}},"hour":{"default":{"one":"{0} uur","other":"{0} uur"},"short":{"one":"{0} uur","other":"{0} uur"},"abbreviated":{"one":"{0}h","other":"{0}h"}},"day":{"default":{"one":"{0} dag","other":"{0} dae"},"short":{"one":"{0} dag","other":"{0} dae"},"abbreviated":{"one":"{0}d","other":"{0}d"}},"week":{"default":{"one":"{0} week","other":"{0} weke"},"short":{"one":"{0} week","other":"{0} weke"}},"month":{"default":{"one":"{0} maand","other":"{0} maande"},"short":{"one":"{0} mnd","other":"{0} mnde"}},"year":{"default":{"one":"{0} jaar","other":"{0} jaar"},"short":{"one":"{0} jr","other":"{0} jr"}}}}}

0 commit comments

Comments
 (0)