-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathdirective.js
More file actions
428 lines (364 loc) · 19.7 KB
/
directive.js
File metadata and controls
428 lines (364 loc) · 19.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
describe("Directive", function () {
var catalog = null;
var $rootScope = null;
var $compile = null;
beforeEach(module("gettext"));
beforeEach(inject(function ($injector, gettextCatalog) {
$rootScope = $injector.get("$rootScope");
$compile = $injector.get("$compile");
catalog = gettextCatalog;
catalog.setStrings("nl", {
Hello: "Hallo",
"Hello {{name}}!": "Hallo {{name}}!",
"Hello {{author}}!": "Hallo {{author}}!",
"{{author}}": "{{author}}",
"One boat": ["Een boot", "{{count}} boten"],
Archive: { verb: "Archiveren", noun: "Archief" }
});
catalog.setStrings("af", {
"This link: <a class=\"extra-class\" ng-href=\"{{url}}\">{{url}}</a> will have the 'ng-binding' class attached before the translate directive can capture it.": "Die skakel: <a ng-href=\"{{url}}\">{{url}}</a> sal die 'ng-binding' klass aangevoeg hê voor die translate directive dit kan vasvat."
});
catalog.setStrings("pl", {
"This product: {{product}} costs {{cost}}.": "Ten produkt: {{product}} kosztuje {{cost}}.",
"This product: {{product}} costs {{cost}}{{currency}}.": "Ten produkt: {{product}} kosztuje {{cost}}{{currency}}.",
"Product of the week: {{product}}.": "Produkt tygodnia: {{product}}."
});
}));
it("Should work on empty strings", function () {
var el = $compile("<div><h1 translate></h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "");
});
it("Should return string unchanged when no translation is available", function () {
var el = $compile("<div><h1 translate>Hello!</h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hello!");
});
it("Should translate known strings", function () {
catalog.setCurrentLanguage("nl");
var el = $compile("<div><h1 translate>Hello</h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hallo");
});
it("Should translate known strings according to defined translation context", function () {
catalog.setCurrentLanguage("nl");
var el = $compile("<div><h1 translate translate-context=\"verb\">Archive</h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Archiveren");
el = $compile("<div><h1 translate translate-context=\"noun\">Archive</h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Archief");
});
it("Should still allow for interpolation", function () {
$rootScope.name = "Ruben";
catalog.setCurrentLanguage("nl");
var el = $compile("<div><div translate>Hello {{name}}!</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hallo Ruben!");
});
it("Can provide plural value and string, should translate", function () {
$rootScope.count = 3;
catalog.setCurrentLanguage("nl");
var el = $compile("<div><div translate translate-n=\"count\" translate-plural=\"{{count}} boats\">One boat</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "3 boten");
});
it("Can provide plural value and string, should translate even for unknown languages", function () {
$rootScope.count = 2;
catalog.setCurrentLanguage("fr");
var el = $compile("<div><div translate translate-n=\"count\" translate-plural=\"{{count}} boats\">One boat</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "2 boats");
});
it("Can provide plural value and string, should translate even for default strings", function () {
$rootScope.count = 0;
var el = $compile("<div><div translate translate-n=\"count\" translate-plural=\"{{count}} boats\">One boat</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "0 boats");
});
it("Can provide plural value and string, should translate even for default strings, singular", function () {
$rootScope.count = 1;
var el = $compile("<div><div translate translate-n=\"count\" translate-plural=\"{{count}} boats\">One boat</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "One boat");
});
it("Can provide plural value and string, should translate even for default strings, plural", function () {
$rootScope.count = 2;
var el = $compile("<div><div translate translate-n=\"count\" translate-plural=\"{{count}} boats\">One boat</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "2 boats");
});
it("Can provide plural value and string, should translate with hardcoded count", function () {
$rootScope.count = 3;
var el = $compile("<div><div translate translate-n=\"0\" translate-plural=\"{{count}} boats\">One boat</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "3 boats");
});
it("Can provide plural value and string, should translate with injected $count", function () {
$rootScope.some = {
custom: {
elements: {
length: 6
}
}
};
var el = $compile("<div><div translate translate-n=\"some.custom.elements.length\" translate-plural=\"{{$count}} boats\">One boat</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "6 boats");
});
it("Changing the scope should update the translation, fixed count", function () {
$rootScope.count = 3;
var el = $compile("<div><div translate translate-n=\"count\" translate-plural=\"{{count}} boats\">One boat</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "3 boats");
$rootScope.$apply(function () {
$rootScope.count = 2;
});
assert.equal(el.text(), "2 boats");
});
it("Changing the scope should update the translation, changed count", function () {
$rootScope.count = 3;
var el = $compile("<div><div translate translate-n=\"count\" translate-plural=\"{{count}} boats\">One boat</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "3 boats");
$rootScope.$apply(function () {
$rootScope.count = 1;
});
assert.equal(el.text(), "One boat");
});
it("Child elements still respond to scope correctly", function () {
$rootScope.name = "Ruben";
var el = $compile("<div><div translate>Hello {{name}}!</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hello Ruben!");
$rootScope.$apply(function () {
$rootScope.name = "Joe";
});
assert.equal(el.text(), "Hello Joe!");
});
it("Child elements still respond to scope correctly, plural", function () {
$rootScope.name = "Ruben";
$rootScope.count = 1;
var el = $compile("<div><div translate translate-n=\"count\" translate-plural=\"Hello {{name}} ({{count}} messages)!\">Hello {{name}} (one message)!</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hello Ruben (one message)!");
$rootScope.$apply(function () {
$rootScope.name = "Joe";
});
assert.equal(el.text(), "Hello Joe (one message)!");
$rootScope.$apply(function () {
$rootScope.count = 3;
});
assert.equal(el.text(), "Hello Joe (3 messages)!");
$rootScope.$apply(function () {
$rootScope.name = "Jack";
});
assert.equal(el.text(), "Hello Jack (3 messages)!");
$rootScope.$apply(function () {
$rootScope.count = 1;
$rootScope.name = "Jane";
});
assert.equal(el.text(), "Hello Jane (one message)!");
});
it("Changing language should translate again", function () {
catalog.setCurrentLanguage("nl");
var el = $compile("<div><div translate>Hello</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hallo");
catalog.setCurrentLanguage("en");
$rootScope.$digest();
assert.equal(el.text(), "Hello");
});
it("Changing language should translate again not losing scope", function () {
catalog.setCurrentLanguage("nl");
$rootScope.providedName = "Ruben";
var el = $compile("<div><div translate translate-params-name='providedName'>Hello {{name}}!</div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hallo Ruben!");
catalog.setCurrentLanguage("en");
$rootScope.$digest();
assert.equal(el.text(), "Hello Ruben!");
});
it("Should warn if you forget to add attributes (n)", function () {
assert.throws(function () {
$compile("<div translate translate-plural=\"Hello {{name}} ({{count}} messages)!\">Hello {{name}} (one message)!</div>")($rootScope);
}, "You should add a translate-n attribute whenever you add a translate-plural attribute.");
});
it("Should warn if you forget to add attributes (plural)", function () {
assert.throws(function () {
$compile("<div translate translate-n=\"count\">Hello {{name}} (one message)!</div>")($rootScope);
}, "You should add a translate-plural attribute whenever you add a translate-n attribute.");
});
it("Translates inside an ngIf directive", function () {
$rootScope.flag = true;
catalog.setCurrentLanguage("nl");
var el = $compile("<div><div ng-if=\"flag\"><div translate>Hello</div></div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hallo");
});
it("Does not translate inside a false ngIf directive", function () {
$rootScope.flag = false;
catalog.setCurrentLanguage("nl");
var el = $compile("<div><div ng-if=\"flag\"><div translate>Hello</div></div></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "");
});
it("Does not have a ng-binding class", function () {
$rootScope.url = "http://google.com";
catalog.setCurrentLanguage("af");
var el = $compile("<div><p translate>This link: <a class=\"extra-class\" ng-href=\"{{url}}\">{{url}}</a> will have the 'ng-binding' class attached before the translate directive can capture it.</p></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Die skakel: http://google.com sal die 'ng-binding' klass aangevoeg hê voor die translate directive dit kan vasvat.");
});
it("Should work as an element", function () {
catalog.currentLanguage = "nl";
var el = $compile("<translate>Hello</translate>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hallo");
});
it("Should translate with context param", function () {
$rootScope.name = "Ernest";
catalog.setCurrentLanguage("nl");
var el = $compile("<div><h1 translate translate-params-author=\"name\">Hello {{author}}!</h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hallo Ernest!");
});
it("Should translate with pure context param", function () {
$rootScope.name = "Ernest";
catalog.setCurrentLanguage("nl");
var el = $compile("<div><h1 translate translate-params-author=\"name\">{{author}}</h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Ernest");
});
it("Should translate with filters used in translate params", function () {
$rootScope.name = "Ernest";
catalog.setCurrentLanguage("nl");
var el = $compile("<div><h1 translate translate-params-author=\"name | uppercase\">Hello {{author}}!</h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Hallo ERNEST!");
});
it("Should translate with multiple translate params", function () {
$rootScope.item = "Headphones";
$rootScope.cost = 5;
catalog.setCurrentLanguage("pl");
var el = $compile("<div><h1 translate translate-params-product=\"item | uppercase\" translate-params-cost=\"cost | currency\">This product: {{product}} costs {{cost}}.</h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Ten produkt: HEADPHONES kosztuje $5.00.");
});
it("Should translate with multiple translate params along with normal scope interpolation", function () {
$rootScope.item = "Headphones";
$rootScope.cost = 5;
$rootScope.currency = "$";
catalog.setCurrentLanguage("pl");
var el = $compile("<div><h1 translate translate-params-product=\"item | uppercase\">This product: {{product}} costs {{cost}}{{currency}}.</h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Ten produkt: HEADPHONES kosztuje 5$.");
});
it("Should update translation with translate params when context changes", function () {
$rootScope.item = "Headphones";
catalog.setCurrentLanguage("pl");
var el = $compile("<div><h1 translate translate-params-product=\"item | uppercase\">Product of the week: {{product}}.</h1></div>")($rootScope);
$rootScope.$digest();
assert.equal(el.text(), "Produkt tygodnia: HEADPHONES.");
$rootScope.item = "Smart TV";
$rootScope.$digest();
assert.equal(el.text(), "Produkt tygodnia: SMART TV.");
});
describe("Translation's with plurals", function () {
var sourceString;
beforeEach(inject(function () {
sourceString = "Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.";
catalog.setStrings("pl", {
"Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.": [
"Dziś {{someone}} spotyka się z {{someoneElse}} przez jedną minutę.",
"Dziś {{someone}} spotyka się z {{someoneElse}} przez {{duration}} minuty.",
"Dziś {{someone}} spotyka się z {{someoneElse}} przez {{duration}} minut."
]
});
}));
it("Should properly handle plural translation for 1", function () {
catalog.setCurrentLanguage("pl");
$rootScope.someone = "Ruben";
$rootScope.someoneElse = "Ernest";
var el = $compile("<h1 translate translate-n=\"duration\" translate-plural=\"Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.\">Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.</h1>")($rootScope);
$rootScope.duration = 1;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez jedną minutę.");
});
it("Should properly handle plural translation for 0, 5, 6, 7, ...", function () {
catalog.setCurrentLanguage("pl");
$rootScope.someone = "Ruben";
$rootScope.someoneElse = "Ernest";
var el = $compile("<h1 translate translate-n=\"duration\" translate-plural=\"Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.\">Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.</h1>")($rootScope);
$rootScope.duration = 0;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 0 minut.");
$rootScope.duration = 5;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 5 minut.");
$rootScope.duration = 26;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 26 minut.");
});
it("Should properly handle plural translation for 2, 3, 4, 22, ...", function () {
catalog.setCurrentLanguage("pl");
$rootScope.someone = "Ruben";
$rootScope.someoneElse = "Ernest";
var el = $compile("<h1 translate translate-n=\"duration\" translate-plural=\"Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.\">Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.</h1>")($rootScope);
$rootScope.duration = 2;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 2 minuty.");
$rootScope.duration = 3;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 3 minuty.");
$rootScope.duration = 4;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 4 minuty.");
$rootScope.duration = 22;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 22 minuty.");
});
it("Should properly handle plural translation for 1 with language code that includes locale (e.g. pl_PL, en_US)", function () {
catalog.setCurrentLanguage("pl_PL");
$rootScope.someone = "Ruben";
$rootScope.someoneElse = "Ernest";
var el = $compile("<h1 translate translate-n=\"duration\" translate-plural=\"Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.\">Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.</h1>")($rootScope);
$rootScope.duration = 1;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez jedną minutę.");
});
it("Should properly handle plural translation for 0, 5, 6, 7, ... with language code that includes locale (e.g. pl_PL, en_US)", function () {
catalog.setCurrentLanguage("pl_PL");
$rootScope.someone = "Ruben";
$rootScope.someoneElse = "Ernest";
var el = $compile("<h1 translate translate-n=\"duration\" translate-plural=\"Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.\">Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.</h1>")($rootScope);
$rootScope.duration = 0;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 0 minut.");
$rootScope.duration = 5;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 5 minut.");
$rootScope.duration = 26;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 26 minut.");
});
it("Should properly handle plural translation for 2, 3, 4, 22, ... with language code that includes locale (e.g. pl_PL, en_US)", function () {
catalog.setCurrentLanguage("pl_PL");
$rootScope.someone = "Ruben";
$rootScope.someoneElse = "Ernest";
var el = $compile("<h1 translate translate-n=\"duration\" translate-plural=\"Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.\">Today {{someone}} meets with {{someoneElse}} for {{duration}} minute.</h1>")($rootScope);
$rootScope.duration = 2;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 2 minuty.");
$rootScope.duration = 3;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 3 minuty.");
$rootScope.duration = 4;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 4 minuty.");
$rootScope.duration = 22;
$rootScope.$digest();
assert.equal(el.text(), "Dziś Ruben spotyka się z Ernest przez 22 minuty.");
});
});
});