Sha256: 85555d9c01b59fccd01d500a9c34d80cc5bc0d9b82a3db2258a9241d345d71a9
Contents?: true
Size: 1.66 KB
Versions: 24
Compression:
Stored size: 1.66 KB
Contents
var I18n = require("../../app/assets/javascripts/i18n") , Translations = require("./translations") ; describe("Localization", function(){ var actual, expected; beforeEach(function() { I18n.reset(); I18n.translations = Translations(); }); it("localizes number", function(){ expect(I18n.l("number", 1234567)).toEqual("1,234,567.000"); }); it("localizes currency", function(){ expect(I18n.l("currency", 1234567)).toEqual("$1,234,567.00"); }); it("localizes date strings", function(){ I18n.locale = "pt-BR"; expect(I18n.l("date.formats.default", "2009-11-29")).toEqual("29/11/2009"); expect(I18n.l("date.formats.short", "2009-01-07")).toEqual("07 de Janeiro"); expect(I18n.l("date.formats.long", "2009-01-07")).toEqual("07 de Janeiro de 2009"); }); it("localizes time strings", function(){ I18n.locale = "pt-BR"; expect(I18n.l("time.formats.default", "2009-11-29 15:07:59")).toEqual("Domingo, 29 de Novembro de 2009, 15:07 h"); expect(I18n.l("time.formats.short", "2009-01-07 09:12:35")).toEqual("07/01, 09:12 h"); expect(I18n.l("time.formats.long", "2009-11-29 15:07:59")).toEqual("Domingo, 29 de Novembro de 2009, 15:07 h"); }); it("localizes date/time strings with placeholders", function(){ I18n.locale = "pt-BR"; expect(I18n.l("date.formats.short_with_placeholders", "2009-01-07", { p1: "!", p2: "?" })).toEqual("07 de Janeiro ! ?"); expect(I18n.l("time.formats.short_with_placeholders", "2009-01-07 09:12:35", { p1: "!" })).toEqual("07/01, 09:12 h !"); }); it("localizes percentage", function(){ I18n.locale = "pt-BR"; expect(I18n.l("percentage", 123.45)).toEqual("123,45%"); }); });
Version data entries
24 entries across 24 versions & 1 rubygems