translator_ca.h 61 KB
Newer Older
1 2
/******************************************************************************
 *
3
 *
4
 *
Dimitri van Heesch's avatar
Dimitri van Heesch committed
5
 * Copyright (C) 1997-2014 by Dimitri van Heesch.
6 7
 *
 * Permission to use, copy, modify, and distribute this software and its
8 9
 * documentation under the terms of the GNU General Public License is hereby
 * granted. No representations are made about the suitability of this software
10 11 12 13 14 15 16 17 18 19 20
 * for any purpose. It is provided "as is" without express or implied warranty.
 * See the GNU General Public License for more details.
 *
 * Documents produced by Doxygen are derivative works derived from the
 * input used in their production; they are not affected by this license.
 *
 */

#ifndef TRANSLATOR_CA_H
#define TRANSLATOR_CA_H

21
/*!
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
 When defining a translator class for the new language, follow
 the description in the documentation.  One of the steps says
 that you should copy the translator_en.h (this) file to your
 translator_xx.h new file.  Your new language should use the
 Translator class as the base class.  This means that you need to
 implement exactly the same (pure virtual) methods as the
 TranslatorEnglish does.  Because of this, it is a good idea to
 start with the copy of TranslatorEnglish and replace the strings
 one by one.

 It is not necessary to include "translator.h" or
 "translator_adapter.h" here.  The files are included in the
 language.cpp correctly.  Not including any of the mentioned
 files frees the maintainer from thinking about whether the
 first, the second, or both files should be included or not, and
 why.  This holds namely for localized translators because their
 base class is changed occasionaly to adapter classes when the
 Translator class changes the interface, or back to the
 Translator class (by the local maintainer) when the localized
 translator is made up-to-date again.
*/
43
class TranslatorCatalan : public TranslatorAdapter_1_8_0
44 45 46 47
{
  public:

    // --- Language control methods -------------------
48 49 50

    /*! Used for identification of the language. The identification
     * should not be translated. It should be replaced by the name
51
     * of the language in English using lower-case characters only
52
     * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
53 54 55 56
     * the identification used in language.cpp.
     */
    virtual QCString idLanguage()
    { return "catalan"; }
57 58

    /*! Used to get the LaTeX command(s) for the language support.
59
     *  This method should return string with commands that switch
60
     *  LaTeX to the desired language.  For example
61 62 63 64 65 66 67
     *  <pre>"\\usepackage[german]{babel}\n"
     *  </pre>
     *  or
     *  <pre>"\\usepackage{polski}\n"
     *  "\\usepackage[latin2]{inputenc}\n"
     *  "\\usepackage[T1]{fontenc}\n"
     *  </pre>
68
     *
69 70 71 72 73
     * The English LaTeX does not use such commands.  Because of this
     * the empty string is returned in this implementation.
     */
    virtual QCString latexLanguageSupportCommand()
    {
74 75
      //return "\\usepackage[catalan]{babel}\n\\usepackage[latin1]{inputenc}";
      return "\\usepackage[catalan]{babel}\n";
76 77 78 79 80 81 82 83 84 85
    }

    // --- Language translation methods -------------------

    /*! used in the compound documentation before a list of related functions. */
    virtual QCString trRelatedFunctions()
    { return "Funcions Associades"; }

    /*! subscript for the related functions. */
    virtual QCString trRelatedSubscript()
86
    { return "(Remarcar que aquestes funcions no són funcions membre.)"; }
87 88 89

    /*! header that is put before the detailed description of files, classes and namespaces. */
    virtual QCString trDetailedDescription()
90
    { return "Descripció Detallada"; }
91 92 93

    /*! header that is put before the list of typedefs. */
    virtual QCString trMemberTypedefDocumentation()
94
    { return "Documentació de les Definicions de Tipus Membre"; }
95

96 97
    /*! header that is put before the list of enumerations. */
    virtual QCString trMemberEnumerationDocumentation()
98
    { return "Documentació de les Enumeracions Membre"; }
99

100 101
    /*! header that is put before the list of member functions. */
    virtual QCString trMemberFunctionDocumentation()
102
    { return "Documentació de les Funcions Membre"; }
103

104 105
    /*! header that is put before the list of member attributes. */
    virtual QCString trMemberDataDocumentation()
106
    {
107 108
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
109
        return "Documentació dels Camps";
110 111 112
      }
      else
      {
113
        return "Documentació de les Dades Membre";
114 115 116 117
      }
    }

    /*! this is the text of a link put after brief descriptions. */
118
    virtual QCString trMore()
119
    { return "Més..."; }
120 121 122

    /*! put in the class documentation */
    virtual QCString trListOfAllMembers()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
123
    { return "Llista de tots els membres"; }
124 125 126

    /*! used as the title of the "list of all members" page of a class */
    virtual QCString trMemberList()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
127
    { return "Llista dels Membres"; }
128 129 130

    /*! this is the first part of a sentence that is followed by a class name */
    virtual QCString trThisIsTheListOfAllMembers()
131
    { return "Aquesta és la llista complerta dels membres de "; }
132 133 134 135

    /*! this is the remainder of the sentence after the class name */
    virtual QCString trIncludingInheritedMembers()
    { return ", incloent tots els membres heretats."; }
136

137 138 139 140
    /*! this is put at the author sections at the bottom of man pages.
     *  parameter s is name of the project name.
     */
    virtual QCString trGeneratedAutomatically(const char *s)
141
    { QCString result="Generat automàticament per Doxygen";
142
      if (s) result+=(QCString)" per a "+s;
143
      result+=" a partir del codi font.";
144 145 146 147 148 149
      return result;
    }

    /*! put after an enum name in the list of all members */
    virtual QCString trEnumName()
    { return "nom de la enum"; }
150

151 152 153
    /*! put after an enum value in the list of all members */
    virtual QCString trEnumValue()
    { return "valors de la enum"; }
154

155 156 157 158 159 160
    /*! put after an undocumented member in the list of all members */
    virtual QCString trDefinedIn()
    { return "definit a"; }

    // quick reference sections

161
    /*! This is put above each page as a link to the list of all groups of
162 163 164
     *  compounds or files (see the \\group command).
     */
    virtual QCString trModules()
165
    { return "Mòduls"; }
166

167 168 169
    /*! This is put above each page as a link to the class hierarchy */
    virtual QCString trClassHierarchy()
    { return "Jerarquia de Classes"; }
170

171 172
    /*! This is put above each page as a link to the list of annotated classes */
    virtual QCString trCompoundList()
173
    {
174 175 176 177 178 179
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        return "Estructures de Dades";
      }
      else
      {
180
        return "Llista de Classes";
181 182
      }
    }
183

184 185
    /*! This is put above each page as a link to the list of documented files */
    virtual QCString trFileList()
Dimitri van Heesch's avatar
Dimitri van Heesch committed
186
    { return "Llista dels Fitxers"; }
187 188 189

    /*! This is put above each page as a link to all members of compounds. */
    virtual QCString trCompoundMembers()
190
    {
191 192
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
193
        return "Camps de Dades";
194 195 196
      }
      else
      {
197
        return "Membres de Classes";
198 199 200 201 202
      }
    }

    /*! This is put above each page as a link to all members of files. */
    virtual QCString trFileMembers()
203
    {
204 205
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
206
        return "Globals";
207 208 209
      }
      else
      {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
210
        return "Membres de Fitxers";
211 212 213 214 215
      }
    }

    /*! This is put above each page as a link to all related pages. */
    virtual QCString trRelatedPages()
216
    { return "Pàgines Relacionades"; }
