Home
last modified time | relevance | path

Searched refs:GERMAN (Results 1 – 25 of 737) sorted by relevance

12345678910>>...30

/dports/print/bibview/bibview-2.2/
H A Dgui_help.c63 #ifdef GERMAN
69 #ifdef GERMAN
75 #ifdef GERMAN
81 #ifdef GERMAN
87 #ifdef GERMAN
93 #ifdef GERMAN
99 #ifdef GERMAN
105 #ifdef GERMAN
257 #ifdef GERMAN
445 #ifdef GERMAN
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/i18n/
H A DSessionLocaleResolverTests.java35 …uest.getSession().setAttribute(SessionLocaleResolver.LOCALE_SESSION_ATTRIBUTE_NAME, Locale.GERMAN); in testResolveLocale()
38 assertEquals(Locale.GERMAN, resolver.resolveLocale(request)); in testResolveLocale()
46 resolver.setLocale(request, response, Locale.GERMAN); in testSetAndResolveLocale()
47 assertEquals(Locale.GERMAN, resolver.resolveLocale(request)); in testSetAndResolveLocale()
54 assertEquals(Locale.GERMAN, resolver.resolveLocale(request)); in testSetAndResolveLocale()
71 resolver.setDefaultLocale(Locale.GERMAN); in testResolveLocaleWithoutSessionAndDefaultLocale()
73 assertEquals(Locale.GERMAN, resolver.resolveLocale(request)); in testResolveLocaleWithoutSessionAndDefaultLocale()
79 …uest.getSession().setAttribute(SessionLocaleResolver.LOCALE_SESSION_ATTRIBUTE_NAME, Locale.GERMAN); in testSetLocaleToNullLocale()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.p2/bundles/org.eclipse.equinox.p2.tests/src/org/eclipse/equinox/p2/tests/publisher/actions/
H A DLocalizationTests.java67 …Foo German Bundle", utils.getIUProperty(iu, IInstallableUnit.PROP_NAME, Locale.GERMAN.toString())); in testBundleLocalizationDE()
68 …rman Provider", utils.getIUProperty(iu, IInstallableUnit.PROP_PROVIDER, Locale.GERMAN.toString())); in testBundleLocalizationDE()
78 …Foo German Bundle", utils.getIUProperty(iu, IInstallableUnit.PROP_NAME, Locale.GERMAN.toString())); in testBundleLocalizationDefaultDE()
89 …Foo German Bundle", utils.getIUProperty(iu, IInstallableUnit.PROP_NAME, Locale.GERMAN.toString())); in testBundleLocalizationDefaultDEJar()
100 …Foo German Bundle", utils.getIUProperty(iu, IInstallableUnit.PROP_NAME, Locale.GERMAN.toString())); in testBundleLocalizationOSGI_INF_DE()
111 …Bar German Bundle", utils.getIUProperty(iu, IInstallableUnit.PROP_NAME, Locale.GERMAN.toString())); in testBundleLocalizationDE_alternatePropFile()
219 …oo German Feature", utils.getIUProperty(iu, IInstallableUnit.PROP_NAME, Locale.GERMAN.toString())); in testFeatureJarLocalizatioDE()
222 …assertEquals("1.4", "Foo German Copyright", utils.getCopyright(iu, Locale.GERMAN.toString()).getBo… in testFeatureJarLocalizatioDE()
223 …assertEquals("1.5", "Foo German License", utils.getLicenses(iu, Locale.GERMAN.toString())[0].getBo… in testFeatureJarLocalizatioDE()
264 …assertEquals("1.4", "Foo German Copyright", utils.getCopyright(iu, Locale.GERMAN.toString()).getBo… in testFeatureLocalizatioDE()
[all …]
/dports/java/bouncycastle15/crypto-169/core/src/test/java/org/bouncycastle/i18n/test/
H A DLocalizedMessageTest.java45 assertEquals("Hallo Welt.", msg.getEntry("text", Locale.GERMAN, in testGetEntry()
54 Locale.GERMAN, TimeZone.getDefault())); in testGetEntry()
66 "text", Locale.GERMAN, TimeZone.getTimeZone("GMT")) in testGetEntry()
79 "text", Locale.GERMAN, TimeZone.getTimeZone("GMT")) in testGetEntry()
158 Locale.GERMAN, TimeZone.getDefault())); in testLocalizedArgs()
165 Locale.GERMAN, TimeZone.getDefault())); in testLocalizedArgs()
173 Locale.GERMAN, TimeZone.getDefault())); in testLocalizedArgs()
/dports/multimedia/xine/xine-ui-0.99.12/src/xitk/
H A Dlang.c247 { "de_DE", GERMAN, "de", "UTF-8" },
248 { "de_DE@euro", GERMAN, "de", "UTF-8" },
249 { "deutsch", GERMAN, "de", "UTF-8" },
250 { "german", GERMAN, "de", "UTF-8" },
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/context/support/
H A DResourceBundleMessageSourceTests.java123 Locale.setDefault(expectGermanFallback ? Locale.GERMAN : Locale.CANADA); in doTestMessageAccess()
128 assertEquals("nachricht2", ac.getMessage("code2", null, Locale.GERMAN)); in doTestMessageAccess()
187 assertEquals("code4", ac.getMessage("code4", null, Locale.GERMAN)); in doTestMessageAccess()
210 assertEquals("nachricht2", ms.getMessage("code2", null, Locale.GERMAN)); in testResourceBundleMessageSourceStandalone()
217 assertEquals("nachricht2", ms.getMessage("code2", null, Locale.GERMAN)); in testResourceBundleMessageSourceWithWhitespaceInBasename()
225 assertEquals("nachricht2", ms.getMessage("code2", null, Locale.GERMAN)); in testResourceBundleMessageSourceWithDefaultCharset()
249 assertEquals("nachricht2", ms.getMessage("code2", null, Locale.GERMAN)); in testReloadableResourceBundleMessageSourceStandalone()
256 assertEquals("nachricht2", ms.getMessage("code2", null, Locale.GERMAN)); in testReloadableResourceBundleMessageSourceWithWhitespaceInBasename()
264 assertEquals("nachricht2", ms.getMessage("code2", null, Locale.GERMAN)); in testReloadableResourceBundleMessageSourceWithDefaultCharset()
308 assertEquals("message2", ms.getMessage("code2", null, Locale.GERMAN)); in testReloadableResourceBundleMessageSourceWithInappropriateGermanCharset()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/junit/src/org/chromium/chrome/browser/contextualsearch/
H A DContextualSearchTranslationImplTest.java35 private static final String GERMAN = "de"; field in ContextualSearchTranslationImplTest
90 assertThat(mImpl.needsTranslation(GERMAN), is(true)); in testNeedsTranslationOtherModelLanguage()
103 doReturn(GERMAN).when(mTranslateBridgeWrapperMock).getTargetLanguage(); in testTargetLanguage()
104 assertThat(mImpl.getTranslateServiceTargetLanguage(), is(GERMAN)); in testTargetLanguage()
114 mImpl.forceTranslateIfNeeded(mRequest, GERMAN, true); in testForceTranslateIfNeededWhenNeeded()
118 verify(mRequest).forceTranslation(GERMAN, null); in testForceTranslateIfNeededWhenNeeded()
/dports/net-p2p/jackett/Jackett/Definitions/
H A Dhdcenter.yml70 - name: replace # add GERMAN tag
71 args: ["-HDC", ".GERMAN-HDC"]
72 title: # special selector which only matches TvR releases not containing "GERMAN" already
73 …s_col:has(a[href*="filter_cat[10]=1"]) + td.title_col a.torrent_link_title:not(:contains("GERMAN"))
76 - name: replace # add GERMAN tag
77 args: [".DL", ".GERMAN.DL"]
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/rust/stracciatella/src/config/
H A Dvanilla_version.rs19 GERMAN, enumerator
38 "GERMAN" => Ok(VanillaVersion::GERMAN), in from_str()
57 VanillaVersion::GERMAN => "German", in fmt()
/dports/databases/xapian-core/xapian-core-1.4.18/languages/
H A Dsbl-dispatch.h37 GERMAN = 11, enumerator
96 GERMAN, 'g','e','r','m','a','n',
116 GERMAN, 'd','e',
/dports/astro/gnuastro/gnuastro-0.16/bootstrapped/tests/
H A Dtest-setlocale_null-mt-all.c47 # define GERMAN "German_Germany" macro
52 # define GERMAN "de_DE" macro
64 static const char LOCALE2[] = GERMAN ENCODING;
H A Dtest-setlocale_null-mt-one.c47 # define GERMAN "German_Germany" macro
52 # define GERMAN "de_DE" macro
64 static const char LOCALE2[] = GERMAN ENCODING;
/dports/devel/gettext-tools/gettext-0.21/gettext-tools/gnulib-tests/
H A Dtest-setlocale_null-mt-all.c42 # define GERMAN "German_Germany" macro
47 # define GERMAN "de_DE" macro
59 static const char LOCALE2[] = GERMAN ENCODING;
H A Dtest-setlocale_null-mt-one.c42 # define GERMAN "German_Germany" macro
47 # define GERMAN "de_DE" macro
59 static const char LOCALE2[] = GERMAN ENCODING;
/dports/security/libgsasl/gsasl-1.10.0/gltests/
H A Dtest-setlocale_null-mt-one.c47 # define GERMAN "German_Germany" macro
52 # define GERMAN "de_DE" macro
64 static const char LOCALE2[] = GERMAN ENCODING;
H A Dtest-setlocale_null-mt-all.c47 # define GERMAN "German_Germany" macro
52 # define GERMAN "de_DE" macro
64 static const char LOCALE2[] = GERMAN ENCODING;
/dports/devel/m4/m4-1.4.19/tests/
H A Dtest-setlocale_null-mt-all.c47 # define GERMAN "German_Germany" macro
52 # define GERMAN "de_DE" macro
64 static const char LOCALE2[] = GERMAN ENCODING;
H A Dtest-setlocale_null-mt-one.c47 # define GERMAN "German_Germany" macro
52 # define GERMAN "de_DE" macro
64 static const char LOCALE2[] = GERMAN ENCODING;
/dports/sysutils/coreutils/coreutils-8.32/gnulib-tests/
H A Dtest-setlocale_null-mt-one.c42 # define GERMAN "German_Germany" macro
47 # define GERMAN "de_DE" macro
59 static const char LOCALE2[] = GERMAN ENCODING;
H A Dtest-setlocale_null-mt-all.c42 # define GERMAN "German_Germany" macro
47 # define GERMAN "de_DE" macro
59 static const char LOCALE2[] = GERMAN ENCODING;
/dports/security/gnutls/gnutls-3.6.16/gl/tests/
H A Dtest-setlocale_null-mt-all.c42 # define GERMAN "German_Germany" macro
47 # define GERMAN "de_DE" macro
59 static const char LOCALE2[] = GERMAN ENCODING;
H A Dtest-setlocale_null-mt-one.c42 # define GERMAN "German_Germany" macro
47 # define GERMAN "de_DE" macro
59 static const char LOCALE2[] = GERMAN ENCODING;
/dports/security/gsasl/gsasl-1.10.0/gltests/
H A Dtest-setlocale_null-mt-all.c47 # define GERMAN "German_Germany" macro
52 # define GERMAN "de_DE" macro
64 static const char LOCALE2[] = GERMAN ENCODING;
H A Dtest-setlocale_null-mt-one.c47 # define GERMAN "German_Germany" macro
52 # define GERMAN "de_DE" macro
64 static const char LOCALE2[] = GERMAN ENCODING;
/dports/devel/gettext-po-mode/gettext-0.21/gettext-tools/gnulib-tests/
H A Dtest-setlocale_null-mt-one.c42 # define GERMAN "German_Germany" macro
47 # define GERMAN "de_DE" macro
59 static const char LOCALE2[] = GERMAN ENCODING;

12345678910>>...30