Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/locales.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/es_UY
AgeCommit message (Collapse)Author
2021-08-02mod: Update pathv0.14.0Bjørn Erik Pedersen
2021-08-02Update from CLDR v32 to v36.1Bojan Zivanovic
2018-03-08Updating to CLDR 32.0.1Vidhur Vohra
2017-10-11Updated CLDR to 31.0.1; Added test for russian; Added methods Decimal, ↵Administrator
Group, Minus; Refactoring: replaced l := len(s) + 0 + 0*len(s[:len(s)-int(v)-1])/3 => l := len(s) + 0; t.Year()*-1 -> -t.Year()
2017-02-15Correct english inheritancecorrect-en-fallbackDean Karn
- old logic fell back to base locale when data could not be found; no it attempts to find via inheritance cross reference. Closes #7
2017-02-09Update to CLDR v30.0.3v30-cldrjoeybloggs
- Regenerated locale data from v30.0.3 CLDR data - Added negative year check for FmtDataXXX functions with 4 digit years - update ru_RU test to handle change of short date format from v29 dd.MM.yy to v30 dd.MM.y
2016-11-23regenerate locale data with patchesDean Karn
2016-11-08Correct some issues + Add Russian testsv0.10.2Dean Karn
- corrected handling of single quite in date formats, index was off causing quotes to appear in text - corrected bug in plurals rules mod != rules were generating mod10 < 12 && mod10 >14, when it should be (mod10 < 12 || mod10 > 14) - added code to sort plural rules, no real issue just now print in order - override russian percent format CLDR contains space between # and % but should be no space. Russian tests were added, thanks @nikolay-turpitko. - updated tests to cover 100% of range rules.
2016-09-12add generated testsv0.10.0Dean Karn
- tests are all setup, just need persons with locale knowledge to fill in the actual test cases.
2016-09-11a few more low level optimizationsbytes-to-stringDean Karn
2016-09-11some low level optimizationsDean Karn
2016-09-11more multibyte checks for []byte to string changeoverDean Karn
2016-09-11add check for multibyte chars after switching from []byte to stringDean Karn
2016-09-11covered stored data from []byte to stringDean Karn
appending to a []byte is faster using a string rather than another []byte...who knew
2016-08-22Add PluralsRange() function to mirror PluralsCardinal() and PluralsOrdingal()Dean Karn
2016-08-19add locale map generation for external mapping of locale to instance function.joeybloggs
2016-08-19add a space for readability for non locale specific currencies eg. ↵joeybloggs
-USD<space>10,356.45 vs -$10,356.45
2016-08-19Correct Weekday in FmtDate functions, was accidentally calling Day() instead ↵joeybloggs
of Weekday()
2016-08-18Add Month & Weekday locale accessors.joeybloggs
2016-08-18Remove FmtDateTime functions and some variables when not used on locale structjoeybloggs
- Remove FmtDateTime because it's not this library's job to combine them.
2016-08-18Add FmtDateTime helper functions.joeybloggs
2016-08-18Add timezone logic + locale specific infojoeybloggs
2016-08-18look at timezones to see if can set appropriately in FmtTime...joeybloggs
2016-08-17Add calendar data, now onto the functions.joeybloggs
2016-08-16add accounting currency formatting logic + functionjoeybloggs
2016-08-16add regular currency logicjoeybloggs
2016-08-15Modify to store percent prefix & suffix on translator instance ( when ↵joeybloggs
available )
2016-08-15sure up percent prefix logic, just need to turn prefixes into bytes...joeybloggs
2016-08-13add FmtPercent logic.joeybloggs
2016-08-13ad variable grouping logic + cleanup generated code newlinesjoeybloggs
2016-08-12Add FmtNumber function + logic.joeybloggs
2016-08-11add range plural rules + expose Ordinal + Cardinal functionsjoeybloggs
2016-08-11add ordinal rules + some variable cleanupjoeybloggs
2016-08-10initial commitjoeybloggs