aboutsummaryrefslogtreecommitdiff
path: root/share/numericdef
Commit message (Collapse)AuthorAgeFilesLines
* Remove residual blank line at start of MakefileWarner Losh2024-07-151-1/+0
| | | | | | | This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-162-2/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* pkgbase: locales: Also tag the files dirEmmanuel Vadot2021-08-061-0/+1
| | | | | | Otherwise bsd.dirs.mk will create the directory with the default package (utilities) and we end up with a bunch of empty dirs managed by this package while it shouldn't be the case.
* pkgbase: fix locale packagesKyle Evans2021-08-061-1/+1
| | | | | | | | | Most places spelled it -locales, but numericdef spelled it as -locale in just this one place. Pluralize it. Reviewed by: emaste, manu Fixes: 0fa5403d493b ("pkgbase: move locales into their own package") Differential Revision: https://reviews.freebsd.org/D31428
* pkgbase: move locales into their own packageBaptiste Daroussin2021-08-031-0/+2
| | | | | | | | The only exception here being C.UTF-8 as this is the default locales so it needs to always be installed Reviewed by: pkgbase (emaste) Differential Revision: https://reviews.freebsd.org/D31397
* locales: fix abuse of bsd.dirs.mkBaptiste Daroussin2021-08-031-2/+2
| | | | | | | | the way SAMEDIRS was defined was an abuse of bsd.dirs.mk resulting in all the directory to be created in one single command, but DESTDIR is only prepend once on the first element of the list Switch to the properway to use bsd.dirs.mk
* locales: stop hardcoding the directories in the mtreeBaptiste Daroussin2021-08-031-0/+2
| | | | | | | | | The framework knows how to create directories and tag them properly for a the creation of a mtree, not need to hardcode all the locales entries in bsd.usr.mk This simplifies addition of new locales but also allow people building with WITHOUT_LOCALES to end up with a directory full of empty files
* locales: separate unicode from other localesBaptiste Daroussin2021-07-238-186/+61
| | | | | | | | Unicode locales are maintained and to evolved in cldr. Generating the other locales from the unicode gets more and more painful over the time. Let's freeze the other locales to cldr 34.0.
* Add ga_IE.UTF-8 locale.Yuri Pankov2018-11-261-0/+1
| | | | | | | | | | | | PR: 228587 Submitted by: Micil <micheal.maclochlainn@oegaillimh.ie> (LC_TIME) Reviewed by: bapt Approved by: kib (mentor, implicit) MFC after: 3 days Differential revision: https://reviews.freebsd.org/D17997 Notes: svn path=/head/; revision=340992
* Update to CLDR 34 and UNICODE 11.Yuri Pankov2018-11-032-3/+17
| | | | | | | | | Discussed with: bapt Approved by: kib (mentor) MFC after: 1 month Notes: svn path=/head/; revision=340104
* Update to CLDR 32 and Unicode 10Baptiste Daroussin2017-11-034-23/+9
| | | | | | | | MFC after: 2 weeks Relnotes: yes Notes: svn path=/head/; revision=325361
* Readd Big5: some large databases setup are still requiring it.Baptiste Daroussin2017-04-202-0/+15
| | | | | | | Reported by: "張君天(Chun-Tien Chang)" <tcs@kitty.2y.idv.tw> Notes: svn path=/head/; revision=317204
* Remove zh_TW.Big5 localeBaptiste Daroussin2017-03-192-15/+0
| | | | | | | | After discussion with many Taiwanese, in IT or not. Big5 is not used anymore. It is not able to represent lots of the characters used in the language. Notes: svn path=/head/; revision=315568
* Update locales cldr to v30.0.3 and unicode to 9.0.0Baptiste Daroussin2016-12-182-23/+9
| | | | | | | | MFC after: 1 month Relnotes: yes Notes: svn path=/head/; revision=310201
* Posixify the locales name for variantsBaptiste Daroussin2016-07-034-14/+14
| | | | | | | | | | | | | | | | | | | | | | | For all locales with variants: - if no ambiguity on the locale (only one variant) just use the regular name - if ambiguity, pick one as default and append @<variant> to the others respecting POSIX As a result: - All the 3 components locales added recently are renamed to the usual 2 components version for all but sr_RS.UTF-8 - Set sr_RS.UTF-8 to the cyrillic variant - Add sr_RS.UTF-8@latin - Remove the symlinks aliases they were created to represent the 2 components version as aliasas and are now useless - Update the OptionalObsoleteFiles.inc and ObsoleteFiles.inc to reflect those changes Discussed with: ache@ Approved by: re@ (gjb) Notes: svn path=/head/; revision=302329
* Fix generation of locales with multiple variantsBaptiste Daroussin2016-06-202-18/+4
| | | | | | | | | | | | Serbian locales have triple components to represent the 2 variations of the locale: Latin and Cyrillic. Previously the tools generatic the locale were appending both definitions instead of differentiating them. Reported by: ache Approved by: re (gjb) Notes: svn path=/head/; revision=302026
* Regenerates locales Makefiles and localesBaptiste Daroussin2016-04-161-1/+2
| | | | Notes: svn path=/head/; revision=298121
* Simplify the locale generated Makefiles by using bmake multi variables for loopsBaptiste Daroussin2015-12-181-178/+178
| | | | Notes: svn path=/head/; revision=292453
* META MODE: Fix 'make the-lot' with recent locale changesBryan Drewery2015-11-251-0/+11
| | | | | | | Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=291311
* Bring back a couple of ISO8859-15 locales:Baptiste Daroussin2015-11-161-0/+7
| | | | | | | | | | | | - af_ZA.ISO8859-15 - en_AU.ISO8859-15 - en_CA.ISO8859-15 - en_NZ.ISO8859-15 - en_US.ISO8859-15 - fr_CA.ISO8859-15 Notes: svn path=/head/; revision=290928
* Regenerate locales after readding ISO8859-1 for locales that have ISO8859-15Baptiste Daroussin2015-11-151-0/+27
| | | | | | | Requested by: arche Notes: svn path=/head/; revision=290866
* Use explicit filename when creating locale symlinks to avoid creating aBryan Drewery2015-11-111-1/+2
| | | | | | | | | | directory symlink when the target directory does not exist. This will cause an error instead of a broken setup. Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=290677
* Merge from headBaptiste Daroussin2015-11-011-1/+1
|\ | | | | | | Notes: svn path=/projects/collation/; revision=290241
| * Use more appropriate ${SHAREDIR} rather than /usr/share.Bryan Drewery2015-10-271-1/+1
| | | | | | | | | | | | | | | | MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=290083
* | Regenerate localesBaptiste Daroussin2015-10-1313-181/+166
| | | | | | | | Notes: svn path=/projects/collation/; revision=289261
* | Add newly generated locales from CLDR 27.0.1Baptiste Daroussin2015-08-0855-616/+389
|/ | | | | | | only skip timedef until I figure out how to workaround svn painful mime-type handling Notes: svn path=/projects/collation/; revision=286438
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Updated dependenciesSimon J. Gerraty2013-02-161-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=246868
| * Sync with HEAD.David E. O'Brien2013-02-081-1/+1
| |\ | | | | | | | | | Notes: svn path=/projects/bmake/; revision=246555
| * | Include the target filename in SYMLINKS to avoid any confusion aboutSimon J. Gerraty2013-01-231-1/+1
| | | | | | | | | | | | | | | | | | | | | what is dirname and filename. Notes: svn path=/projects/bmake/; revision=245831
| * | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.Marcel Moolenaar2012-08-221-0/+14
| | | | | | | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net> Notes: svn path=/projects/bmake/; revision=239572
* | | Ensure SYMLINKS fully specifiedSimon J. Gerraty2015-06-111-1/+1
| |/ |/| | | | | | | | | | | | | Differential Revision: D2748 Reviewed by: brooks Notes: svn path=/head/; revision=284287
* | Don't link two different things to the same paths. As tiebreaker I'veBrooks Davis2013-01-241-1/+1
|/ | | | | | | | | picked the link that was installed last so as to not change the behavior. The one exception is sr_YU.ISO8859-2/LC_MONETARY where a file was being replaced by a link. Notes: svn path=/head/; revision=245889
* Add lv_LVAndrey A. Chernov2009-09-031-1/+2
| | | | Notes: svn path=/head/; revision=196792
* add ca_AD, ca_FR and ca_IT localesEdwin Groothuis2009-06-101-6/+7
| | | | | | | | | | | | | | | | | Catalan language is not only spoken in Spain (ca_ES), but also in Andorra, France and Italy. In Andorra it is the official language. (see http://en.wikipedia.org/wiki/Catalan_language#Geographic_distribution) Add a bunch of symlinks to between ca_ES and ca_AD, ca_FR and ca_IT. PR: conf/92541 Submitted by: <rmh@io.debian.net> MFC after: 1 week Notes: svn path=/head/; revision=193908
* Fix LC_NUMERIC and LC_MONETARY for de_CH localeEdwin Groothuis2009-06-092-6/+19
| | | | | | | | | | | | | | | | | | With the de_CH (swiss german) locale, numbers should look like this: numbers: 1'234.45 monetary values: Fr. 1'234.45 Previously, the thousands separator was missing for numbers, and "." for monetary values, and "," was incorrectly used as decimal point. PR: conf/75502 Submitted by: Benjamin Lutz <benlutz@datacomm.ch> MFC after: 1 week Notes: svn path=/head/; revision=193867
* Add locales for nb_NO and nn_NO.Dag-Erling Smørgrav2006-11-091-3/+4
| | | | | | | Reviewed by: philip Notes: svn path=/head/; revision=164131
* Add mn_MN.UTF-8Andrey A. Chernov2006-10-022-0/+13
| | | | | | | Submitted by: Ganbold <ganbold@micom.mng.net> Notes: svn path=/head/; revision=162940
* New Ukrainian locale: uk_UA.CP1251.Ruslan Ermilov2005-03-041-0/+1
| | | | | | | Submitted by: Alexander Peresunko Notes: svn path=/head/; revision=143126
* Use comma instead of a single quote as the decimal point separator forAnton Berezin2004-11-161-1/+1
| | | | | | | | | | eu_ES.* locales. Discussed with: "J. Vicente Carrasco -Bixen- " <carvay@tikismikis.org>, the eu_ES.* locales submitter, tjr Notes: svn path=/head/; revision=137774
* Utilize FILES and SYMLINKS.Ruslan Ermilov2004-10-181-181/+69
| | | | Notes: svn path=/head/; revision=136659
* Add the necessary magic to make the thousands separator work forGiorgos Keramidas2004-10-131-1/+1
| | | | | | | | | | | | | floating-point formats in the Greek locale. This allows printing numbers with the ' format modifier, like this: $ env -i LC_NUMERIC=el_GR.ISO8859-7 printf "%'.3f\n" 1024000 1.024.000,000 Reviewed by: das Notes: svn path=/head/; revision=136496
* Symlink missing lt_LT.ISO8859-4 LC_MONETARY, LC_MESSAGES and LC_NUMERICTim J. Robbins2004-08-281-0/+2
| | | | | | | data files to the ISO8859-13 versions. Notes: svn path=/head/; revision=134438
* Add Basque (Spain) locales: eu_ES.ISO8859-1, eu_ES.ISO8859-15, eu_ES.UTF-8.Tim J. Robbins2004-08-282-2/+17
| | | | | | | | | | | (This differs somewhat from the version originally submitted - any mistakes are my own.) PR: 68524 Submitted by: J. Vicente Carrasco -Bixen- Notes: svn path=/head/; revision=134437
* Add an Israel Hebrew locale: he_IL.UTF-8.Tim J. Robbins2004-04-211-0/+2
| | | | | | | | PR: 65826 Submitted by: Hye-Shik Chang Notes: svn path=/head/; revision=128526
* Add data for missing categories to zh_HK.Big5HKSCS locale.Tim J. Robbins2004-04-041-1/+1
| | | | Notes: svn path=/head/; revision=127837
* Add UTF-8 versions of all the currently supported system locales. Most ofTim J. Robbins2004-03-271-0/+86
| | | | | | | | | | the hard work was done by Hye-Shik Chang in the misc/utf8locale port; I made a few minor adjustments and merged the makefiles. PR: 44307 Notes: svn path=/head/; revision=127474
* Use correct thousands separator for the Italian locale.Colin Percival2004-02-181-1/+1
| | | | | | | | | | PR: misc/54477 Submitted by: Nicola Vitale <nivit@libero.it> Approved by: rwatson (mentor) Confirmed by: #freebsd, Google Notes: svn path=/head/; revision=125958
* Add kk_KZ.PT154Andrey A. Chernov2004-01-292-0/+13
| | | | | | | Submitted by: Birsh T <tim@zhezu.kz> Notes: svn path=/head/; revision=125208