217 218 219 220 221 222 223 224 225 226 227

    /*! This is put above each page as a link to all examples. */
    virtual QCString trExamples()
    { return "Exemples"; }

    /*! This is put above each page as a link to the search engine. */
    virtual QCString trSearch()
    { return "Cerca"; }

    /*! This is an introduction to the class hierarchy. */
    virtual QCString trClassHierarchyDescription()
228 229
    { return "Aquesta llista d'herència està ordenada toscament, "
             "però no completa, de forma alfabètica:";
230 231 232 233 234
    }

    /*! This is an introduction to the list with all files. */
    virtual QCString trFileListDescription(bool extractAll)
    {
235
      QCString result="Aquesta és la llista de tots els fitxers ";
236 237 238 239 240 241 242
      if (!extractAll) result+="documentats ";
      result+="acompanyats amb breus descripcions:";
      return result;
    }

    /*! This is an introduction to the annotated compound list. */
    virtual QCString trCompoundListDescription()
243 244
    {

245 246
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
247
        return "Aquestes són les estructures de dades acompanyades amb breus descripcions:";
248 249 250
      }
      else
      {
251
        return "Aquestes són les classes, estructures, "
252
               "unions i interfícies acompanyades amb breus descripcions:";
253 254 255 256 257 258
      }
    }

    /*! This is an introduction to the page with all class members. */
    virtual QCString trCompoundMembersDescription(bool extractAll)
    {
259
      QCString result="Aquesta és la llista de tots els ";
260 261 262 263 264 265 266 267 268 269
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        result+="camps d'estructures i unions";
      }
      else
      {
        result+="membres de classe";
      }
      if (!extractAll)
      {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
270
        result+=" documentats";
271
      }
272
      result+=" amb enllaços a ";
273
      if (!extractAll)
274 275 276
      {
        if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
        {
277
          result+="la documentació de l'estructura/unió per a cada camp:";
278 279 280
        }
        else
        {
281
          result+="la documentació de la classe per a cada membre:";
282 283
        }
      }
284
      else
285 286 287
      {
        if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
        {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
288
          result+="les estructures/unions a que pertanyen:";
289 290 291
        }
        else
        {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
292
          result+="les classes a que pertanyen:";
293 294 295 296 297 298 299
        }
      }
      return result;
    }
    /*! This is an introduction to the page with all file members. */
    virtual QCString trFileMembersDescription(bool extractAll)
    {
300
      QCString result="Aquesta és la llista de ";
301 302 303
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        result+="totes les funcions, variables, definicions, enumeracions, i definicions de tipus";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
304
        if (!extractAll) result+=" documentades";
305 306 307
      }
      else
      {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
308 309
        result+="tots els membres de fitxers";
        if (!extractAll) result+=" documentats";
310
      }
311
      result+=" amb enllaços ";
312
      if (extractAll)
Dimitri van Heesch's avatar
Dimitri van Heesch committed
313
        result+="als fitxers als quals corresponen:";
314
      else
315
        result+="a la documentació:";
316 317 318 319 320
      return result;
    }

    /*! This is an introduction to the page with the list of all examples */
    virtual QCString trExamplesDescription()
321
    { return "Aquesta és la llista de tots els exemples:"; }
322 323 324

    /*! This is an introduction to the page with the list of related pages */
    virtual QCString trRelatedPagesDescription()
325
    { return "Aquesta és la llista de totes les pàgines de documentació associades:"; }
326 327 328

    /*! This is an introduction to the page with the list of class/file groups */
    virtual QCString trModulesDescription()
329
    { return "Aquesta és la llista de mòduls:"; }
330 331

    // index titles (the project name is prepended for these)
332 333 334 335


    /*! This is used in HTML as the title of index.html. */
    virtual QCString trDocumentation()
336
    { return ": Documentació"; }
337

338
    /*! This is used in LaTeX as the title of the chapter with the
339 340 341
     * index of all groups.
     */
    virtual QCString trModuleIndex()
342
    { return "Índex de Mòduls"; }
343

344
    /*! This is used in LaTeX as the title of the chapter with the
345 346 347
     * class hierarchy.
     */
    virtual QCString trHierarchicalIndex()
348
    { return "Índex Jeràrquic"; }
349

350
    /*! This is used in LaTeX as the title of the chapter with the
351 352 353 354 355
     * annotated compound index.
     */
    virtual QCString trCompoundIndex()
    {
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
356
      {
357
        return "Índex d'Estructures de Dades";
358 359 360
      }
      else
      {
361
        return "Índex de Classes";
362 363 364 365 366 367
      }
    }

    /*! This is used in LaTeX as the title of the chapter with the
     * list of all files.
     */
368
    virtual QCString trFileIndex()
369
    { return "Índex de Fitxers"; }
370 371 372 373 374

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all groups.
     */
    virtual QCString trModuleDocumentation()
375
    { return "Documentació dels Mòduls"; }
376 377 378 379 380

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all classes, structs and unions.
     */
    virtual QCString trClassDocumentation()
381
    {
382 383
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
384
        return "Documentació de les Estructures de Dades";
385 386 387
      }
      else
      {
388
        return "Documentació de les Classes";
389 390 391 392 393 394 395
      }
    }

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all files.
     */
    virtual QCString trFileDocumentation()
396
    { return "Documentació dels Fitxers"; }
397 398 399 400 401

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all examples.
     */
    virtual QCString trExampleDocumentation()
402
    { return "Documentació dels Exemples"; }
403 404 405 406 407

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all related pages.
     */
    virtual QCString trPageDocumentation()
408
    { return "Documentació de les Pàgines"; }
409 410 411

    /*! This is used in LaTeX as the title of the document */
    virtual QCString trReferenceManual()
412
    { return "Manual de Referència"; }
413 414

    /*! This is used in the documentation of a file as a header before the
415 416 417 418 419
     *  list of defines
     */
    virtual QCString trDefines()
    { return "Definicions"; }

420
    /*! This is used in the documentation of a file as a header before the
421 422 423 424 425
     *  list of typedefs
     */
    virtual QCString trTypedefs()
    { return "Definicions de Tipus"; }

426
    /*! This is used in the documentation of a file as a header before the
427 428 429 430 431
     *  list of enumerations
     */
    virtual QCString trEnumerations()
    { return "Enumeracions"; }

432
    /*! This is used in the documentation of a file as a header before the
433 434 435 436 437
     *  list of (global) functions
     */
    virtual QCString trFunctions()
    { return "Funcions"; }

438
    /*! This is used in the documentation of a file as a header before the
439 440 441 442 443
     *  list of (global) variables
     */
    virtual QCString trVariables()
    { return "Variables"; }

444
    /*! This is used in the documentation of a file as a header before the
445 446 447 448
     *  list of (global) variables
     */
    virtual QCString trEnumerationValues()
    { return "Valors de les Enumeracions"; }
449

450 451 452 453
    /*! This is used in the documentation of a file before the list of
     *  documentation blocks for defines
     */
    virtual QCString trDefineDocumentation()
454
    { return "Documentació de les Definicions"; }
455

456
    /*! This is used in the documentation of a file/namespace before the list
457 458 459
     *  of documentation blocks for typedefs
     */
    virtual QCString trTypedefDocumentation()
460
    { return "Documentació de les Definicions de Tipus"; }
461

462
    /*! This is used in the documentation of a file/namespace before the list
463 464 465
     *  of documentation blocks for enumeration types
     */
    virtual QCString trEnumerationTypeDocumentation()
466
    { return "Documentació dels Tipus de les Enumeracions"; }
467

468
    /*! This is used in the documentation of a file/namespace before the list
469 470 471
     *  of documentation blocks for functions
     */
    virtual QCString trFunctionDocumentation()
472
    { return "Documentació de les Funcions"; }
473

