bugfix/Fix the file lift-core_es_ES.properties

This commit is contained in:
Marko Milić 2022-07-25 16:39:44 +02:00
parent c96556c23f
commit 3eef801e75
3 changed files with 21 additions and 14 deletions

View File

@ -1,12 +1,19 @@
# The main drawback here is that all application resources for a given locale must exist
# in the same file, and that extended characters such as œ arent properly encoded by
# default. This is due to Java properties bundles using ISO 8859-1 encoding and thus
# requiring conversion to escaped format, such as \u0153. Fortunately this process can
# be automated using tools like native2ascii
# https://native2ascii.net/
# This tool will allow you to convert national language characters to and from their Unicode equivalents in plain ASCII text.
api.explorer = Explorador API
api_manager = Gestor API
introduction = Introducción
introduction = Introducci\u00f3n
support = Soporte
register = Registrarse
logon = Ingresar
terms_conditions = Terminos y condiciones
privacy_policy = Política de privacidad
api_documentation = Documentación API
privacy_policy = Pol\u00edtica de privacidad
api_documentation = Documentaci\u00f3n API
api_host = Host del API
api_tester = Evaluador API
view_api_explorer = Ver Explorador API
@ -395,4 +402,4 @@ your.username.is.not.unique = Your username is not unique. Please enter a differ
user.invitation.is.already.finished = Looks like the invitation link is invalid. Still need help? Please send us a message using API Playground Support.
your.secret.link.is.not.valid = Looks like the invitation link is invalid. Still need help? Please send us a message using API Playground Support.
OBP-30001 = El usuario no ha iniciado sesión. ¡Se requiere autenticación!
OBP-30001 = El usuario no ha iniciado sesi\u00c3\u00b3n. \u00c2\u00a1Se requiere autenticaci\u00c3\u00b3n!

View File

@ -65,9 +65,9 @@ class WebUI extends MdcLoggable{
}
def homePage = {
val host = Props.get("base_url").getOrElse("unknown")
"#uk a [href]" #> scala.xml.Unparsed(s"$host/?locale=es_ES") &
"#it a [href]" #> scala.xml.Unparsed(s"$host/?locale=en_EN")
val host = Constant.HostName
"#es a [href]" #> scala.xml.Unparsed(s"$host/?locale=es_ES") &
"#en a [href]" #> scala.xml.Unparsed(s"$host/?locale=en_EN")
}

View File

@ -235,14 +235,14 @@ Berlin 13359, Germany
<a class="api-link" data-lift="WebUI.apiLinkHuman" href="">
<lift:loc locid="api_host">This API Host</lift:loc></a>
</li>
<li>
<div class="language-tag" data-lift="WebUI.homePage">
<a href="#" >Language </a>
<a id="es" href="/" > ES </a>
<a id="en" href="/" >| EN </a>
</div>
</li>
</ul>
<br>
<div class="language-tag" data-lift="WebUI.homePage">
<span><a href="#" >Language</a></span>
<span><a id="es" href="/" >ES</a></span>
<span><a href="/" >|</a></span>
<span><a id="en" href="/" >EN</a></span>
</div>
<div id="copyright">
<a href="http://openbankproject.com">Open Bank Project is &copy;2011 - <span id="copyright-year" data-lift="WebUI.currentYearText">2018</span> </a> <a href="http://tesobe.com">TESOBE and distributed under the AGPL and commercial licenses.</a>
</div>