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
AgeCommit message (Collapse)Author
2017-02-22Delete tqqDean Karn
Fixes #9
2017-02-15Merge pull request #8 from go-playground/correct-en-fallbackv0.11.1json-generationDean Karn
Correct english inheritance
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-09Merge pull request #6 from go-playground/v30-cldrv0.11.0Dean Karn
Update to CLDR v30.0.3
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-23update README versionv0.10.3Dean Karn
2016-11-23Merge branch 'patch-1'Dean Karn
2016-11-23regenerate locale data with patchesDean Karn
2016-11-23Get default numbering system for symbols.dvorakluk
Should resolve #5
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-11-07Update ru_RU_test.goNikolay Turpitko
Non-breaking spaces in numbers.
2016-11-07Update ru_RU_test.goNikolay Turpitko
2016-09-27Update README.mdDean Karn
2016-09-12remove badge CI server can't handle combining all localesDean Karn
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-12increase locale 'en' test coverage to 100%Dean Karn
2016-09-11Merge branch 'bytes-to-string'v0.9.1Dean Karn
2016-09-11a few more low level optimizationsbytes-to-stringDean Karn
2016-09-11some low level optimizationsDean Karn
2016-09-11increment versionDean 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-31add gitter badgeDean Karn
2016-08-23Update README.mdv0.9.0Dean Karn
remove go report card badge as this library is too much for it, it times out before tests can complete.
2016-08-23correct typoDean Karn
2016-08-23add more notes to generate resources code.Dean Karn
2016-08-23update READMEDean Karn
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 some notes.joeybloggs
2016-08-19complete READMEjoeybloggs
2016-08-19add cross locale currency tests.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 more month and weekday tests.joeybloggs
2016-08-18Add Month & Weekday locale accessors.joeybloggs
2016-08-18add "strconv" to templatejoeybloggs
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 a negative zero test ( I know no such thing right )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-13add percent + permille length variable for next FmtPercent and FmtDate ↵joeybloggs
functions.