Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
f2d61620
Commit
f2d61620
authored
Jun 18, 2013
by
Petr Prikryl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Translators for ES and FR -- base class fixed.
parent
e3d21b2d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
59 additions
and
2 deletions
+59
-2
translator_es.h
src/translator_es.h
+58
-1
translator_fr.h
src/translator_fr.h
+1
-1
No files found.
src/translator_es.h
View file @
f2d61620
...
...
@@ -31,9 +31,10 @@
* Updated to 1.6.4 by Bartomeu Creus Navarro (26-mayo-2010) [(16-jun-2010) grabado en UTF-8]
* Updated to 1.8.0 by Bartomeu Creus Navarro (11-abril-2012)
* Updated to 1.8.2 by Bartomeu Creus Navarro (01-julio-2012)
* Updated to 1.8.4 by Bartomeu Creus Navarro (17-julio-2013)
*/
class
TranslatorSpanish
:
public
Translator
Adapter_1_8_4
class
TranslatorSpanish
:
public
Translator
{
public
:
...
...
@@ -2055,6 +2056,62 @@ class TranslatorSpanish : public TranslatorAdapter_1_8_4
return
"Diseño información general"
;
}
//////////////////////////////////////////////////////////////////////////
// new since 1.8.4
//////////////////////////////////////////////////////////////////////////
/** old style UNO IDL services: implemented interfaces */
virtual
QCString
trInterfaces
()
{
return
"Interface exportada"
;
}
/** old style UNO IDL services: inherited services */
virtual
QCString
trServices
()
{
return
"Servicios incluidos"
;
}
/** UNO IDL constant groups */
virtual
QCString
trConstantGroups
()
{
return
"Grupos constantes"
;
}
/** UNO IDL constant groups */
virtual
QCString
trConstantGroupReference
(
const
char
*
namespaceName
)
{
QCString
result
=
namespaceName
;
result
+=
" referencia de grupos constantes"
;
return
result
;
}
/** UNO IDL service page title */
virtual
QCString
trServiceReference
(
const
char
*
sName
)
{
QCString
result
=
(
QCString
)
sName
;
result
+=
" Referencia servicio"
;
return
result
;
}
/** UNO IDL singleton page title */
virtual
QCString
trSingletonReference
(
const
char
*
sName
)
{
QCString
result
=
(
QCString
)
sName
;
result
+=
" referencia Singleton"
;
return
result
;
}
/** UNO IDL service page */
virtual
QCString
trServiceGeneratedFromFiles
(
bool
single
)
{
// single is true implies a single file
QCString
result
=
(
QCString
)
"La documentacion para este servicio "
"se ha generado desde "
;
if
(
single
)
result
+=
"el siguiente fichero:"
;
else
result
+=
"los siguientes ficheros:"
;
return
result
;
}
/** UNO IDL singleton page */
virtual
QCString
trSingletonGeneratedFromFiles
(
bool
single
)
{
// single is true implies a single file
QCString
result
=
(
QCString
)
"La documentación para este singleton "
"se ha generado desde "
;
if
(
single
)
result
+=
"el siguiente fichero:"
;
else
result
+=
"los siguientes ficheros:"
;
return
result
;
}
//////////////////////////////////////////////////////////////////////////
};
...
...
src/translator_fr.h
View file @
f2d61620
...
...
@@ -103,7 +103,7 @@
// Translator class (by the local maintainer) when the localized
// translator is made up-to-date again.
class
TranslatorFrench
:
public
Translator
Adapter_1_8_0
class
TranslatorFrench
:
public
Translator
{
public
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment