forked from HamaWhiteGG/langchain-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implements i18n(pt-BR) for prompts in SQLDatabaseChain
- Loading branch information
Showing
4 changed files
with
230 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
langchain-core/src/main/java/com/hw/langchain/utils/ResourceBundleUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package com.hw.langchain.utils; | ||
|
||
import org.apache.commons.lang3.LocaleUtils; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
|
||
import lombok.experimental.UtilityClass; | ||
|
||
import java.util.Locale; | ||
import java.util.ResourceBundle; | ||
|
||
@UtilityClass | ||
public class ResourceBundleUtils { | ||
|
||
private static final Logger LOG = LoggerFactory.getLogger(ResourceBundleUtils.class); | ||
|
||
private static final String BUNDLE_NAME = "i18n.messages"; | ||
private static final String USE_LANGUAGE_ENV = "USE_LANGUAGE"; | ||
|
||
public static String getString(String key) { | ||
String language = System.getenv(USE_LANGUAGE_ENV); | ||
|
||
Locale locale = new Locale("en", "US"); | ||
|
||
if (language != null) { | ||
try { | ||
locale = LocaleUtils.toLocale(language); | ||
LOG.info("Using locale from {}", language); | ||
} catch (Exception ex) { | ||
LOG.warn("Can't load locale for language {}, setting default en_US", language); | ||
} | ||
} | ||
|
||
ResourceBundle bundle = ResourceBundle.getBundle(BUNDLE_NAME, locale); | ||
return bundle.getString(key); | ||
} | ||
|
||
} |
Oops, something went wrong.