474
    /*! This is used in the documentation of a file/namespace before the list
475 476 477
     *  of documentation blocks for variables
     */
    virtual QCString trVariableDocumentation()
478
    { return "Documentació de les Variables"; }
479

480
    /*! This is used in the documentation of a file/namespace/group before
481 482 483
     *  the list of links to documented compounds
     */
    virtual QCString trCompounds()
484
    {
485 486
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
487
        return "Estructures de Dades";
488 489 490
      }
      else
      {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
491
        return "Classes";
492 493 494
      }
    }

495 496
    /*! This is used in the standard footer of each page and indicates when
     *  the page was generated
497 498
     */
    virtual QCString trGeneratedAt(const char *date,const char *projName)
499
    {
500 501 502 503 504 505 506 507 508
      QCString result=(QCString)"Generat a "+date;
      if (projName) result+=(QCString)" per a "+projName;
      result+=(QCString)" per";
      return result;
    }

    /*! this text is put before a class diagram */
    virtual QCString trClassDiagram(const char *clName)
    {
509
      return (QCString)"Diagrama d'Herència per a "+clName+":";
510
    }
511

512 513
    /*! this text is generated when the \\internal command is used. */
    virtual QCString trForInternalUseOnly()
514
    { return "Tan sols per a ús intern."; }
515 516 517

    /*! this text is generated when the \\warning command is used. */
    virtual QCString trWarning()
518
    { return "Atenció"; }
519 520 521

    /*! this text is generated when the \\version command is used. */
    virtual QCString trVersion()
522
    { return "Versió"; }
523 524 525 526 527 528 529 530 531 532 533

    /*! this text is generated when the \\date command is used. */
    virtual QCString trDate()
    { return "Data"; }

    /*! this text is generated when the \\return command is used. */
    virtual QCString trReturns()
    { return "Retorna"; }

    /*! this text is generated when the \\sa command is used. */
    virtual QCString trSeeAlso()
534
    { return "Mireu també"; }
535 536 537

    /*! this text is generated when the \\param command is used. */
    virtual QCString trParameters()
538
    { return "Paràmetres"; }
539 540 541 542

    /*! this text is generated when the \\exception command is used. */
    virtual QCString trExceptions()
    { return "Excepcions"; }
543

544 545 546 547 548 549 550
    /*! this text is used in the title page of a LaTeX document. */
    virtual QCString trGeneratedBy()
    { return "Generat per"; }

//////////////////////////////////////////////////////////////////////////
// new since 0.49-990307
//////////////////////////////////////////////////////////////////////////
551

552 553 554 555 556 557 558
    /*! used as the title of page containing all the index of all namespaces. */
    virtual QCString trNamespaceList()
    { return "Llista dels Espais de Noms"; }

    /*! used as an introduction to the namespace list */
    virtual QCString trNamespaceListDescription(bool extractAll)
    {
559
      QCString result="Aquests són tots els espais de noms ";
560 561 562 563 564 565 566 567 568 569
      if (!extractAll) result+="documentats ";
      result+="amb breus descripcions:";
      return result;
    }

    /*! used in the class documentation as a header before the list of all
     *  friends of a class
     */
    virtual QCString trFriends()
    { return "Classes Amigues"; }
570

571 572 573
//////////////////////////////////////////////////////////////////////////
// new since 0.49-990405
//////////////////////////////////////////////////////////////////////////
574

575
    /*! used in the class documentation as a header before the list of all
576
     * related classes
577 578
     */
    virtual QCString trRelatedFunctionDocumentation()
579
    { return "Documentació de funcions amigues i relacionades"; }
580

581 582 583 584 585 586 587 588 589
//////////////////////////////////////////////////////////////////////////
// new since 0.49-990425
//////////////////////////////////////////////////////////////////////////

    /*! used as the title of the HTML page of a class/struct/union */
    virtual QCString trCompoundReference(const char *clName,
                                    ClassDef::CompoundType compType,
                                    bool isTemplate)
    {
590
      QCString result="Referència de";
591 592
      switch(compType)
      {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
593 594
        case ClassDef::Class:      result+=" la Classe "; break;
        case ClassDef::Struct:     result+=" l'Estructura "; break;
595 596
        case ClassDef::Union:      result+=" la Unió "; break;
        case ClassDef::Interface:  result+=" la Interfície "; break;
Dimitri van Heesch's avatar
Dimitri van Heesch committed
597 598
        case ClassDef::Protocol:   result+="l Protocol "; break;
        case ClassDef::Category:   result+=" la Categoria "; break;
599
        case ClassDef::Exception:  result+=" l'Excepció "; break;
600
        default: break;
601 602 603 604 605 606 607 608 609
      }
      if (isTemplate) result+="Template ";
      result+=(QCString)clName;
      return result;
    }

    /*! used as the title of the HTML page of a file */
    virtual QCString trFileReference(const char *fileName)
    {
610
      QCString result="Referència del Fitxer ";
611
      result+=fileName;
612 613 614 615 616 617
      return result;
    }

    /*! used as the title of the HTML page of a namespace */
    virtual QCString trNamespaceReference(const char *namespaceName)
    {
618
      QCString result="Referència de l'Espai de Noms ";
619 620 621
      result+=namespaceName;
      return result;
    }
622

623
    virtual QCString trPublicMembers()
624
    { return "Mètodes públics"; }
625
    virtual QCString trPublicSlots()
626
    { return "Slots públics"; }
627 628 629
    virtual QCString trSignals()
    { return "Senyals"; }
    virtual QCString trStaticPublicMembers()
630
    { return "Mètodes Públics Estàtics"; }
631
    virtual QCString trProtectedMembers()
632
    { return "Mètodes Protegits"; }
633 634 635
    virtual QCString trProtectedSlots()
    { return "Slots Protegits"; }
    virtual QCString trStaticProtectedMembers()
636
    { return "Mètodes Protegits Estàtics"; }
637
    virtual QCString trPrivateMembers()
638
    { return "Mètodes Privats"; }
639 640 641
    virtual QCString trPrivateSlots()
    { return "Slots Privats"; }
    virtual QCString trStaticPrivateMembers()
642
    { return "Mètodes Privats Estàtics"; }
643

644 645 646 647 648 649 650 651
    /*! this function is used to produce a comma-separated list of items.
     *  use generateMarker(i) to indicate where item i should be put.
     */
    virtual QCString trWriteList(int numEntries)
    {
      QCString result;
      int i;
      // the inherits list contain `numEntries' classes
652
      for (i=0;i<numEntries;i++)
653 654
      {
        // use generateMarker to generate placeholders for the class links!
655
        result+=generateMarker(i); // generate marker for entry i in the list
656
                                   // (order is left to right)
657

658 659
        if (i!=numEntries-1)  // not the last entry, so we need a separator
        {
660
          if (i<numEntries-2) // not the fore last entry
661 662 663 664 665
            result+=", ";
          else                // the fore last entry
            result+=" i ";
        }
      }
666
      return result;
667
    }
668

669 670 671 672 673
    /*! used in class documentation to produce a list of base classes,
     *  if class diagrams are disabled.
     */
    virtual QCString trInheritsList(int numEntries)
    {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
674
      return "Hereta de "+trWriteList(numEntries)+".";
675 676 677 678 679 680 681
    }

    /*! used in class documentation to produce a list of super classes,
     *  if class diagrams are disabled.
     */
    virtual QCString trInheritedByList(int numEntries)
    {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
682
      return "Heretat per "+trWriteList(numEntries)+".";
683 684
    }

685
    /*! used in member documentation blocks to produce a list of
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
     *  members that are hidden by this one.
     */
    virtual QCString trReimplementedFromList(int numEntries)
    {
      return "Reimplementat de "+trWriteList(numEntries)+".";
    }

    /*! used in member documentation blocks to produce a list of
     *  all member that overwrite the implementation of this member.
     */
    virtual QCString trReimplementedInList(int numEntries)
    {
      return "Reimplementat a "+trWriteList(numEntries)+".";
    }

    /*! This is put above each page as a link to all members of namespaces. */
    virtual QCString trNamespaceMembers()
    { return "Membres de l'Espai de Noms"; }

    /*! This is an introduction to the page with all namespace members */
    virtual QCString trNamespaceMemberDescription(bool extractAll)
707
    {
708
      QCString result="Aquesta és la llista de tots els membres de l'espai de noms ";
709
      if (!extractAll) result+="documentats ";
710
      result+="amb enllaços a ";
711
      if (extractAll)
712
        result+="la documentació de l'espai de noms de cada membre:";
713
      else
714 715 716
        result+="l'espai de noms al qual corresponen:";
      return result;
    }
717
    /*! This is used in LaTeX as the title of the chapter with the
718 719 720
     *  index of all namespaces.
     */
    virtual QCString trNamespaceIndex()
721
    { return "Índex d'Espais de Noms"; }
722 723 724 725 726

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all namespaces.
     */
    virtual QCString trNamespaceDocumentation()
727
    { return "Documentació de l'Espai de Noms"; }
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749

//////////////////////////////////////////////////////////////////////////
// new since 0.49-990522
//////////////////////////////////////////////////////////////////////////

    /*! This is used in the documentation before the list of all
     *  namespaces in a file.
     */
    virtual QCString trNamespaces()
    { return "Espais de Noms"; }

//////////////////////////////////////////////////////////////////////////
// new since 0.49-990728
//////////////////////////////////////////////////////////////////////////

    /*! This is put at the bottom of a class documentation page and is
     *  followed by a list of files that were used to generate the page.
     */
    virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType,
        bool single)
    { // here s is one of " Class", " Struct" or " Union"
      // single is true implies a single file
750
      QCString result=(QCString)"La documentació d'aquest";
751 752
      switch(compType)
      {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
753 754
        case ClassDef::Class:      result+="a classe"; break;
        case ClassDef::Struct:     result+="a estructura"; break;
755 756
        case ClassDef::Union:      result+="a unió"; break;
        case ClassDef::Interface:  result+="a interfície"; break;
Dimitri van Heesch's avatar
Dimitri van Heesch committed
757 758
        case ClassDef::Protocol:   result+=" protocol"; break;
        case ClassDef::Category:   result+="a categoria"; break;
759
        case ClassDef::Exception:  result+="a excepció"; break;
760
        default: break;
761 762 763
      }
      result+=" es va generar a partir del";
      if (!single) result+="s";
764
      result+=" següent";
765
      if (!single) result+="s";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
766
      result+=" fitxer";
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
      if (!single) result+="s:"; else result+=":";
      return result;
    }

//////////////////////////////////////////////////////////////////////////
// new since 0.49-990901
//////////////////////////////////////////////////////////////////////////

    /*! This is used as the heading text for the retval command. */
    virtual QCString trReturnValues()
    { return "Valors de retorn"; }

    /*! This is in the (quick) index as a link to the main page (index.html)
     */
    virtual QCString trMainPage()
782
    { return "Pàgina principal"; }
783

784
    /*! This is used in references to page that are put in the LaTeX
785 786 787 788 789 790 791 792 793 794 795
     *  documentation. It should be an abbreviation of the word page.
     */
    virtual QCString trPageAbbreviation()
    { return "p."; }

//////////////////////////////////////////////////////////////////////////
// new since 0.49-991003
//////////////////////////////////////////////////////////////////////////

    virtual QCString trDefinedAtLineInSourceFile()
    {
796
      return "Definició a la línia @0 del fitxer @1.";
797 798 799
    }
    virtual QCString trDefinedInSourceFile()
    {
800
      return "Definició al fitxer @0.";
801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
    }

//////////////////////////////////////////////////////////////////////////
// new since 0.49-991205
//////////////////////////////////////////////////////////////////////////

    virtual QCString trDeprecated()
    {
      return "Antiquat";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.0.0
//////////////////////////////////////////////////////////////////////////

    /*! this text is put before a collaboration diagram */
    virtual QCString trCollaborationDiagram(const char *clName)
    {
819
      return (QCString)"Diagrama de col·laboració per a "+clName+":";
820 821 822 823
    }
    /*! this text is put before an include dependency graph */
    virtual QCString trInclDepGraph(const char *fName)
    {
824
      return (QCString)"Inclou el graf de dependències per a "+fName+":";
825 826 827 828
    }
    /*! header that is put before the list of constructor/destructors. */
    virtual QCString trConstructorDocumentation()
    {
829
      return "Documentació del Constructor i el Destructor";
830 831 832 833
    }
    /*! Used in the file documentation to point to the corresponding sources. */
    virtual QCString trGotoSourceCode()
    {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
834
      return "Veure el codi d'aquest fitxer.";
835 836 837 838
    }
    /*! Used in the file sources to point to the corresponding documentation. */
    virtual QCString trGotoDocumentation()
    {
839
      return "Veure la documentació d'aquest fitxer.";
840 841 842 843
    }
    /*! Text for the \\pre command */
    virtual QCString trPrecondition()
    {
844
      return "Precondició";
845 846 847 848
    }
    /*! Text for the \\post command */
    virtual QCString trPostcondition()
    {
849
      return "Postcondició";
850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867
    }
    /*! Text for the \\invariant command */
    virtual QCString trInvariant()
    {
      return "Invariant";
    }
    /*! Text shown before a multi-line variable/enum initialization */
    virtual QCString trInitialValue()
    {
      return "Valor inicial:";
    }
    /*! Text used the source code in the file index */
    virtual QCString trCode()
    {
      return "codi";
    }
    virtual QCString trGraphicalHierarchy()
    {
868
      return "Jerarquia Gràfica de la Classe";
869 870 871
    }
    virtual QCString trGotoGraphicalHierarchy()
    {
872
      return "Veure la jerarquia gràfica de la classe";
873 874 875 876 877 878 879
    }
    virtual QCString trGotoTextualHierarchy()
    {
      return "Veure la jerarquia textual de la classe";
    }
    virtual QCString trPageIndex()
    {
880
      return "Índex de Pàgines";
881 882 883 884 885
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.1.0
//////////////////////////////////////////////////////////////////////////
886

887 888 889 890 891 892
    virtual QCString trNote()
    {
      return "Nota";
    }
    virtual QCString trPublicTypes()
    {
893
      return "Tipus Públics";
894 895 896 897 898 899 900 901 902
    }
    virtual QCString trPublicAttribs()
    {
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        return "Camps de Dades";
      }
      else
      {
903
        return "Atributs Públics";
904 905 906 907
      }
    }
    virtual QCString trStaticPublicAttribs()
    {
908
      return "Atributs Públics Estàtics";
909 910 911 912 913 914 915 916 917 918 919
    }
    virtual QCString trProtectedTypes()
    {
      return "Tipus Protegits";
    }
    virtual QCString trProtectedAttribs()
    {
      return "Atributs Protegits";
    }
    virtual QCString trStaticProtectedAttribs()
    {
920
      return "Atributs Protegits Estàtics";
921 922 923 924 925 926 927 928 929 930 931
    }
    virtual QCString trPrivateTypes()
    {
      return "Tipus Privats";
    }
    virtual QCString trPrivateAttribs()
    {
      return "Atributs Privats";
    }
    virtual QCString trStaticPrivateAttribs()
    {
932
      return "Atributs Privats Estàtics";
933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.1.3
//////////////////////////////////////////////////////////////////////////

    /*! Used as a marker that is put before a \\todo item */
    virtual QCString trTodo()
    {
      return "Per fer";
    }
    /*! Used as the header of the todo list */
    virtual QCString trTodoList()
    {
      return "Llista de coses per fer";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.1.4
//////////////////////////////////////////////////////////////////////////

    virtual QCString trReferencedBy()
    {
      return "Referenciat a";
    }
    virtual QCString trRemarks()
    {
      return "Remarca";
    }
    virtual QCString trAttention()
    {
964
      return "Atenció";
965 966 967
    }
    virtual QCString trInclByDepGraph()
    {
968
      return "Aquest gràfic mostra quins fitxers inclouen, "
Dimitri van Heesch's avatar
Dimitri van Heesch committed
969
             "de forma directa o indirecta, aquest fitxer:";
970 971 972 973 974
    }
    virtual QCString trSince()
    {
      return "Des de";
    }
975

976 977 978 979 980 981 982
//////////////////////////////////////////////////////////////////////////
// new since 1.1.5
//////////////////////////////////////////////////////////////////////////

    /*! title of the graph legend page */
    virtual QCString trLegendTitle()
    {
983
      return "Llegenda del Gràfic";
984
    }
985
    /*! page explaining how the dot graph's should be interpreted
986 987 988 989
     *  The %A in the text below are to prevent link to classes called "A".
     */
    virtual QCString trLegendDocs()
    {
990
      return
991
        "Aquesta pàgina explica com s'interpreten els gràfics generats per doxygen.<p>\n"
992 993 994 995
        "Considera aquest exemple:\n"
        "\\code\n"
        "/*! Classe invisible per culpa del retall */\n"
        "class Invisible { };\n\n"
996
        "/*! Classe truncada, l'herència està amagada */\n"
997 998 999
        "class Truncated : public Invisible { };\n\n"
        "/* Classe no documentada amb comentaris doxygen */\n"
        "class Undocumented { };\n\n"
1000
        "/*! Classe heredada amb herència pública */\n"
1001 1002 1003
        "class PublicBase : public Truncated { };\n\n"
        "/*! Una classe Template */\n"
        "template<class T> class Templ { };\n\n"
1004
        "/*! Classe heredada utilitzant herència protegida */\n"
1005
        "class ProtectedBase { };\n\n"
1006
        "/*! Classe heredada utiltzant herència privada */\n"
1007 1008 1009 1010 1011 1012 1013
        "class PrivateBase { };\n\n"
        "/*! Classe usada per la classe heretada */\n"
        "class Used { };\n\n"
        "/*! Super classe que hereda una quantitat de classes */\n"
        "class Inherited : public PublicBase,\n"
        "                  protected ProtectedBase,\n"
        "                  private PrivateBase,\n"
1014
        "                  public Undocumented,\n"
1015 1016 1017 1018 1019 1020
        "                  public Templ<int>\n"
        "{\n"
        "  private:\n"
        "    Used *m_usedClass;\n"
        "};\n"
        "\\endcode\n"
1021
        "Resultarà el gràfic següent:"
1022 1023
        "<p><center><img alt=\"\" src=\"graph_legend."+Config_getEnum("DOT_IMAGE_FORMAT")+"\"></center>\n"
        "<p>\n"
1024
        "Les caixes del gràfic superior tenen aquesta interpretació:\n"
1025
        "<ul>\n"
1026
        "<li>Una caixa negra plena represent l'estructura o classe per la qual el gràfic s'ha generat.\n"
1027 1028 1029
        "<li>Una caixa de vora negra representa una estructura o classe documentada.\n"
        "<li>Una caixa de vora verda representa una estructura o classe indocumentada.\n"
        "<li>Una caixa de vora vermalla representa una estructura o classe documentada de la qual "
1030
        "no es mostren totes les relacions d'herència/inclusió. Un gràfic és truncat si no s'ajusta als límits.\n"
1031 1032 1033
        "</ul>\n"
        "Les sagetes tenen aquest significat:\n"
        "<ul>\n"
1034 1035 1036 1037 1038 1039 1040
        "<li>Una sageta blau fosc remarca una relació d'herència de tipus pública entre dues classes.\n"
        "<li>Una sageta verd fosc remarca una relació d'herència de tipus protegida entre dues classes.\n"
        "<li>Una sageta roig fosc remarca una relació d'herència de tipus privada entre dues classes.\n"
        "<li>Una sageta puntejada de color porpra indica que una classe és continguda o usada per una altra classe."
        " La sageta s'etiqueta amb la variable o variables a través de les quals la classe o estructura apuntada és accessible.\n"
        "<li>Una sageta puntejada de color groc indica la relació entre una instància template i la classe template de què ha set instanciada."
        " La sageta s'etiqueta amb els paràmetres template de la instància.\n"
1041 1042 1043 1044 1045 1046 1047
        "</ul>\n";
    }
    /*! text for the link to the legend page */
    virtual QCString trLegend()
    {
      return "llegenda";
    }
1048

1049 1050 1051
//////////////////////////////////////////////////////////////////////////
// new since 1.2.0
//////////////////////////////////////////////////////////////////////////
1052

1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
    /*! Used as a marker that is put before a test item */
    virtual QCString trTest()
    {
      return "Prova";
    }
    /*! Used as the header of the test list */
    virtual QCString trTestList()
    {
      return "Llista de proves";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.2
//////////////////////////////////////////////////////////////////////////

    /*! Used as a section header for IDL properties */
    virtual QCString trProperties()
    {
      return "Propietats";
    }
    /*! Used as a section header for IDL property documentation */
    virtual QCString trPropertyDocumentation()
    {
1076
      return "Documentació de les Propietats";
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.4
//////////////////////////////////////////////////////////////////////////

    /*! Used for Java classes in the summary section of Java packages */
    virtual QCString trClasses()
    {
      if (Config_getBool("OPTIMIZE_OUTPUT_FOR_C"))
      {
        return "Estructures de Dades";
      }
      else
      {
        return "Classes";
      }
    }
    /*! Used as the title of a Java package */
    virtual QCString trPackage(const char *name)
    {
      return (QCString)"Paquet "+name;
    }
    /*! Title of the package index page */
    virtual QCString trPackageList()
    {
      return "Llista de Paquets";
    }
    /*! The description of the package index page */
    virtual QCString trPackageListDescription()
    {
1108
      return "Aquesta és la llista de paquets, amb una breu descripció (si se'n disposa):";
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
    }
    /*! The link name in the Quick links header for each page */
    virtual QCString trPackages()
    {
      return "Paquets";
    }
    /*! Text shown before a multi-line define */
    virtual QCString trDefineValue()
    {
      return "Valor:";
    }
1120

1121 1122 1123
//////////////////////////////////////////////////////////////////////////
// new since 1.2.5
//////////////////////////////////////////////////////////////////////////
1124

1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
    /*! Used as a marker that is put before a \\bug item */
    virtual QCString trBug()
    {
      return "Error";
    }
    /*! Used as the header of the bug list */
    virtual QCString trBugList()
    {
      return "Llista d'Errors";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.6
//////////////////////////////////////////////////////////////////////////

1140 1141 1142
    /*! Used as ansicpg for RTF file
     *
     * The following table shows the correlation of Charset name, Charset Value and
1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
     * <pre>
     * Codepage number:
     * Charset Name       Charset Value(hex)  Codepage number
     * ------------------------------------------------------
     * DEFAULT_CHARSET           1 (x01)
     * SYMBOL_CHARSET            2 (x02)
     * OEM_CHARSET             255 (xFF)
     * ANSI_CHARSET              0 (x00)            1252
     * RUSSIAN_CHARSET         204 (xCC)            1251
     * EE_CHARSET              238 (xEE)            1250
     * GREEK_CHARSET           161 (xA1)            1253
     * TURKISH_CHARSET         162 (xA2)            1254
     * BALTIC_CHARSET          186 (xBA)            1257
     * HEBREW_CHARSET          177 (xB1)            1255
     * ARABIC _CHARSET         178 (xB2)            1256
     * SHIFTJIS_CHARSET        128 (x80)             932
     * HANGEUL_CHARSET         129 (x81)             949
     * GB2313_CHARSET          134 (x86)             936
     * CHINESEBIG5_CHARSET     136 (x88)             950
     * </pre>
1163
     *
1164 1165 1166 1167 1168 1169
     */
    virtual QCString trRTFansicp()
    {
      return "1252";
    }

1170 1171

    /*! Used as ansicpg for RTF fcharset
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
     *  \see trRTFansicp() for a table of possible values.
     */
    virtual QCString trRTFCharSet()
    {
      return "0";
    }

    /*! Used as header RTF general index */
    virtual QCString trRTFGeneralIndex()
    {
1182
      return "Índex";
1183
    }
1184

1185
    /*! This is used for translation of the word that will possibly
1186
     *  be followed by a single name or by a list of names
1187 1188 1189
     *  of the category.
     */
    virtual QCString trClass(bool first_capital, bool singular)
1190
    {
1191 1192
      QCString result((first_capital ? "Classe" : "classe"));
      if (!singular)  result+="s";
1193
      return result;
1194 1195 1196
    }

    /*! This is used for translation of the word that will possibly
1197
     *  be followed by a single name or by a list of names
1198 1199 1200
     *  of the category.
     */
    virtual QCString trFile(bool first_capital, bool singular)
1201
    {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1202
      QCString result((first_capital ? "Fitxer" : "fitxer"));
1203
      if (!singular)  result+="s";
1204
      return result;
1205 1206 1207
    }

    /*! This is used for translation of the word that will possibly
1208
     *  be followed by a single name or by a list of names
1209 1210 1211
     *  of the category.
     */
    virtual QCString trNamespace(bool first_capital, bool singular)
1212
    {
1213 1214
      QCString result((first_capital ? "Namespace" : "namespace"));
      if (!singular)  result+="s";
1215
      return result;
1216 1217 1218
    }

    /*! This is used for translation of the word that will possibly
1219
     *  be followed by a single name or by a list of names
1220 1221 1222
     *  of the category.
     */
    virtual QCString trGroup(bool first_capital, bool singular)
1223
    {
1224 1225
      QCString result((first_capital ? "Grup" : "grup"));
      if (!singular)  result+="s";
1226
      return result;
1227 1228 1229
    }

    /*! This is used for translation of the word that will possibly
1230
     *  be followed by a single name or by a list of names
1231 1232 1233
     *  of the category.
     */
    virtual QCString trPage(bool first_capital, bool singular)
1234
    {
1235
      QCString result((first_capital ? "Pàgin" : "pàgin"));
1236
      if (!singular)  result+="es"; else result+="a";
1237
      return result;
1238 1239 1240
    }

    /*! This is used for translation of the word that will possibly
1241
     *  be followed by a single name or by a list of names
1242 1243 1244
     *  of the category.
     */
    virtual QCString trMember(bool first_capital, bool singular)
1245
    {
1246 1247
      QCString result((first_capital ? "Membre" : "membre"));
      if (!singular)  result+="s";
1248
      return result;
1249
    }
1250

1251
    /*! This is used for translation of the word that will possibly
1252
     *  be followed by a single name or by a list of names
1253 1254 1255
     *  of the category.
     */
    virtual QCString trGlobal(bool first_capital, bool singular)
1256
    {
1257 1258
      QCString result((first_capital ? "Global" : "global"));
      if (!singular)  result+="s";
1259
      return result;
1260 1261 1262 1263 1264 1265 1266 1267 1268
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.7
//////////////////////////////////////////////////////////////////////////

    /*! This text is generated when the \\author command is used and
     *  for the author section in man pages. */
    virtual QCString trAuthor(bool first_capital, bool singular)
1269
    {
1270 1271
      QCString result((first_capital ? "Autor" : "autor"));
      if (!singular)  result+="s";
1272
      return result;
1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.11
//////////////////////////////////////////////////////////////////////////

    /*! This text is put before the list of members referenced by a member
     */
    virtual QCString trReferences()
    {
1283
      return "Referències";
1284 1285 1286 1287 1288 1289
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.13
//////////////////////////////////////////////////////////////////////////

1290
    /*! used in member documentation blocks to produce a list of
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316
     *  members that are implemented by this one.
     */
    virtual QCString trImplementedFromList(int numEntries)
    {
      return "Implementa "+trWriteList(numEntries)+".";
    }

    /*! used in member documentation blocks to produce a list of
     *  all members that implement this abstract member.
     */
    virtual QCString trImplementedInList(int numEntries)
    {
      return "Implementat a "+trWriteList(numEntries)+".";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.16
//////////////////////////////////////////////////////////////////////////

    /*! used in RTF documentation as a heading for the Table
     *  of Contents.
     */
    virtual QCString trRTFTableOfContents()
    {
      return "Taula de Continguts";
    }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1317 1318 1319 1320 1321

//////////////////////////////////////////////////////////////////////////
// new since 1.2.17
//////////////////////////////////////////////////////////////////////////

1322 1323
    /*! Used as the header of the list of item that have been
     *  flagged deprecated
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333
     */
    virtual QCString trDeprecatedList()
    {
      return "Llista d'Antiquats";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.2.18
//////////////////////////////////////////////////////////////////////////

1334
    /*! Used as a header for declaration section of the events found in
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1335 1336 1337 1338 1339 1340 1341 1342 1343
     * a C# program
     */
    virtual QCString trEvents()
    {
      return "Esdeveniments";
    }
    /*! Header used for the documentation section of a class' events. */
    virtual QCString trEventDocumentation()
    {
1344
      return "Documentació dels Esdeveniments";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1345 1346 1347 1348 1349 1350 1351 1352 1353
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.3
//////////////////////////////////////////////////////////////////////////

    /*! Used as a heading for a list of Java class types with package scope.
     */
    virtual QCString trPackageTypes()
1354
    {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1355 1356
      return "Tipus de paquets";
    }
1357 1358
    /*! Used as a heading for a list of Java class functions with package
     * scope.
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1359 1360
     */
    virtual QCString trPackageMembers()
1361
    {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1362 1363
      return "Funcions de Paquet";
    }
1364
    /*! Used as a heading for a list of static Java class functions with
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1365 1366 1367
     *  package scope.
     */
    virtual QCString trStaticPackageMembers()
1368
    {
1369
      return "Funcions Estàtiques de Paquet";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1370
    }
1371
    /*! Used as a heading for a list of Java class variables with package
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1372 1373 1374
     * scope.
     */
    virtual QCString trPackageAttribs()
1375
    {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1376 1377
      return "Atributs de Paquet";
    }
1378
    /*! Used as a heading for a list of static Java class variables with
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1379 1380 1381
     * package scope.
     */
    virtual QCString trStaticPackageAttribs()
1382
    {
1383
      return "Atributs Estàtics de Paquet";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1384
    }
1385

Dimitri van Heesch's avatar
Dimitri van Heesch committed
1386 1387 1388 1389
//////////////////////////////////////////////////////////////////////////
// new since 1.3.1
//////////////////////////////////////////////////////////////////////////

1390
    /*! Used in the quick index of a class/file/namespace member list page
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1391 1392 1393 1394 1395 1396 1397 1398 1399
     *  to link to the unfiltered list of all members.
     */
    virtual QCString trAll()
    {
      return "Tot";
    }
    /*! Put in front of the call graph for a function. */
    virtual QCString trCallGraph()
    {
1400
      return "Gràfic de crides d'aquesta funció:";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.3.3
//////////////////////////////////////////////////////////////////////////

    /*! This string is used as the title for the page listing the search
     *  results.
     */
    virtual QCString trSearchResultsTitle()
    {
1412
      return "Resultats de la Búsqueda";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1413 1414 1415 1416 1417
    }
    /*! This string is put just before listing the search results. The
     *  text can be different depending on the number of documents found.
     *  Inside the text you can put the special marker $num to insert
     *  the number representing the actual number of search results.
1418
     *  The @a numDocuments parameter can be either 0, 1 or 2, where the
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
     *  value 2 represents 2 or more matches. HTML markup is allowed inside
     *  the returned string.
     */
    virtual QCString trSearchResults(int numDocuments)
    {
      if (numDocuments==0)
      {
        return "No s'ha trobat cap document.";
      }
      else if (numDocuments==1)
      {
        return "Trobat <b>1</b> document.";
      }
1432
      else
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1433 1434 1435 1436 1437
      {
        return "Trobats <b>$num</b> documents. "
               "Mostrant els millors resultats primer.";
      }
    }
1438
    /*! This string is put before the list of matched words, for each search
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
     *  result. What follows is the list of words that matched the query.
     */
    virtual QCString trSearchMatches()
    {
      return "Resultats:";
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.3.8
//////////////////////////////////////////////////////////////////////////

    /*! This is used in HTML as the title of page with source code for file filename
     */
    virtual QCString trSourceFile(QCString& filename)
    {
      return "Fitxer de Codi " + filename;
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.3.9
//////////////////////////////////////////////////////////////////////////

    /*! This is used as the name of the chapter containing the directory
     *  hierarchy.
     */
    virtual QCString trDirIndex()
    { return "Jerarquia de Directoris"; }

    /*! This is used as the name of the chapter containing the documentation
     *  of the directories.
     */
    virtual QCString trDirDocumentation()
1471
    { return "Documentació dels Directoris"; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1472 1473 1474 1475 1476 1477 1478

    /*! This is used as the title of the directory index and also in the
     *  Quick links of a HTML page, to link to the directory hierarchy.
     */
    virtual QCString trDirectories()
    { return "Directoris"; }

1479
    /*! This returns a sentences that introduces the directory hierarchy.
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1480 1481 1482
     *  and the fact that it is sorted alphabetically per level
     */
    virtual QCString trDirDescription()
1483 1484
    { return "Aquesta jerarquia de directoris està ordenada toscament, "
             "però no completa, de forma alfabètica:";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1485 1486 1487 1488 1489 1490
    }

    /*! This returns the title of a directory page. The name of the
     *  directory is passed via \a dirName.
     */
    virtual QCString trDirReference(const char *dirName)
1491
    { QCString result="Referència del Directori "; result+=dirName; return result; }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1492 1493 1494 1495 1496

    /*! This returns the word directory with or without starting capital
     *  (\a first_capital) and in sigular or plural form (\a singular).
     */
    virtual QCString trDir(bool first_capital, bool singular)
1497
    {
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1498 1499
      QCString result((first_capital ? "Directori" : "directori"));
      if (!singular) result+="s";
1500
      return result;
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1501
    }
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1502 1503 1504 1505 1506 1507 1508 1509 1510 1511

//////////////////////////////////////////////////////////////////////////
// new since 1.4.1
//////////////////////////////////////////////////////////////////////////

    /*! This text is added to the documentation when the \\overload command
     *  is used for a overloaded function.
     */
    virtual QCString trOverloadText()
    {
1512 1513 1514
       return "Aquesta és una funció membre sobrecarregada, "
              "proveïda per conveniència. Es diferencia de la funció "
              "anterior només en els arguments que accepta.";
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1515
    }
1516 1517 1518 1519 1520 1521 1522 1523

//////////////////////////////////////////////////////////////////////////
// new since 1.4.6
//////////////////////////////////////////////////////////////////////////

    /*! This is used to introduce a caller (or called-by) graph */
    virtual QCString trCallerGraph()
    {
1524
      return "Gràfic de crides a aquesta funció:";
1525 1526
    }

1527
    /*! This is used in the documentation of a file/namespace before the list
1528 1529 1530
     *  of documentation blocks for enumeration values
     */
    virtual QCString trEnumerationValueDocumentation()
1531
    { return "Documentació de les Enumeracions"; }
1532

1533 1534 1535
//////////////////////////////////////////////////////////////////////////
// new since 1.5.4 (mainly for Fortran)
//////////////////////////////////////////////////////////////////////////
1536

1537 1538 1539 1540
    /*! header that is put before the list of member subprograms (Fortran). */
    virtual QCString trMemberFunctionDocumentationFortran()
    { return "Documentació de les Funcions/Subrutines Membre"; }

1541
    /*! This is put above each page as a link to the list of annotated data types (Fortran). */
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
    virtual QCString trCompoundListFortran()
    { return "Llista de Tipus de Dades"; }

    /*! This is put above each page as a link to all members of compounds (Fortran). */
    virtual QCString trCompoundMembersFortran()
    { return "Camps de Dades"; }

    /*! This is an introduction to the annotated compound list (Fortran). */
    virtual QCString trCompoundListDescriptionFortran()
    { return "Aquests són els tipus de dades acompanyats amb breus descripcions:"; }

    /*! This is an introduction to the page with all data types (Fortran). */
    virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
    {
      QCString result="Aquesta és la llista de tots els membres de tipus de dades";
      if (!extractAll)
      {
        result+=" documentats";
      }
      result+=" amb enllaços a ";
1562
      if (!extractAll)
1563 1564 1565
      {
        result+="la documentació del tipus de dades per a cada membre:";
      }
1566
      else
1567 1568 1569 1570 1571 1572
      {
        result+="els tipus de dades a que pertanyen:";
      }
      return result;
    }

1573
    /*! This is used in LaTeX as the title of the chapter with the
1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584
     * annotated compound index (Fortran).
     */
    virtual QCString trCompoundIndexFortran()
    { return "Índex de Tipus de Dades"; }

    /*! This is used in LaTeX as the title of the chapter containing
     *  the documentation of all data types (Fortran).
     */
    virtual QCString trTypeDocumentation()
    { return "Documentació dels Tipus de Dades"; }

1585
    /*! This is used in the documentation of a file as a header before the
1586 1587 1588 1589 1590
     *  list of (global) subprograms (Fortran).
     */
    virtual QCString trSubprograms()
    { return "Funcions/Subrutines"; }

1591
    /*! This is used in the documentation of a file/namespace before the list
1592 1593 1594 1595 1596
     *  of documentation blocks for subprograms (Fortran)
     */
    virtual QCString trSubprogramDocumentation()
    { return "Documentació de les Funcions/Subrutines"; }

1597
    /*! This is used in the documentation of a file/namespace/group before
1598 1599 1600 1601
     *  the list of links to documented compounds (Fortran)
     */
     virtual QCString trDataTypes()
    { return "Tipus de Dades"; }
1602

1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630
    /*! used as the title of page containing all the index of all modules (Fortran). */
    virtual QCString trModulesList()
    { return "Llista de Mòduls"; }

    /*! used as an introduction to the modules list (Fortran) */
    virtual QCString trModulesListDescription(bool extractAll)
    {
      QCString result="Aquesta és la llista de tots els mòduls ";
      if (!extractAll) result+="documentats ";
      result+="amb breus descripcions:";
      return result;
    }

    /*! used as the title of the HTML page of a module/type (Fortran) */
    virtual QCString trCompoundReferenceFortran(const char *clName,
                                    ClassDef::CompoundType compType,
                                    bool isTemplate)
    {
      QCString result="Referència de";
      switch(compType)
      {
        case ClassDef::Class:      result+=" el Mòdul "; break;
        case ClassDef::Struct:     result+=" el Tipus "; break;
        case ClassDef::Union:      result+=" la Unió "; break;
        case ClassDef::Interface:  result+=" la Interfície "; break;
        case ClassDef::Protocol:   result+="l Protocol "; break;
        case ClassDef::Category:   result+=" la Categoria "; break;
        case ClassDef::Exception:  result+=" l'Excepció "; break;
1631
        default: break;
1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644
      }
      if (isTemplate) result+="Template ";
      result+=(QCString)clName;
      return result;
    }

    /*! used as the title of the HTML page of a module (Fortran) */
    virtual QCString trModuleReference(const char *namespaceName)
    {
      QCString result="Referència del Mòdul ";
      result+=namespaceName;
      return result;
    }
1645

1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658
    /*! This is put above each page as a link to all members of modules. (Fortran) */
    virtual QCString trModulesMembers()
    { return "Membres del Mòdul"; }

    /*! This is an introduction to the page with all modules members (Fortran) */
    virtual QCString trModulesMemberDescription(bool extractAll)
    {
      QCString result="Aquesta és la llista de tots els membres del mòdul";
      if (!extractAll)
      {
        result+=" documentats";
      }
      result+=" amb enllaços a ";
1659
      if (!extractAll)
1660 1661 1662
      {
        result+="la documentació del mòdul per a cada membre:";
      }
1663
      else
1664 1665 1666 1667 1668 1669
      {
        result+="els mòduls a que pertanyen:";
      }
      return result;
    }

1670
    /*! This is used in LaTeX as the title of the chapter with the
1671 1672 1673 1674
     *  index of all modules (Fortran).
     */
    virtual QCString trModulesIndex()
    { return "Índex de Mòduls"; }
1675

1676
    /*! This is used for translation of the word that will possibly
1677
     *  be followed by a single name or by a list of names
1678 1679 1680
     *  of the category.
     */
    virtual QCString trModule(bool first_capital, bool singular)
1681
    {
1682 1683
      QCString result((first_capital ? "Mòdul" : "mòdul"));
      if (!singular)  result+="s";
1684
      return result;
1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
    }
    /*! This is put at the bottom of a module documentation page and is
     *  followed by a list of files that were used to generate the page.
     */
    virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType,
        bool single)
    { // here s is one of " Module", " Struct" or " Union"
      // single is true implies a single file
      QCString result=(QCString)"La documentació d'aquest";
      switch(compType)
      {
        case ClassDef::Class:      result+=" mòdul"; break;
        case ClassDef::Struct:     result+=" tipus"; break;
        case ClassDef::Union:      result+="a unió"; break;
        case ClassDef::Interface:  result+="a interfície"; break;
        case ClassDef::Protocol:   result+=" protocol"; break;
        case ClassDef::Category:   result+="a categoria"; break;
        case ClassDef::Exception:  result+="a excepció"; break;
1703
        default: break;
1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714
      }
      result+=" es va generar a partir del";
      if (!single) result+="s";
      result+=" següent";
      if (!single) result+="s";
      result+=" fitxer";
      if (!single) result+="s:"; else result+=":";
      return result;
    }

    /*! This is used for translation of the word that will possibly
1715
     *  be followed by a single name or by a list of names
1716 1717 1718
     *  of the category.
     */
    virtual QCString trType(bool first_capital, bool)
1719
    {
1720 1721
      QCString result((first_capital ? "Tipus" : "tipus"));
      //if (!singular)  result+="s";
1722
      return result;
1723 1724
    }
    /*! This is used for translation of the word that will possibly
1725
     *  be followed by a single name or by a list of names
1726 1727 1728
     *  of the category.
     */
    virtual QCString trSubprogram(bool first_capital, bool singular)
1729
    {
1730 1731 1732
      QCString result((first_capital ? "Subprogram" : "subprogram"));
      if (!singular)  result+="es";
      else            result+="a";
1733
      return result;
1734 1735 1736 1737 1738 1739 1740
    }

    /*! C# Type Constraint list */
    virtual QCString trTypeConstraints()
    {
      return "Restriccions de Tipus";
    }
1741

1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775
//////////////////////////////////////////////////////////////////////////
// new since 1.6.0 (mainly for the new search engine)
//////////////////////////////////////////////////////////////////////////

    /*! directory relation for \a name */
    virtual QCString trDirRelation(const char *name)
    {
      return QCString(name)+" Relació";
    }

    /*! Loading message shown when loading search results */
    virtual QCString trLoading()
    {
      return "Carregant...";
    }

    /*! Label used for search results in the global namespace */
    virtual QCString trGlobalNamespace()
    {
      return "Espai de Noms Global";
    }

    /*! Message shown while searching */
    virtual QCString trSearching()
    {
      return "Cercant...";
    }

    /*! Text shown when no search results are found */
    virtual QCString trNoMatches()
    {
      return "Cap coincidència";
    }

Dimitri van Heesch's avatar
Dimitri van Heesch committed
1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797
//////////////////////////////////////////////////////////////////////////
// new since 1.6.3 (missing items for the directory pages)
//////////////////////////////////////////////////////////////////////////

    /*! when clicking a directory dependency label, a page with a
     *  table is shown. The heading for the first column mentions the
     *  source file that has a relation to another file.
     */
    virtual QCString trFileIn(const char *name)
    {
      return (QCString)"Fitxer a "+name;
    }

    /*! when clicking a directory dependency label, a page with a
     *  table is shown. The heading for the second column mentions the
     *  destination file that is included.
     */
    virtual QCString trIncludesFileIn(const char *name)
    {
      return (QCString)"Inclou fitxer a "+name;
    }

1798
    /** Compiles a date string.
Dimitri van Heesch's avatar
Dimitri van Heesch committed
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840
     *  @param year Year in 4 digits
     *  @param month Month of the year: 1=January
     *  @param day Day of the Month: 1..31
     *  @param dayOfWeek Day of the week: 1=Monday..7=Sunday
     *  @param hour Hour of the day: 0..23
     *  @param minutes Minutes in the hour: 0..59
     *  @param seconds Seconds within the minute: 0..59
     *  @param includeTime Include time in the result string?
     */
    virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
                                int hour,int minutes,int seconds,
                                bool includeTime)
    {
      static const char *days[]   = { "Dl","Dt","Dc","Dj","Dv","Ds","Dg" };
      static const char *months[] = { "Gen","Feb","Mar","Abr","Mai","Jun","Jul","Ago","Sep","Oct","Nov","Dec" };
      QCString sdate;
      sdate.sprintf("%s %s %d %d",days[dayOfWeek-1],months[month-1],day,year);
      if (includeTime)
      {
        QCString stime;
        stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
        sdate+=stime;
      }
      return sdate;
    }

//////////////////////////////////////////////////////////////////////////
// new since 1.7.5
//////////////////////////////////////////////////////////////////////////

    /*! Header for the page with bibliographic citations */
    virtual QCString trCiteReferences()
    { return "Referències Bibliogràfiques"; }

    /*! Text for copyright paragraph */
    virtual QCString trCopyright()
    { return "Copyright"; }

    /*! Header for the graph showing the directory dependencies */
    virtual QCString trDirDepGraph(const char *name)
    { return QCString("Graf de dependència de directoris per a ")+name+":"; }

1841 1842 1843
};

#endif