mirror of
https://github.com/OpenBankProject/OBP-API.git
synced 2026-02-06 17:37:00 +00:00
bugfix/Fix the file lift-core_es_ES.properties
This commit is contained in:
parent
c96556c23f
commit
3eef801e75
@ -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 œ aren’t 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!
|
||||
@ -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")
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -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 ©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>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user