diff options
author | Florian Zschocke <f.zschocke+git@gmail.com> | 2021-10-21 21:02:11 +0200 |
---|---|---|
committer | Florian Zschocke <f.zschocke+git@gmail.com> | 2021-10-21 21:02:43 +0200 |
commit | 6d048564678b862f6ea5d16b7e5a2240f5993113 (patch) | |
tree | 4c7d63c87d26fcf98525795f135e65a107a59f32 /src/main/java/com/gitblit/wicket/GitBlitWebApp_es.properties | |
parent | 4f701485740a487249491ae6f49a1ddeaae0f116 (diff) | |
download | gitblit-6d048564678b862f6ea5d16b7e5a2240f5993113.tar.gz gitblit-6d048564678b862f6ea5d16b7e5a2240f5993113.zip |
fix: Remove duplicate property keys from properties files
Some property keys were duplicated, mostly `status`, `permission` and
`comment`.
The problem with `gb.comment` is, that it is used in two different
locations in two different meanings. One as a verb, the second as a
noun. Which makes no difference in English, but other languages.
The solution is that the second key is renamed to `gb.sshKeyComment`.
The code is adjusted accordingly.
Diffstat (limited to 'src/main/java/com/gitblit/wicket/GitBlitWebApp_es.properties')
-rw-r--r-- | src/main/java/com/gitblit/wicket/GitBlitWebApp_es.properties | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/gitblit/wicket/GitBlitWebApp_es.properties b/src/main/java/com/gitblit/wicket/GitBlitWebApp_es.properties index 2569cc67..8b40b55e 100644 --- a/src/main/java/com/gitblit/wicket/GitBlitWebApp_es.properties +++ b/src/main/java/com/gitblit/wicket/GitBlitWebApp_es.properties @@ -170,7 +170,6 @@ gb.accessLevel = Nivel de acceso gb.default = Predeterminado
gb.setDefault = Poner predeterminado
gb.since = Desde
-gb.status = Estado
gb.bootDate = Fecha de inicio
gb.servletContainer = Contenedor ServLet
gb.heapMaximum = Pila m\u00E1xima
@@ -671,6 +670,7 @@ gb.repositoryDoesNotAcceptPatchsets = Este Repositorio no acepta parches. gb.serverDoesNotAcceptPatchsets = Este Servidor-Git no acepta parches.
gb.ticketIsClosed = Este ticket est\u00E1 cerrado.
gb.mergeToDescription = Rama de integraciu00F3n predeterminada para combinar ticket y parches
+gb.sshKeyComment = Comentar
# This last property for unit tests to test successful loading of the resource file
gb.loadLang = Espa\u00f1ol
|