Home
last modified time | relevance | path

Searched refs:_locale (Results 1 – 25 of 1350) sorted by relevance

12345678910>>...54

/dports/finance/grisbi/grisbi-2.0.5/src/
H A Dgsb_locale.c35 static struct lconv *_locale = NULL; variable
53 _locale = g_malloc (sizeof (*_locale)); in gsb_locale_init_lconv_struct()
65 _locale->thousands_sep = NULL; in gsb_locale_init_lconv_struct()
121 g_free (_locale->grouping); in gsb_locale_shutdown()
129 g_free (_locale); in gsb_locale_shutdown()
142 return _locale; in gsb_locale_get_locale()
214 if (NULL == _locale) in gsb_locale_get_print_locale_var()
241 _locale->p_cs_precedes, in gsb_locale_get_print_locale_var()
242 _locale->n_cs_precedes, in gsb_locale_get_print_locale_var()
243 _locale->p_sep_by_space, in gsb_locale_get_print_locale_var()
[all …]
/dports/devel/py-babel/Babel-2.9.1/tests/messages/
H A Dtest_checkers.py34 locale = Locale.parse(_locale)
70 """ % dict(locale=_locale,
77 num_plurals=PLURALS[_locale][0],
90 if _locale in ['nn', 'no']:
91 _locale = 'nn_NO'
98 locale = Locale(_locale)
139 """ % dict(locale=_locale,
189 """ % dict(locale=_locale,
241 """ % dict(locale=_locale,
294 """ % dict(locale=_locale,
[all …]
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Bundle/SecurityBundle/Tests/Functional/Bundle/FormLoginBundle/Resources/config/
H A Dlocalized_routing.yml2 path: /{_locale}/login
4 requirements: { _locale: "^[a-z]{2}$" }
7 path: /{_locale}/login_check
9 requirements: { _locale: "^[a-z]{2}$" }
12 path: /{_locale}/profile
14 requirements: { _locale: "^[a-z]{2}$" }
17 path: /{_locale}/logout
19 requirements: { _locale: "^[a-z]{2}$" }
22 path: /{_locale}/
24 requirements: { _locale: "^[a-z]{2}$" }
[all …]
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Bundle/SecurityBundle/Tests/Functional/Bundle/FormLoginBundle/Resources/config/
H A Dlocalized_routing.yml2 path: /{_locale}/login
4 requirements: { _locale: "^[a-z]{2}$" }
7 path: /{_locale}/login_check
9 requirements: { _locale: "^[a-z]{2}$" }
12 path: /{_locale}/profile
14 requirements: { _locale: "^[a-z]{2}$" }
17 path: /{_locale}/logout
19 requirements: { _locale: "^[a-z]{2}$" }
22 path: /{_locale}/
24 requirements: { _locale: "^[a-z]{2}$" }
[all …]
/dports/www/thundersnarf/thundersnarf/protected/yii114/framework/i18n/
H A DCDateFormatter.php67 private $_locale; variable in CDateFormatter
76 $this->_locale=CLocale::getInstance($locale);
78 $this->_locale=$locale;
126 $dateTimePattern=$this->_locale->getDateTimeFormat();
234 return $this->_locale->getMonthName($month,'wide');
236 return $this->_locale->getMonthName($month,'narrow');
322 return $this->_locale->getWeekDayName($day,'wide');
352 return $this->_locale->getPMName();
354 return $this->_locale->getAMName();
531 return $this->_locale->getEraName($era,'wide');
[all …]
H A DCNumberFormatter.php63 private $_locale; variable in CNumberFormatter
73 $this->_locale=CLocale::getInstance($locale);
75 $this->_locale=$locale;
97 else if(($symbol=$this->_locale->getCurrencySymbol($currency))===null)
111 return $this->format($this->_locale->getCurrencyFormat(),$value,$currency);
123 return $this->format($this->_locale->getPercentFormat(),$value);
133 return $this->format($this->_locale->getDecimalFormat(),$value);
178 $decimal=$this->_locale->getNumberSymbol('decimal').$decimal;
187 …$integer=ltrim(implode($this->_locale->getNumberSymbol('group'),str_split($str1,$size))).$this->_l…
195 …return strtr($number,array('%'=>$this->_locale->getNumberSymbol('percentSign'),'‰'=>$this->_locale
[all …]
/dports/misc/rump/buildrump.sh-b914579/src/lib/libc/locale/
H A Dsetlocale_local.h54 struct _locale { struct
62 struct _locale * __restrict); argument
70 const char * __restrict, struct _locale * __restrict);
72 const char * __restrict, struct _locale * __restrict);
74 const char * __restrict, struct _locale * __restrict);
76 const char * __restrict, struct _locale * __restrict);
78 const char * __restrict, struct _locale * __restrict);
80 const char * __restrict, struct _locale * __restrict);
82 const char * __restrict, struct _locale * __restrict);
90 static __inline struct _locale *
/dports/www/limesurvey/limesurvey/framework/i18n/
H A DCDateFormatter.php66 private $_locale; variable in CDateFormatter
75 $this->_locale=CLocale::getInstance($locale);
77 $this->_locale=$locale;
128 $dateTimePattern=$this->_locale->getDateTimeFormat();
237 return $this->_locale->getMonthName($month,'wide');
239 return $this->_locale->getMonthName($month,'narrow');
329 return $this->_locale->getWeekDayName($day,'wide');
360 return $this->_locale->getPMName();
362 return $this->_locale->getAMName();
552 return $this->_locale->getEraName($era,'wide');
[all …]
H A DCNumberFormatter.php62 private $_locale; variable in CNumberFormatter
72 $this->_locale=CLocale::getInstance($locale);
74 $this->_locale=$locale;
96 elseif(($symbol=$this->_locale->getCurrencySymbol($currency))===null)
110 return $this->format($this->_locale->getCurrencyFormat(),$value,$currency);
122 return $this->format($this->_locale->getPercentFormat(),$value);
132 return $this->format($this->_locale->getDecimalFormat(),$value);
193 $decimal=$this->_locale->getNumberSymbol('decimal').$decimal;
202 …$integer=ltrim(implode($this->_locale->getNumberSymbol('group'),str_split($str1,$size))).$this->_l…
210 …return strtr($number,array('%'=>$this->_locale->getNumberSymbol('percentSign'),'‰'=>$this->_locale
[all …]
/dports/deskutils/egroupware/egroupware/vendor/symfony/routing/Tests/Generator/Dumper/
H A DPhpGeneratorDumperTest.php256 …oo.en', (new Route('/{_locale}/fork'))->setDefault('_locale', 'en')->setDefault('_canonical_route'…
257 …fr', (new Route('/{_locale}/fourchette'))->setDefault('_locale', 'fr')->setDefault('_canonical_rou…
258 …n', (new Route('/fun'))->setDefault('_locale', 'en')->setDefault('_canonical_route', 'fun')->setRe…
259 …(new Route('/amusant'))->setDefault('_locale', 'fr')->setDefault('_canonical_route', 'fun')->setRe…
267 $requestContext->setParameter('_locale', 'fr');
273 $this->assertSame('/en/fork', $phpGenerator->generate('foo', ['_locale' => 'en']));
274 $this->assertSame('/fr/fourchette', $phpGenerator->generate('foo.fr', ['_locale' => 'en']));
278 $this->assertSame('/fun', $phpGenerator->generate('fun', ['_locale' => 'en']));
279 $this->assertSame('/amusant', $phpGenerator->generate('fun.fr', ['_locale' => 'en']));
H A DCompiledUrlGeneratorDumperTest.php237 …oo.en', (new Route('/{_locale}/fork'))->setDefault('_locale', 'en')->setDefault('_canonical_route'…
238 …fr', (new Route('/{_locale}/fourchette'))->setDefault('_locale', 'fr')->setDefault('_canonical_rou…
239 …n', (new Route('/fun'))->setDefault('_locale', 'en')->setDefault('_canonical_route', 'fun')->setRe…
240 …(new Route('/amusant'))->setDefault('_locale', 'fr')->setDefault('_canonical_route', 'fun')->setRe…
245 $requestContext->setParameter('_locale', 'fr');
251 $this->assertSame('/en/fork', $compiledUrlGenerator->generate('foo', ['_locale' => 'en']));
252 …$this->assertSame('/fr/fourchette', $compiledUrlGenerator->generate('foo.fr', ['_locale' => 'en'])…
256 $this->assertSame('/fun', $compiledUrlGenerator->generate('fun', ['_locale' => 'en']));
257 … $this->assertSame('/amusant', $compiledUrlGenerator->generate('fun.fr', ['_locale' => 'en']));
/dports/lang/gcc12-devel/gcc-12-20211205/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/lang/gcc8/gcc-8.5.0/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/lang/gcc48/gcc-4.8.5/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/lang/gcc10/gcc-10.3.0/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/devel/zpu-gcc/zpu-toolchain-1.0/toolchain/gcc/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/lang/gnat_util/gcc-6-20180516/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/lang/gcc9-devel/gcc-9-20211007/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/libstdc++-v3/
H A DChangeLog-20031048 docs/html/22_locale/codecvt.html, docs/html/22_locale/ctype.html,
1049 docs/html/22_locale/howto.html, docs/html/22_locale/locale.html,
8043 Reshuffle 22_locale testsuite.
8065 * 22_locale/codecvt/1.cc: New.
8066 * 22_locale/codecvt/2.cc: New.
8111 * 22_locale/collate/1.cc: New.
8112 * 22_locale/collate/2.cc: New.
8136 * 22_locale/ctype/1.cc: New.
8137 * 22_locale/ctype/2.cc: New.
8176 * 22_locale/facet/1.cc: New.
[all …]

12345678910>>...54