Doxygen
translator_no.h
浏览该文件的文档.
1 /******************************************************************************
2  *
3  * Copyright (C) 1997-2015 by Dimitri van Heesch.
4  *
5  * Permission to use, copy, modify, and distribute this software and its
6  * documentation under the terms of the GNU General Public License is hereby
7  * granted. No representations are made about the suitability of this software
8  * for any purpose. It is provided "as is" without express or implied warranty.
9  * See the GNU General Public License for more details.
10  *
11  * Documents produced by Doxygen are derivative works derived from the
12  * input used in their production; they are not affected by this license.
13  *
14  */
15 
16 /******************************************************************************
17  * Norwegian translation by Lars Erik Jordet <lejordet@gmail.com>, parts by Frode Nilsen
18  *
19  * This is a new translation made from scratch, not based on my older Norwegian translation (for 1.2.2)
20  *
21  * Translation notes (in Norwegian)
22  *
23  * Jeg har stort sett brukt ord som ligger ganske nær de engelske ekvivalentene,
24  * for eksempel "enumeration" -> "enumerasjon", og i enkelte tilfeller det engelske
25  * ordet direkte, der jeg finner det mer naturlig enn å prøve å stable en setning
26  * på beina på norsk, eller jeg selv foretrekker det engelske ordet (eks: "Header-fil").
27  * Om noen ikke skulle like disse valgene, kontakt meg på mailadressen over.
28  *
29  * Doxygen har mange strings som består av sammensatte ord ("Member function description", for eksempel),
30  * som ikke alltid ser like ryddig ut på norsk. Jeg har brukt bindestrek for å få
31  * det til å se presentabelt ut, men om noen har en bedre idé, send til mailadressen over.
32  *
33  * 2006-03-06:
34  * Jeg bruker ikke doxygen selv lenger, så det går nok litt i lengste laget mellom oppdateringer...
35  *
36  * Changelog
37  *
38  * 2003-12-18: Initial translation
39  * 2004-07-19: Fixup to prepare for 1.3.8 (I had forgotten some functions)
40  * 2006-03-06: Added a .diff from Frode Nilsen, now compatible with 1.4.6.
41  */
42 
43 #ifndef TRANSLATOR_NO_H
44 #define TRANSLATOR_NO_H
45 
47 {
48  public:
49 
50  // --- Language control methods -------------------
51 
52  /*! Used for identification of the language. The identification
53  * should not be translated. It should be replaced by the name
54  * of the language in English using lower-case characters only
55  * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
56  * the identification used in language.cpp.
57  */
58  virtual QCString idLanguage()
59  { return "norwegian"; }
60 
61  /*! Used to get the LaTeX command(s) for the language support.
62  * This method should return string with commands that switch
63  * LaTeX to the desired language. For example
64  * <pre>"\\usepackage[german]{babel}\n"
65  * </pre>
66  * or
67  * <pre>"\\usepackage{polski}\n"
68  * "\\usepackage[latin2]{inputenc}\n"
69  * "\\usepackage[T1]{fontenc}\n"
70  * </pre>
71  */
73  {
74  return
75  "\\usepackage[norsk]{babel}\n";
76  }
77 
78  virtual QCString trISOLang()
79  {
80  return "nn";
81  }
82 
83  // --- Language translation methods -------------------
84 
85  /*! used in the compound documentation before a list of related functions. */
87  { return "Relaterte funksjoner"; }
88 
89  /*! subscript for the related functions. */
91  { return "(Merk at disse ikke er medlemsfunksjoner.)"; }
92 
93  /*! header that is put before the detailed description of files, classes and namespaces. */
95  { return "Detaljert beskrivelse"; }
96 
97  /*! header that is put before the list of typedefs. */
99  { return "Medlemstypedef-dokumentasjon"; }
100 
101  /*! header that is put before the list of enumerations. */
103  { return "Medlemsenumerasjon-dokumentasjon"; }
104 
105  /*! header that is put before the list of member functions. */
107  { return "Medlemsfunksjon-dokumentasjon"; }
108 
109  /*! header that is put before the list of member attributes. */
111  {
112  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
113  {
114  return "Feltdokumentasjon";
115  }
116  else
117  {
118  return "Medlemsdata-dokumentasjon";
119  }
120  }
121 
122  /*! this is the text of a link put after brief descriptions. */
123  virtual QCString trMore()
124  { return "Mer..."; }
125 
126  /*! put in the class documentation */
127  virtual QCString trListOfAllMembers()
128  { return "Liste over alle medlemmer"; }
129 
130  /*! used as the title of the "list of all members" page of a class */
131  virtual QCString trMemberList()
132  { return "Medlemsliste"; }
133 
134  /*! this is the first part of a sentence that is followed by a class name */
136  { return "Dette er den fullstendige listen over medlemmer for "; }
137 
138  /*! this is the remainder of the sentence after the class name */
140  { return ", alle arvede medlemmer inkludert."; }
141 
142  /*! this is put at the author sections at the bottom of man pages.
143  * parameter s is name of the project name.
144  */
145  virtual QCString trGeneratedAutomatically(const QCString &s)
146  { QCString result="Generert automatisk av Doxygen";
147  if (!s.isEmpty()) result+=(QCString)" for "+s;
148  result+=" fra kildekoden.";
149  return result;
150  }
151 
152  /*! put after an enum name in the list of all members */
153  virtual QCString trEnumName()
154  { return "enum-navn"; }
155 
156  /*! put after an enum value in the list of all members */
157  virtual QCString trEnumValue()
158  { return "enum-verdi"; }
159 
160  /*! put after an undocumented member in the list of all members */
162  { return "definert i"; }
163 
164  // quick reference sections
165 
166  /*! This is put above each page as a link to the list of all groups of
167  * compounds or files (see the \\group command).
168  */
169  virtual QCString trModules()
170  { return "Moduler"; }
171 
172  /*! This is put above each page as a link to the class hierarchy */
174  { return "Klassehierarki"; }
175 
176  /*! This is put above each page as a link to the list of annotated classes */
178  {
179  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
180  {
181  return "Datastrukturer";
182  }
183  else
184  {
185  return "Klasseliste";
186  }
187  }
188 
189  /*! This is put above each page as a link to the list of documented files */
190  virtual QCString trFileList()
191  { return "Fil-liste"; }
192 
193  /*! This is put above each page as a link to the list of all verbatim headers */
194  virtual QCString trHeaderFiles()
195  { return "Header-filer"; }
196 
197  /*! This is put above each page as a link to all members of compounds. */
198  virtual QCString trCompoundMembers()
199  {
200  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
201  {
202  return "Datafelt";
203  }
204  else
205  {
206  return "Klassemedlemmer";
207  }
208  }
209 
210  /*! This is put above each page as a link to all members of files. */
212  {
213  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
214  {
215  return "Globale";
216  }
217  else
218  {
219  return "Filmedlemmer";
220  }
221  }
222 
223  /*! This is put above each page as a link to all related pages. */
224  virtual QCString trRelatedPages()
225  { return "Relaterte sider"; }
226 
227  /*! This is put above each page as a link to all examples. */
229  { return "Eksempler"; }
230 
231  /*! This is put above each page as a link to the search engine. */
232  virtual QCString trSearch()
233  { return "Søk"; }
234 
235  /*! This is an introduction to the class hierarchy. */
237  { return "Denne arvelisten er grovsortert alfabetisk "
238  "(ikke nødvendigvis korrekt):";
239  }
240 
241  /*! This is an introduction to the list with all files. */
242  virtual QCString trFileListDescription(bool extractAll)
243  {
244  QCString result="Her er en liste over alle ";
245  if (!extractAll) result+="dokumenterte ";
246  result+="filer med korte beskrivelser:";
247  return result;
248  }
249 
250  /*! This is an introduction to the annotated compound list. */
252  {
253 
254  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
255  {
256  return "Her er datastrukturene med korte beskrivelser:";
257  }
258  else if (Config_getBool(OPTIMIZE_OUTPUT_SLICE))
259  {
260  return "Her er klasser med korte beskrivelser:";
261  }
262  else
263  {
264  return "Her er klasser, struct'er, "
265  "unioner og interface'er med korte beskrivelser:";
266  }
267  }
268 
269  /*! This is an introduction to the page with all class members. */
270  virtual QCString trCompoundMembersDescription(bool extractAll)
271  {
272  QCString result="Her er en liste over alle ";
273  if (!extractAll)
274  {
275  result+="dokumenterte ";
276  }
277  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
278  {
279  result+="struct- og unionfelter";
280  }
281  else
282  {
283  result+="klassemedlemmer";
284  }
285  result+=" med koblinger til ";
286  if (!extractAll)
287  {
288  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
289  {
290  result+="struct/union dokumentasjon for hvert felt:";
291  }
292  else
293  {
294  result+="klassedokumentasjonen for hvert medlem:";
295  }
296  }
297  else
298  {
299  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
300  {
301  result+="struct'ene/unionene de hører til:";
302  }
303  else
304  {
305  result+="klassene de hører til:";
306  }
307  }
308  return result;
309  }
310  /*! This is an introduction to the page with all file members. */
311  virtual QCString trFileMembersDescription(bool extractAll)
312  {
313  QCString result="Her er en liste over alle ";
314  if (!extractAll) result+="dokumenterte ";
315 
316  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
317  {
318  result+="funksjoner, variabler, definisjoner, enum'er, og typedef'er";
319  }
320  else
321  {
322  result+="filmedlemmer";
323  }
324  result+=" med koblinger til ";
325  if (extractAll)
326  result+="filene de hører til:";
327  else
328  result+="dokumentasjonen:";
329  return result;
330  }
331 
332  /*! This is an introduction to the page with the list of all header files. */
334  { return "Her er alle header-filene som utgjør API'et:"; }
335 
336  /*! This is an introduction to the page with the list of all examples */
338  { return "Her er en liste over alle eksemplene:"; }
339 
340  /*! This is an introduction to the page with the list of related pages */
342  { return "Her er en liste over alle relaterte dokumentasjonssider:"; }
343 
344  /*! This is an introduction to the page with the list of class/file groups */
346  { return "Her er en liste over alle moduler:"; }
347 
348  /*! This sentences is used in the annotated class/file lists if no brief
349  * description is given.
350  */
352  { return "Ingen beskrivelse tilgjengelig"; }
353 
354  // index titles (the project name is prepended for these)
355 
356 
357  /*! This is used in HTML as the title of index.html. */
358  virtual QCString trDocumentation()
359  { return "Dokumentasjon"; }
360 
361  /*! This is used in LaTeX as the title of the chapter with the
362  * index of all groups.
363  */
364  virtual QCString trModuleIndex()
365  { return "Modulindeks"; }
366 
367  /*! This is used in LaTeX as the title of the chapter with the
368  * class hierarchy.
369  */
370  virtual QCString trHierarchicalIndex()
371  { return "Hierarkisk indeks"; }
372 
373  /*! This is used in LaTeX as the title of the chapter with the
374  * annotated compound index.
375  */
376  virtual QCString trCompoundIndex()
377  {
378  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
379  {
380  return "Datastrukturindeks";
381  }
382  else
383  {
384  return "Klasseindeks";
385  }
386  }
387 
388  /*! This is used in LaTeX as the title of the chapter with the
389  * list of all files.
390  */
391  virtual QCString trFileIndex()
392  { return "Filindeks"; }
393 
394  /*! This is used in LaTeX as the title of the chapter containing
395  * the documentation of all groups.
396  */
398  { return "Moduldokumentasjon"; }
399 
400  /*! This is used in LaTeX as the title of the chapter containing
401  * the documentation of all classes, structs and unions.
402  */
404  {
405  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
406  {
407  return "Datastrukturdokumentasjon";
408  }
409  else
410  {
411  return "Klassedokumentasjon";
412  }
413  }
414 
415  /*! This is used in LaTeX as the title of the chapter containing
416  * the documentation of all files.
417  */
418  virtual QCString trFileDocumentation()
419  { return "Fildokumentasjon"; }
420 
421  /*! This is used in LaTeX as the title of the chapter containing
422  * the documentation of all examples.
423  */
425  { return "Eksempeldokumentasjon"; }
426 
427  /*! This is used in LaTeX as the title of the chapter containing
428  * the documentation of all related pages.
429  */
430  virtual QCString trPageDocumentation()
431  { return "Sidedokumentasjon"; }
432 
433  /*! This is used in LaTeX as the title of the document */
434  virtual QCString trReferenceManual()
435  { return "Referansemanual"; }
436 
437  /*! This is used in the documentation of a file as a header before the
438  * list of defines
439  */
440  virtual QCString trDefines()
441  { return "Definisjoner"; }
442 
443  /*! This is used in the documentation of a file as a header before the
444  * list of typedefs
445  */
446  virtual QCString trTypedefs()
447  { return "Typedef'er"; }
448 
449  /*! This is used in the documentation of a file as a header before the
450  * list of enumerations
451  */
452  virtual QCString trEnumerations()
453  { return "Enumerasjoner"; }
454 
455  /*! This is used in the documentation of a file as a header before the
456  * list of (global) functions
457  */
458  virtual QCString trFunctions()
459  { return "Funksjoner"; }
460 
461  /*! This is used in the documentation of a file as a header before the
462  * list of (global) variables
463  */
464  virtual QCString trVariables()
465  { return "Variabler"; }
466 
467  /*! This is used in the documentation of a file as a header before the
468  * list of (global) variables
469  */
470  virtual QCString trEnumerationValues()
471  { return "Enumerasjonsverdier"; }
472 
473  /*! This is used in the documentation of a file before the list of
474  * documentation blocks for defines
475  */
477  { return "Define-dokumentasjon"; }
478 
479  /*! This is used in the documentation of a file/namespace before the list
480  * of documentation blocks for typedefs
481  */
483  { return "Typedef-dokumentasjon"; }
484 
485  /*! This is used in the documentation of a file/namespace before the list
486  * of documentation blocks for enumeration types
487  */
489  { return "Enumerasjontype dokumentasjon"; }
490 
491  /*! This is used in the documentation of a file/namespace before the list
492  * of documentation blocks for enumeration values
493  */
495  { return "Enumerasjonsverdi dokumentasjon"; }
496 
497  /*! This is used in the documentation of a file/namespace before the list
498  * of documentation blocks for functions
499  */
501  { return "Funksjonsdokumentasjon"; }
502 
503  /*! This is used in the documentation of a file/namespace before the list
504  * of documentation blocks for variables
505  */
507  { return "Variabeldokumentasjon"; }
508 
509  /*! This is used in the documentation of a file/namespace/group before
510  * the list of links to documented compounds
511  */
512  virtual QCString trCompounds()
513  {
514  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
515  {
516  return "Datastrukturer";
517  }
518  else
519  {
520  return "Klasser";
521  }
522  }
523 
524  /*! This is used in the standard footer of each page and indicates when
525  * the page was generated
526  */
527  virtual QCString trGeneratedAt(const QCString &date,const QCString &projName)
528  {
529  QCString result=(QCString)"Generert "+date;
530  if (!projName.isEmpty()) result+=(QCString)" for "+projName;
531  result+=(QCString)" av";
532  return result;
533  }
534 
535  /*! this text is put before a class diagram */
536  virtual QCString trClassDiagram(const QCString &clName)
537  {
538  return (QCString)"Arvediagram for "+clName+":";
539  }
540 
541  /*! this text is generated when the \\internal command is used. */
543  { return "Kun for intern bruk."; }
544 
545  /*! this text is generated when the \\reimp command is used. */
547  { return "Reimplementert av interne grunner; API er ikke påvirket."; }
548 
549  /*! this text is generated when the \\warning command is used. */
550  virtual QCString trWarning()
551  { return "Advarsel"; }
552 
553  /*! this text is generated when the \\bug command is used. */
555  { return "Feil og begrensninger"; }
556 
557  /*! this text is generated when the \\version command is used. */
558  virtual QCString trVersion()
559  { return "Versjon"; }
560 
561  /*! this text is generated when the \\date command is used. */
562  virtual QCString trDate()
563  { return "Dato"; }
564 
565  /*! this text is generated when the \\return command is used. */
566  virtual QCString trReturns()
567  { return "Returnerer"; }
568 
569  /*! this text is generated when the \\sa command is used. */
570  virtual QCString trSeeAlso()
571  { return "Se også"; }
572 
573  /*! this text is generated when the \\param command is used. */
575  { return "Parametre"; }
576 
577  /*! this text is generated when the \\exception command is used. */
578  virtual QCString trExceptions()
579  { return "Unntak"; }
580 
581  /*! this text is used in the title page of a LaTeX document. */
582  virtual QCString trGeneratedBy()
583  { return "Generert av"; }
584 
585 //////////////////////////////////////////////////////////////////////////
586 // new since 0.49-990307
587 //////////////////////////////////////////////////////////////////////////
588 
589  /*! used as the title of page containing all the index of all namespaces. */
590  virtual QCString trNamespaceList()
591  { return "Navneromsliste"; }
592 
593  /*! used as an introduction to the namespace list */
594  virtual QCString trNamespaceListDescription(bool extractAll)
595  {
596  QCString result="Her er en liste over alle ";
597  if (!extractAll) result+="dokumenterte ";
598  result+="navnerom med korte beskrivelser:";
599  return result;
600  }
601 
602  /*! used in the class documentation as a header before the list of all
603  * friends of a class
604  */
605  virtual QCString trFriends()
606  { return "Venner"; }
607 
608 //////////////////////////////////////////////////////////////////////////
609 // new since 0.49-990405
610 //////////////////////////////////////////////////////////////////////////
611 
612  /*! used in the class documentation as a header before the list of all
613  * related classes
614  */
616  { return "Venner og relatert funksjonsdokumentasjon"; }
617 
618 //////////////////////////////////////////////////////////////////////////
619 // new since 0.49-990425
620 //////////////////////////////////////////////////////////////////////////
621 
622  /*! used as the title of the HTML page of a class/struct/union */
623  virtual QCString trCompoundReference(const QCString &clName,
624  ClassDef::CompoundType compType,
625  bool isTemplate)
626  {
627  QCString result=(QCString)clName;
628  switch(compType)
629  {
630  case ClassDef::Class: result+=" Klasse"; break;
631  case ClassDef::Struct: result+=" Struct"; break;
632  case ClassDef::Union: result+=" Union"; break;
633  case ClassDef::Interface: result+=" Grensesnitt"; break;
634  case ClassDef::Exception: result+=" Unntak"; break;
635  case ClassDef::Protocol: result+=" Protocol"; break;
636  case ClassDef::Category: result+=" Category"; break;
637  default: break;
638  }
639  if (isTemplate) result+=" Mal";
640  result+=" Referanse";
641  return result;
642  }
643 
644  /*! used as the title of the HTML page of a file */
645  virtual QCString trFileReference(const QCString &fileName)
646  {
647  QCString result=fileName;
648  result+=" filreferanse";
649  return result;
650  }
651 
652  /*! used as the title of the HTML page of a namespace */
653  virtual QCString trNamespaceReference(const QCString &namespaceName)
654  {
655  QCString result=namespaceName;
656  result+=" navneromsreferanse";
657  return result;
658  }
659 
660  virtual QCString trPublicMembers()
661  { return "Public medlemsfunksjoner"; }
662  virtual QCString trPublicSlots()
663  { return "Public slots"; }
664  virtual QCString trSignals()
665  { return "Signaler"; }
667  { return "Statiske public medlemsfunksjoner"; }
668  virtual QCString trProtectedMembers()
669  { return "Protected memdlemsfunksjoner"; }
670  virtual QCString trProtectedSlots()
671  { return "Protected slots"; }
673  { return "Statiske protected medlemsfunksjoner"; }
674  virtual QCString trPrivateMembers()
675  { return "Private medlemsfunksjoner"; }
676  virtual QCString trPrivateSlots()
677  { return "Private slots"; }
679  { return "Statiske private medlemsfunksjoner"; }
680 
681  /*! this function is used to produce a comma-separated list of items.
682  * use generateMarker(i) to indicate where item i should be put.
683  */
684  virtual QCString trWriteList(int numEntries)
685  {
686  QCString result;
687  int i;
688  // the inherits list contain `numEntries' classes
689  for (i=0;i<numEntries;i++)
690  {
691  // use generateMarker to generate placeholders for the class links!
692  result+=generateMarker(i); // generate marker for entry i in the list
693  // (order is left to right)
694 
695  if (i!=numEntries-1) // not the last entry, so we need a separator
696  {
697  if (i<numEntries-2) // not the fore last entry
698  result+=", ";
699  else // the fore last entry
700  result+=", og ";
701  }
702  }
703  return result;
704  }
705 
706  /*! used in class documentation to produce a list of base classes,
707  * if class diagrams are disabled.
708  */
709  virtual QCString trInheritsList(int numEntries)
710  {
711  return "Arver "+trWriteList(numEntries)+".";
712  }
713 
714  /*! used in class documentation to produce a list of super classes,
715  * if class diagrams are disabled.
716  */
717  virtual QCString trInheritedByList(int numEntries)
718  {
719  return "Arvet av "+trWriteList(numEntries)+".";
720  }
721 
722  /*! used in member documentation blocks to produce a list of
723  * members that are hidden by this one.
724  */
725  virtual QCString trReimplementedFromList(int numEntries)
726  {
727  return "Reimplementert fra "+trWriteList(numEntries)+".";
728  }
729 
730  /*! used in member documentation blocks to produce a list of
731  * all member that overwrite the implementation of this member.
732  */
733  virtual QCString trReimplementedInList(int numEntries)
734  {
735  return "Reimplementert i "+trWriteList(numEntries)+".";
736  }
737 
738  /*! This is put above each page as a link to all members of namespaces. */
739  virtual QCString trNamespaceMembers()
740  { return "Navneromsmedlemmer"; }
741 
742  /*! This is an introduction to the page with all namespace members */
743  virtual QCString trNamespaceMemberDescription(bool extractAll)
744  {
745  QCString result="Her er en liste over alle ";
746  if (!extractAll) result+="dokumenterte ";
747  result+="navneromsmedlemmer med koblinger til ";
748  if (extractAll)
749  result+="navneromsdokumentasjonen for hvert medlem:";
750  else
751  result+="navnerommet de hører til:";
752  return result;
753  }
754  /*! This is used in LaTeX as the title of the chapter with the
755  * index of all namespaces.
756  */
757  virtual QCString trNamespaceIndex()
758  { return "Navneromsindeks"; }
759 
760  /*! This is used in LaTeX as the title of the chapter containing
761  * the documentation of all namespaces.
762  */
764  { return "Navneromsdokumentasjon"; }
765 
766 //////////////////////////////////////////////////////////////////////////
767 // new since 0.49-990522
768 //////////////////////////////////////////////////////////////////////////
769 
770  /*! This is used in the documentation before the list of all
771  * namespaces in a file.
772  */
773  virtual QCString trNamespaces()
774  { return "Navnerom"; }
775 
776 //////////////////////////////////////////////////////////////////////////
777 // new since 0.49-990728
778 //////////////////////////////////////////////////////////////////////////
779 
780  /*! This is put at the bottom of a class documentation page and is
781  * followed by a list of files that were used to generate the page.
782  */
784  bool single)
785  { // here s is one of " Class", " Struct" or " Union"
786  // single is true implies a single file
787  QCString result=(QCString)"Dokumentasjonen for ";
788  switch(compType)
789  {
790  case ClassDef::Class: result+="denne klasse"; break;
791  case ClassDef::Struct: result+="denne struct"; break;
792  case ClassDef::Union: result+="denne union"; break;
793  case ClassDef::Interface: result+="dette interface"; break;
794  case ClassDef::Exception: result+="dette unntak"; break;
795  case ClassDef::Protocol: result+="denne protocol"; break;
796  case ClassDef::Category: result+="denne category"; break;
797  default: break;
798  }
799  result+=" ble generert fra følgende fil";
800  if (single) result+=":"; else result+="er:";
801  return result;
802  }
803 
804 //////////////////////////////////////////////////////////////////////////
805 // new since 0.49-990901
806 //////////////////////////////////////////////////////////////////////////
807 
808  /*! This is used as the heading text for the retval command. */
809  virtual QCString trReturnValues()
810  { return "Returverdier"; }
811 
812  /*! This is in the (quick) index as a link to the main page (index.html)
813  */
814  virtual QCString trMainPage()
815  { return "Hovedside"; }
816 
817  /*! This is used in references to page that are put in the LaTeX
818  * documentation. It should be an abbreviation of the word page.
819  */
820  virtual QCString trPageAbbreviation()
821  { return "s."; }
822 
823 //////////////////////////////////////////////////////////////////////////
824 // new since 0.49-991003
825 //////////////////////////////////////////////////////////////////////////
826 
827  virtual QCString trSources()
828  {
829  return "Kilder";
830  }
832  {
833  return "Definisjon på linje @0 i filen @1.";
834  }
836  {
837  return "Definisjon i filen @0.";
838  }
839 
840 //////////////////////////////////////////////////////////////////////////
841 // new since 0.49-991205
842 //////////////////////////////////////////////////////////////////////////
843 
844  virtual QCString trDeprecated()
845  {
846  return "Foreldet";
847  }
848 
849 //////////////////////////////////////////////////////////////////////////
850 // new since 1.0.0
851 //////////////////////////////////////////////////////////////////////////
852 
853  /*! this text is put before a collaboration diagram */
854  virtual QCString trCollaborationDiagram(const QCString &clName)
855  {
856  return (QCString)"Samarbeidsdiagram for "+clName+":";
857  }
858  /*! this text is put before an include dependency graph */
859  virtual QCString trInclDepGraph(const QCString &fName)
860  {
861  return (QCString)"Avhengighetsgraf for "+fName+":";
862  }
863 
864  /*! header that is put before the list of constructor/destructors. */
866  {
867  return "Konstruktør- & destruktør-dokumentasjon";
868  }
869  /*! Used in the file documentation to point to the corresponding sources. */
870  virtual QCString trGotoSourceCode()
871  {
872  return "Gå til kildekoden til denne filen.";
873  }
874  /*! Used in the file sources to point to the corresponding documentation. */
875  virtual QCString trGotoDocumentation()
876  {
877  return "Gå til dokumentasjonen til denne filen.";
878  }
879  /*! Text for the \\pre command */
880  virtual QCString trPrecondition()
881  {
882  return "Forhåndsbetingelse";
883  }
884  /*! Text for the \\post command */
885  virtual QCString trPostcondition()
886  {
887  return "Etterbetingelse";
888  }
889  /*! Text for the \\invariant command */
890  virtual QCString trInvariant()
891  {
892  return "Invariant";
893  }
894  /*! Text shown before a multi-line variable/enum initialization */
895  virtual QCString trInitialValue()
896  {
897  return "Startverdi:";
898  }
899  /*! Text used the source code in the file index */
900  virtual QCString trCode()
901  {
902  return "kode";
903  }
905  {
906  return "Grafisk klassehierarki";
907  }
909  {
910  return "Gå til det grafiske klasse hierarkiet";
911  }
913  {
914  return "Gå til tekst-klassehierarki";
915  }
916  virtual QCString trPageIndex()
917  {
918  return "Innhold";
919  }
920 
921 //////////////////////////////////////////////////////////////////////////
922 // new since 1.1.0
923 //////////////////////////////////////////////////////////////////////////
924 
925  virtual QCString trNote()
926  {
927  return "Notat";
928  }
929  virtual QCString trPublicTypes()
930  {
931  return "Public typer";
932  }
934  {
935  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
936  {
937  return "Datafelt";
938  }
939  else
940  {
941  return "Public attributter";
942  }
943  }
945  {
946  return "Statiske public attributter";
947  }
948  virtual QCString trProtectedTypes()
949  {
950  return "Protected typer";
951  }
952  virtual QCString trProtectedAttribs()
953  {
954  return "Protected attributter";
955  }
957  {
958  return "Statiske protected attributter";
959  }
960  virtual QCString trPrivateTypes()
961  {
962  return "Private typer";
963  }
964  virtual QCString trPrivateAttribs()
965  {
966  return "Private attributter";
967  }
969  {
970  return "Statiske private attributter";
971  }
972 
973 //////////////////////////////////////////////////////////////////////////
974 // new since 1.1.3
975 //////////////////////////////////////////////////////////////////////////
976 
977  /*! Used as a marker that is put before a todo item */
978  virtual QCString trTodo()
979  {
980  return "Todo";
981  }
982  /*! Used as the header of the todo list */
983  virtual QCString trTodoList()
984  {
985  return "Todo-liste";
986  }
987 
988 //////////////////////////////////////////////////////////////////////////
989 // new since 1.1.4
990 //////////////////////////////////////////////////////////////////////////
991 
992  virtual QCString trReferencedBy()
993  {
994  return "Referert av";
995  }
996  virtual QCString trRemarks()
997  {
998  return "Merknader";
999  }
1000  virtual QCString trAttention()
1001  {
1002  return "Viktig";
1003  }
1004  virtual QCString trInclByDepGraph()
1005  {
1006  return "Denne grafen viser hvilke filer som direkte eller "
1007  "indirekte inkluderer denne filen:";
1008  }
1009  virtual QCString trSince()
1010  {
1011  return "Siden";
1012  }
1013 
1014 //////////////////////////////////////////////////////////////////////////
1015 // new since 1.1.5
1016 //////////////////////////////////////////////////////////////////////////
1017 
1018  /*! title of the graph legend page */
1019  virtual QCString trLegendTitle()
1020  {
1021  return "Symbolforklaring";
1022  }
1023  /*! page explaining how the dot graph's should be interpreted */
1024  virtual QCString trLegendDocs()
1025  {
1026  return
1027  "Denne siden forklarer hvordan man tolker grafene doxygen genererer.<p>\n"
1028  "Vi baserer oss på følgende eksempel:\n"
1029  "\\code\n"
1030  "/*! Usynlig klasse pga. trunkasjon */\n"
1031  "class Invisible { };\n\n"
1032  "/*! Trunkert klasse, arve-relasjon er skjult */\n"
1033  "class Truncated : public Invisible { };\n\n"
1034  "/* Klasse som ikke er dokumentert med doxygen-kommentarer */"
1035  "class Undocumented { };\n\n"
1036  "/*! Klasse med public-arv */\n"
1037  "class PublicBase : public Truncated { };\n\n"
1038  "/*! A template class */\n"
1039  "template<class T> class Templ { };\n\n"
1040  "/*! Klasse med protected-arv */\n"
1041  "class ProtectedBase { };\n\n"
1042  "/*! Klasse med private-arv */\n"
1043  "class PrivateBase { };\n\n"
1044  "/*! Klasse som blir brukt av klassen Inherited */\n"
1045  "class Used { };\n\n"
1046  "/*! Super-klasse som arver flere andre klasser */\n"
1047  "class Inherited : public PublicBase,\n"
1048  " protected ProtectedBase,\n"
1049  " private PrivateBase,\n"
1050  " public Undocumented,\n"
1051  " public Templ<int>\n"
1052  "{\n"
1053  " private:\n"
1054  " Used *m_usedClass;\n"
1055  "};\n"
1056  "\\endcode\n"
1057  "Hvis \\c MAX_DOT_GRAPH_HEIGHT er satt til 200 i "
1058  "konfigurasjonsfila vil dette resultere i følgende graf:"
1059  "<p><center><img src=\"graph_legend."+getDotImageExtension()+"\"></center>\n"
1060  "<p>\n"
1061  "Boksene i grafen over betyr følgende:\n"
1062  "<ul>\n"
1063  "<li>En fylt svart boks representerer klassen grafen "
1064  "er generert for.\n"
1065  "<li>En boks med svart ramme angir en dokumentert struct eller klasse.\n"
1066  "<li>En boks med grå ramme angir en udokumentert struct eller klasse.\n"
1067  "<li>En boks med rød ramme angir en dokumentert struct eller klasse "
1068  "der ikke alle relasjoner er vist. En graf blir trunkert om den ikke "
1069  "passer innenfor de spesifiserte rammene.\n"
1070  "</ul>\n"
1071  "Pilene i grafen har følgende betydning:\n"
1072  "</ul>\n"
1073  "<li>En mørk blå pil brukes til å visualisere public-arv mellom to klasser.\n"
1074  "<li>En mørk grønn pil brukes for protected-arv.\n"
1075  "<li>En mørk rød pil angir private-arv.\n"
1076  "<li>En stiplet lilla pil angir at en klasse er inkludert eller brukt "
1077  "i en annen klasse. Pilen er merket med variablen(e) klassen "
1078  "er tilgjengelig gjennom.\n"
1079  "</ul>\n";
1080  }
1081  /*! text for the link to the legend page */
1082  virtual QCString trLegend()
1083  {
1084  return "symbolforklaring";
1085  }
1086 
1087 //////////////////////////////////////////////////////////////////////////
1088 // new since 1.2.0
1089 //////////////////////////////////////////////////////////////////////////
1090 
1091  /*! Used as a marker that is put before a test item */
1092  virtual QCString trTest()
1093  {
1094  return "Test";
1095  }
1096  /*! Used as the header of the test list */
1097  virtual QCString trTestList()
1098  {
1099  return "Test-liste";
1100  }
1101 
1102 //////////////////////////////////////////////////////////////////////////
1103 // new since 1.2.1
1104 //////////////////////////////////////////////////////////////////////////
1105 
1106  /*! Used as a section header for IDL properties */
1107  virtual QCString trProperties()
1108  {
1109  return "Egenskaper";
1110  }
1111  /*! Used as a section header for IDL property documentation */
1113  {
1114  return "Egenskaps-dokumentasjon";
1115  }
1116 
1117 //////////////////////////////////////////////////////////////////////////
1118 // new since 1.2.4
1119 //////////////////////////////////////////////////////////////////////////
1121  /*! Used for Java interfaces in the summary section of Java packages */
1122  virtual QCString trInterfaces()
1123  {
1124  return "Grensesnitt";
1125  }
1126  /*! Used for Java classes in the summary section of Java packages */
1127  virtual QCString trClasses()
1128  {
1129  if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
1130  {
1131  return "Datastrukturer";
1132  }
1133  else
1134  {
1135  return "Klasser";
1136  }
1137  }
1138  /*! Used as the title of a Java package */
1139  virtual QCString trPackage(const QCString &name)
1140  {
1141  return (QCString)"Package "+name;
1142  }
1143  /*! Title of the package index page */
1144  virtual QCString trPackageList()
1145  {
1146  return "Pakke-liste";
1147  }
1148  /*! The description of the package index page */
1150  {
1151  return "Her er pakkene med korte beskrivelser (om tilgjengelig):";
1152  }
1153  /*! The link name in the Quick links header for each page */
1154  virtual QCString trPackages()
1155  {
1156  return "Pakker";
1157  }
1158  /*! Used as a chapter title for Latex & RTF output */
1160  {
1161  return "Pakke-dokumentasjon";
1162  }
1163  /*! Text shown before a multi-line define */
1164  virtual QCString trDefineValue()
1165  {
1166  return "Verdi:";
1167  }
1168 
1169 //////////////////////////////////////////////////////////////////////////
1170 // new since 1.2.5
1171 //////////////////////////////////////////////////////////////////////////
1172 
1173  /*! Used as a marker that is put before a \\bug item */
1174  virtual QCString trBug()
1175  {
1176  return "Feil";
1177  }
1178  /*! Used as the header of the bug list */
1179  virtual QCString trBugList()
1180  {
1181  return "Feil-liste";
1182  }
1183 
1184 //////////////////////////////////////////////////////////////////////////
1185 // new since 1.2.6
1186 //////////////////////////////////////////////////////////////////////////
1188  /*! Used as ansicpg for RTF file
1189  *
1190  * The following table shows the correlation of Charset name, Charset Value and
1191  * <pre>
1192  * Codepage number:
1193  * Charset Name Charset Value(hex) Codepage number
1194  * ------------------------------------------------------
1195  * DEFAULT_CHARSET 1 (x01)
1196  * SYMBOL_CHARSET 2 (x02)
1197  * OEM_CHARSET 255 (xFF)
1198  * ANSI_CHARSET 0 (x00) 1252
1199  * RUSSIAN_CHARSET 204 (xCC) 1251
1200  * EE_CHARSET 238 (xEE) 1250
1201  * GREEK_CHARSET 161 (xA1) 1253
1202  * TURKISH_CHARSET 162 (xA2) 1254
1203  * BALTIC_CHARSET 186 (xBA) 1257
1204  * HEBREW_CHARSET 177 (xB1) 1255
1205  * ARABIC _CHARSET 178 (xB2) 1256
1206  * SHIFTJIS_CHARSET 128 (x80) 932
1207  * HANGEUL_CHARSET 129 (x81) 949
1208  * GB2313_CHARSET 134 (x86) 936
1209  * CHINESEBIG5_CHARSET 136 (x88) 950
1210  * </pre>
1211  *
1212  */
1213  virtual QCString trRTFansicp()
1214  {
1215  return "1252";
1216  }
1218 
1219  /*! Used as ansicpg for RTF fcharset
1220  * \see trRTFansicp() for a table of possible values.
1221  */
1222  virtual QCString trRTFCharSet()
1223  {
1224  return "0";
1225  }
1226 
1227  /*! Used as header RTF general index */
1228  virtual QCString trRTFGeneralIndex()
1229  {
1230  return "Indeks";
1231  }
1232 
1233  /*! This is used for translation of the word that will possibly
1234  * be followed by a single name or by a list of names
1235  * of the category.
1236  */
1237  virtual QCString trClass(bool first_capital, bool singular)
1238  {
1239  QCString result((first_capital ? "Klasse" : "klasse"));
1240  if (!singular) result+="r";
1241  return result;
1242  }
1243 
1244  /*! This is used for translation of the word that will possibly
1245  * be followed by a single name or by a list of names
1246  * of the category.
1247  */
1248  virtual QCString trFile(bool first_capital, bool singular)
1249  {
1250  QCString result((first_capital ? "Fil" : "fil"));
1251  if (!singular) result+="er";
1252  return result;
1253  }
1254 
1255  /*! This is used for translation of the word that will possibly
1256  * be followed by a single name or by a list of names
1257  * of the category.
1258  */
1259  virtual QCString trNamespace(bool first_capital, bool singular)
1260  {
1261  QCString result((first_capital ? "Navnerom" : "navnerom"));
1262  if (!singular) result+="";
1263  return result;
1264  }
1265 
1266  /*! This is used for translation of the word that will possibly
1267  * be followed by a single name or by a list of names
1268  * of the category.
1269  */
1270  virtual QCString trGroup(bool first_capital, bool singular)
1271  {
1272  QCString result((first_capital ? "Gruppe" : "gruppe"));
1273  if (!singular) result+="r";
1274  return result;
1275  }
1276 
1277  /*! This is used for translation of the word that will possibly
1278  * be followed by a single name or by a list of names
1279  * of the category.
1280  */
1281  virtual QCString trPage(bool first_capital, bool singular)
1282  {
1283  QCString result((first_capital ? "Side" : "side"));
1284  if (!singular) result+="r";
1285  return result;
1286  }
1287 
1288  /*! This is used for translation of the word that will possibly
1289  * be followed by a single name or by a list of names
1290  * of the category.
1291  */
1292  virtual QCString trMember(bool first_capital, bool singular)
1293  {
1294  QCString result((first_capital ? "Medlem" : "medlem"));
1295  if (!singular) result+="mer";
1296  return result;
1297  }
1298 
1299  /*! This is used for translation of the word that will possibly
1300  * be followed by a single name or by a list of names
1301  * of the category.
1302  */
1303  virtual QCString trField(bool first_capital, bool singular)
1304  {
1305  QCString result((first_capital ? "Felt" : "felt"));
1306  if (!singular) result+="";
1307  return result;
1308  }
1309 
1310  /*! This is used for translation of the word that will possibly
1311  * be followed by a single name or by a list of names
1312  * of the category.
1313  */
1314  virtual QCString trGlobal(bool first_capital, bool singular)
1315  {
1316  QCString result((first_capital ? "Global" : "global"));
1317  if (!singular) result+="e";
1318  return result;
1319  }
1320 
1321 //////////////////////////////////////////////////////////////////////////
1322 // new since 1.2.7
1323 //////////////////////////////////////////////////////////////////////////
1324 
1325  /*! This text is generated when the \\author command is used and
1326  * for the author section in man pages. */
1327  virtual QCString trAuthor(bool first_capital, bool singular)
1328  {
1329  QCString result((first_capital ? "Forfatter" : "forfatter"));
1330  if (!singular) result+="e";
1331  return result;
1332  }
1333 
1334 //////////////////////////////////////////////////////////////////////////
1335 // new since 1.2.11
1336 //////////////////////////////////////////////////////////////////////////
1337 
1338  /*! This text is put before the list of members referenced by a member
1339  */
1340  virtual QCString trReferences()
1341  {
1342  return "Referanser";
1343  }
1344 
1345 //////////////////////////////////////////////////////////////////////////
1346 // new since 1.2.13
1347 //////////////////////////////////////////////////////////////////////////
1348 
1349  /*! used in member documentation blocks to produce a list of
1350  * members that are implemented by this one.
1351  */
1352  virtual QCString trImplementedFromList(int numEntries)
1353  {
1354  return "Implementerer "+trWriteList(numEntries)+".";
1355  }
1356 
1357  /*! used in member documentation blocks to produce a list of
1358  * all members that implement this abstract member.
1359  */
1360  virtual QCString trImplementedInList(int numEntries)
1361  {
1362  return "Implementert i "+trWriteList(numEntries)+".";
1363  }
1364 
1365 //////////////////////////////////////////////////////////////////////////
1366 // new since 1.2.16
1367 //////////////////////////////////////////////////////////////////////////
1368 
1369  /*! used in RTF documentation as a heading for the Table
1370  * of Contents.
1371  */
1372  virtual QCString trRTFTableOfContents()
1373  {
1374  return "Innholdsfortegnelse";
1375  }
1376 
1377 //////////////////////////////////////////////////////////////////////////
1378 // new since 1.2.17
1379 //////////////////////////////////////////////////////////////////////////
1380 
1381  /*! Used as the header of the list of item that have been
1382  * flagged deprecated
1383  */
1384  virtual QCString trDeprecatedList()
1385  {
1386  return "Liste over foreldede enheter";
1387  }
1388 
1389 //////////////////////////////////////////////////////////////////////////
1390 // new since 1.2.18
1391 //////////////////////////////////////////////////////////////////////////
1392 
1393  /*! Used as a header for declaration section of the events found in
1394  * a C# program
1395  */
1396  virtual QCString trEvents()
1397  {
1398  return "Hendelser";
1399  }
1400  /*! Header used for the documentation section of a class' events. */
1401  virtual QCString trEventDocumentation()
1402  {
1403  return "Hendelsesdokumentasjon";
1404  }
1405 
1406 //////////////////////////////////////////////////////////////////////////
1407 // new since 1.3
1408 //////////////////////////////////////////////////////////////////////////
1409 
1410  /*! Used as a heading for a list of Java class types with package scope.
1411  */
1412  virtual QCString trPackageTypes()
1413  {
1414  return "Pakketyper";
1415  }
1416  /*! Used as a heading for a list of Java class functions with package
1417  * scope.
1418  */
1419  virtual QCString trPackageMembers()
1420  {
1421  return "Pakkefunksjoner";
1422  }
1423  /*! Used as a heading for a list of static Java class functions with
1424  * package scope.
1425  */
1427  {
1428  return "Statiske Pakkefunksjoner";
1429  }
1430  /*! Used as a heading for a list of Java class variables with package
1431  * scope.
1432  */
1433  virtual QCString trPackageAttribs()
1434  {
1435  return "Pakkeattributter";
1436  }
1437  /*! Used as a heading for a list of static Java class variables with
1438  * package scope.
1439  */
1441  {
1442  return "Statiske Pakkeattributter";
1443  }
1444 
1445 //////////////////////////////////////////////////////////////////////////
1446 // new since 1.3.1
1447 //////////////////////////////////////////////////////////////////////////
1448 
1449  /*! Used in the quick index of a class/file/namespace member list page
1450  * to link to the unfiltered list of all members.
1451  */
1452  virtual QCString trAll()
1453  {
1454  return "Alle";
1455  }
1456  /*! Put in front of the call graph for a function. */
1458  {
1459  return "Her er kall-grafen for denne funksjonen:";
1460  }
1461 
1462 //////////////////////////////////////////////////////////////////////////
1463 // new since 1.3.3
1464 //////////////////////////////////////////////////////////////////////////
1465 
1466  /*! This string is used as the title for the page listing the search
1467  * results.
1468  */
1469  virtual QCString trSearchResultsTitle()
1470  {
1471  return "Søkeresultater";
1472  }
1473  /*! This string is put just before listing the search results. The
1474  * text can be different depending on the number of documents found.
1475  * Inside the text you can put the special marker $num to insert
1476  * the number representing the actual number of search results.
1477  * The @a numDocuments parameter can be either 0, 1 or 2, where the
1478  * value 2 represents 2 or more matches. HTML markup is allowed inside
1479  * the returned string.
1480  */
1481  virtual QCString trSearchResults(int numDocuments)
1482  {
1483  if (numDocuments==0)
1484  {
1485  return "Beklager, men ingen dokumenter ble funnet.";
1486  }
1487  else if (numDocuments==1)
1488  {
1489  return "Fant <b>ett</b> dokument som passet ditt søk.";
1490  }
1491  else
1492  {
1493  return "Fant <b>$num</b> dokumenter som passet ditt søk. "
1494  "Viser beste treff først.";
1495  }
1496  }
1497  /*! This string is put before the list of matched words, for each search
1498  * result. What follows is the list of words that matched the query.
1499  */
1500  virtual QCString trSearchMatches()
1501  {
1502  return "Treff:";
1503  }
1504 
1505 //////////////////////////////////////////////////////////////////////////
1506 // new since 1.3.8
1507 //////////////////////////////////////////////////////////////////////////
1508 
1509  /*! This is used in HTML as the title of page with source code for file filename
1510  */
1511  virtual QCString trSourceFile(QCString& filename)
1512  {
1513  return "Kildefil " + filename;
1514  }
1515 
1516 //////////////////////////////////////////////////////////////////////////
1517 // new since 1.3.9
1518 //////////////////////////////////////////////////////////////////////////
1520  /*! This is used as the name of the chapter containing the directory
1521  * hierarchy.
1522  */
1523  virtual QCString trDirIndex()
1524  { return "Katalog hierarki"; }
1525 
1526  /*! This is used as the name of the chapter containing the documentation
1527  * of the directories.
1528  */
1529  virtual QCString trDirDocumentation()
1530  { return "Katalogdokumentasjon"; }
1531 
1532  /*! This is used as the title of the directory index and also in the
1533  * Quick links of an HTML page, to link to the directory hierarchy.
1534  */
1535  virtual QCString trDirectories()
1536  { return "Kataloger"; }
1537 
1538  /*! This returns a sentences that introduces the directory hierarchy.
1539  * and the fact that it is sorted alphabetically per level
1540  */
1541  virtual QCString trDirDescription()
1542  { return "Denne katalogen er grovsortert alfabetisk "
1543  "(ikke nødvendigvis korrekt).";
1544  }
1545 
1546  /*! This returns the title of a directory page. The name of the
1547  * directory is passed via \a dirName.
1548  */
1549  virtual QCString trDirReference(const QCString &dirName)
1550  { QCString result=dirName; result+=" Katalog referanse"; return result; }
1551 
1552  /*! This returns the word directory with or without starting capital
1553  * (\a first_capital) and in sigular or plural form (\a singular).
1554  */
1555  virtual QCString trDir(bool first_capital, bool singular)
1556  {
1557  QCString result((first_capital ? "Katalog" : "katalog"));
1558  if (!singular) result+="er";
1559  return result;
1560  }
1562 //////////////////////////////////////////////////////////////////////////
1563 // new since 1.4.1
1564 //////////////////////////////////////////////////////////////////////////
1565 
1566  /*! This text is added to the documentation when the \\overload command
1567  * is used for a overloaded function.
1568  */
1569  virtual QCString trOverloadText()
1570  {
1571  return "Dette er en overloaded medlemsfunksjon, "
1572  "generert for deg. Den skiller seg ut fra "
1573  "funksjonen ovenfor i argument(ene) den aksepterer.";
1574  }
1575 
1576 };
1577 
1578 #endif
TranslatorNorwegian::trFileIndex
virtual QCString trFileIndex()
Definition: translator_no.h:429
TranslatorNorwegian::trProtectedMembers
virtual QCString trProtectedMembers()
Definition: translator_no.h:706
TranslatorNorwegian::trClassHierarchyDescription
virtual QCString trClassHierarchyDescription()
Definition: translator_no.h:274
TranslatorNorwegian::trReferences
virtual QCString trReferences()
Definition: translator_no.h:1378
TranslatorNorwegian::trReimplementedFromList
virtual QCString trReimplementedFromList(int numEntries)
Definition: translator_no.h:763
getDotImageExtension
QCString getDotImageExtension()
Definition: util.cpp:7032
TranslatorNorwegian::trInterfaces
virtual QCString trInterfaces()
Definition: translator_no.h:1160
TranslatorNorwegian::trExamplesDescription
virtual QCString trExamplesDescription()
Definition: translator_no.h:375
TranslatorNorwegian::trCompoundReference
virtual QCString trCompoundReference(const QCString &clName, ClassDef::CompoundType compType, bool isTemplate)
Definition: translator_no.h:661
TranslatorNorwegian::trSources
virtual QCString trSources()
Definition: translator_no.h:865
TranslatorNorwegian::trOverloadText
virtual QCString trOverloadText()
Definition: translator_no.h:1607
TranslatorNorwegian::trTypedefs
virtual QCString trTypedefs()
Definition: translator_no.h:484
TranslatorNorwegian::trGotoDocumentation
virtual QCString trGotoDocumentation()
Definition: translator_no.h:913
TranslatorNorwegian::trISOLang
virtual QCString trISOLang()
Definition: translator_no.h:116
TranslatorNorwegian::trStaticPrivateMembers
virtual QCString trStaticPrivateMembers()
Definition: translator_no.h:716
TranslatorNorwegian::trTestList
virtual QCString trTestList()
Definition: translator_no.h:1135
TranslatorNorwegian::trSignals
virtual QCString trSignals()
Definition: translator_no.h:702
TranslatorNorwegian::trTodo
virtual QCString trTodo()
Definition: translator_no.h:1016
TranslatorNorwegian::trTest
virtual QCString trTest()
Definition: translator_no.h:1130
TranslatorNorwegian::trRemarks
virtual QCString trRemarks()
Definition: translator_no.h:1034
TranslatorNorwegian::trPageDocumentation
virtual QCString trPageDocumentation()
Definition: translator_no.h:468
ClassDef::Union
@ Union
Definition: classdef.h:109
TranslatorNorwegian::trMemberTypedefDocumentation
virtual QCString trMemberTypedefDocumentation()
Definition: translator_no.h:136
TranslatorNorwegian::trDefinedIn
virtual QCString trDefinedIn()
Definition: translator_no.h:199
TranslatorNorwegian::trPrivateMembers
virtual QCString trPrivateMembers()
Definition: translator_no.h:712
TranslatorNorwegian::trRTFCharSet
virtual QCString trRTFCharSet()
Definition: translator_no.h:1260
TranslatorNorwegian::trStaticPublicMembers
virtual QCString trStaticPublicMembers()
Definition: translator_no.h:704
TranslatorNorwegian::trWriteList
virtual QCString trWriteList(int numEntries)
Definition: translator_no.h:722
TranslatorNorwegian::trRelatedFunctions
virtual QCString trRelatedFunctions()
Definition: translator_no.h:124
TranslatorNorwegian::trClassDiagram
virtual QCString trClassDiagram(const QCString &clName)
Definition: translator_no.h:574
TranslatorNorwegian::trReturnValues
virtual QCString trReturnValues()
Definition: translator_no.h:847
TranslatorNorwegian::trPackageTypes
virtual QCString trPackageTypes()
Definition: translator_no.h:1450
TranslatorNorwegian
Definition: translator_no.h:46
TranslatorAdapter_1_4_6
Adapter class for languages that only contain translations up to version 1.4.6
Definition: translator_adapter.h:417
TranslatorNorwegian::trModulesDescription
virtual QCString trModulesDescription()
Definition: translator_no.h:383
generateMarker
QCString generateMarker(int id)
Definition: util.cpp:284
TranslatorNorwegian::trClasses
virtual QCString trClasses()
Definition: translator_no.h:1165
TranslatorNorwegian::trFunctions
virtual QCString trFunctions()
Definition: translator_no.h:496
QCString::isEmpty
bool isEmpty() const
Returns TRUE iff the string is empty
Definition: qcstring.h:144
TranslatorNorwegian::trDirIndex
virtual QCString trDirIndex()
Definition: translator_no.h:1561
TranslatorNorwegian::trProtectedAttribs
virtual QCString trProtectedAttribs()
Definition: translator_no.h:990
TranslatorNorwegian::trPackage
virtual QCString trPackage(const QCString &name)
Definition: translator_no.h:1177
ClassDef::CompoundType
CompoundType
The various compound types
Definition: classdef.h:107
TranslatorNorwegian::trTodoList
virtual QCString trTodoList()
Definition: translator_no.h:1021
ClassDef::Interface
@ Interface
Definition: classdef.h:110
TranslatorNorwegian::trRelatedSubscript
virtual QCString trRelatedSubscript()
Definition: translator_no.h:128
TranslatorNorwegian::trField
virtual QCString trField(bool first_capital, bool singular)
Definition: translator_no.h:1341
TranslatorNorwegian::trFileMembersDescription
virtual QCString trFileMembersDescription(bool extractAll)
Definition: translator_no.h:349
TranslatorNorwegian::trDetailedDescription
virtual QCString trDetailedDescription()
Definition: translator_no.h:132
TranslatorNorwegian::trTypedefDocumentation
virtual QCString trTypedefDocumentation()
Definition: translator_no.h:520
TranslatorNorwegian::trHeaderFiles
virtual QCString trHeaderFiles()
Definition: translator_no.h:232
TranslatorNorwegian::trDir
virtual QCString trDir(bool first_capital, bool singular)
Definition: translator_no.h:1593
TranslatorNorwegian::trVariableDocumentation
virtual QCString trVariableDocumentation()
Definition: translator_no.h:544
TranslatorNorwegian::trPublicSlots
virtual QCString trPublicSlots()
Definition: translator_no.h:700
TranslatorNorwegian::trParameters
virtual QCString trParameters()
Definition: translator_no.h:612
TranslatorNorwegian::trImplementedFromList
virtual QCString trImplementedFromList(int numEntries)
Definition: translator_no.h:1390
TranslatorNorwegian::trDefineDocumentation
virtual QCString trDefineDocumentation()
Definition: translator_no.h:514
TranslatorNorwegian::trCode
virtual QCString trCode()
Definition: translator_no.h:938
TranslatorNorwegian::trInheritedByList
virtual QCString trInheritedByList(int numEntries)
Definition: translator_no.h:755
TranslatorNorwegian::trPackageAttribs
virtual QCString trPackageAttribs()
Definition: translator_no.h:1471
TranslatorNorwegian::trDirDescription
virtual QCString trDirDescription()
Definition: translator_no.h:1579
TranslatorNorwegian::trExceptions
virtual QCString trExceptions()
Definition: translator_no.h:616
TranslatorNorwegian::trRelatedPages
virtual QCString trRelatedPages()
Definition: translator_no.h:262
TranslatorNorwegian::trVersion
virtual QCString trVersion()
Definition: translator_no.h:596
TranslatorNorwegian::trNamespaceListDescription
virtual QCString trNamespaceListDescription(bool extractAll)
Definition: translator_no.h:632
TranslatorNorwegian::trStaticPackageMembers
virtual QCString trStaticPackageMembers()
Definition: translator_no.h:1464
ClassDef::Class
@ Class
Definition: classdef.h:107
TranslatorNorwegian::trEnumerationValueDocumentation
virtual QCString trEnumerationValueDocumentation()
Definition: translator_no.h:532
TranslatorNorwegian::trGlobal
virtual QCString trGlobal(bool first_capital, bool singular)
Definition: translator_no.h:1352
TranslatorNorwegian::trForInternalUseOnly
virtual QCString trForInternalUseOnly()
Definition: translator_no.h:580
TranslatorNorwegian::trReferencedBy
virtual QCString trReferencedBy()
Definition: translator_no.h:1030
TranslatorNorwegian::trMemberEnumerationDocumentation
virtual QCString trMemberEnumerationDocumentation()
Definition: translator_no.h:140
TranslatorNorwegian::trCompoundMembersDescription
virtual QCString trCompoundMembersDescription(bool extractAll)
Definition: translator_no.h:308
TranslatorNorwegian::trImplementedInList
virtual QCString trImplementedInList(int numEntries)
Definition: translator_no.h:1398
TranslatorNorwegian::trStaticPackageAttribs
virtual QCString trStaticPackageAttribs()
Definition: translator_no.h:1478
TranslatorNorwegian::trAll
virtual QCString trAll()
Definition: translator_no.h:1490
TranslatorNorwegian::trPublicMembers
virtual QCString trPublicMembers()
Definition: translator_no.h:698
TranslatorNorwegian::trPackages
virtual QCString trPackages()
Definition: translator_no.h:1192
TranslatorNorwegian::trMore
virtual QCString trMore()
Definition: translator_no.h:161
TranslatorNorwegian::trMemberDataDocumentation
virtual QCString trMemberDataDocumentation()
Definition: translator_no.h:148
TranslatorNorwegian::trClassHierarchy
virtual QCString trClassHierarchy()
Definition: translator_no.h:211
TranslatorNorwegian::trDefines
virtual QCString trDefines()
Definition: translator_no.h:478
TranslatorNorwegian::trClass
virtual QCString trClass(bool first_capital, bool singular)
Definition: translator_no.h:1275
TranslatorNorwegian::trProtectedTypes
virtual QCString trProtectedTypes()
Definition: translator_no.h:986
TranslatorNorwegian::trMember
virtual QCString trMember(bool first_capital, bool singular)
Definition: translator_no.h:1330
TranslatorNorwegian::trProtectedSlots
virtual QCString trProtectedSlots()
Definition: translator_no.h:708
TranslatorNorwegian::trNamespace
virtual QCString trNamespace(bool first_capital, bool singular)
Definition: translator_no.h:1297
TranslatorNorwegian::trGroup
virtual QCString trGroup(bool first_capital, bool singular)
Definition: translator_no.h:1308
TranslatorNorwegian::trHierarchicalIndex
virtual QCString trHierarchicalIndex()
Definition: translator_no.h:408
TranslatorNorwegian::trInclByDepGraph
virtual QCString trInclByDepGraph()
Definition: translator_no.h:1042
TranslatorNorwegian::trSeeAlso
virtual QCString trSeeAlso()
Definition: translator_no.h:608
TranslatorNorwegian::trListOfAllMembers
virtual QCString trListOfAllMembers()
Definition: translator_no.h:165
TranslatorNorwegian::trInvariant
virtual QCString trInvariant()
Definition: translator_no.h:928
TranslatorNorwegian::trNamespaceDocumentation
virtual QCString trNamespaceDocumentation()
Definition: translator_no.h:801
TranslatorNorwegian::trDefinedInSourceFile
virtual QCString trDefinedInSourceFile()
Definition: translator_no.h:873
TranslatorNorwegian::trBugList
virtual QCString trBugList()
Definition: translator_no.h:1217
TranslatorNorwegian::trLegendDocs
virtual QCString trLegendDocs()
Definition: translator_no.h:1062
TranslatorNorwegian::trClassDocumentation
virtual QCString trClassDocumentation()
Definition: translator_no.h:441
TranslatorNorwegian::trGeneratedAutomatically
virtual QCString trGeneratedAutomatically(const QCString &s)
Definition: translator_no.h:183
TranslatorNorwegian::trFileDocumentation
virtual QCString trFileDocumentation()
Definition: translator_no.h:456
TranslatorNorwegian::trGotoGraphicalHierarchy
virtual QCString trGotoGraphicalHierarchy()
Definition: translator_no.h:946
TranslatorNorwegian::trReimplementedInList
virtual QCString trReimplementedInList(int numEntries)
Definition: translator_no.h:771
TranslatorNorwegian::trStaticPrivateAttribs
virtual QCString trStaticPrivateAttribs()
Definition: translator_no.h:1006
TranslatorNorwegian::trNamespaces
virtual QCString trNamespaces()
Definition: translator_no.h:811
TranslatorNorwegian::trDeprecatedList
virtual QCString trDeprecatedList()
Definition: translator_no.h:1422
TranslatorNorwegian::trReimplementedForInternalReasons
virtual QCString trReimplementedForInternalReasons()
Definition: translator_no.h:584
TranslatorNorwegian::trEvents
virtual QCString trEvents()
Definition: translator_no.h:1434
TranslatorNorwegian::trDate
virtual QCString trDate()
Definition: translator_no.h:600
TranslatorNorwegian::trLegendTitle
virtual QCString trLegendTitle()
Definition: translator_no.h:1057
TranslatorNorwegian::trDeprecated
virtual QCString trDeprecated()
Definition: translator_no.h:882
TranslatorNorwegian::trReturns
virtual QCString trReturns()
Definition: translator_no.h:604
TranslatorNorwegian::trPageIndex
virtual QCString trPageIndex()
Definition: translator_no.h:954
TranslatorNorwegian::trIncludingInheritedMembers
virtual QCString trIncludingInheritedMembers()
Definition: translator_no.h:177
TranslatorNorwegian::trStaticProtectedAttribs
virtual QCString trStaticProtectedAttribs()
Definition: translator_no.h:994
TranslatorNorwegian::trNamespaceReference
virtual QCString trNamespaceReference(const QCString &namespaceName)
Definition: translator_no.h:691
TranslatorNorwegian::trCompoundIndex
virtual QCString trCompoundIndex()
Definition: translator_no.h:414
TranslatorNorwegian::trDirectories
virtual QCString trDirectories()
Definition: translator_no.h:1573
TranslatorNorwegian::trProperties
virtual QCString trProperties()
Definition: translator_no.h:1145
TranslatorNorwegian::trPage
virtual QCString trPage(bool first_capital, bool singular)
Definition: translator_no.h:1319
TranslatorNorwegian::trNamespaceMemberDescription
virtual QCString trNamespaceMemberDescription(bool extractAll)
Definition: translator_no.h:781
TranslatorNorwegian::trStaticPublicAttribs
virtual QCString trStaticPublicAttribs()
Definition: translator_no.h:982
TranslatorNorwegian::trCompoundListDescription
virtual QCString trCompoundListDescription()
Definition: translator_no.h:289
TranslatorNorwegian::trGeneratedFromFiles
virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType, bool single)
Definition: translator_no.h:821
TranslatorNorwegian::trSourceFile
virtual QCString trSourceFile(QCString &filename)
Definition: translator_no.h:1549
TranslatorNorwegian::trCallGraph
virtual QCString trCallGraph()
Definition: translator_no.h:1495
TranslatorNorwegian::trLegend
virtual QCString trLegend()
Definition: translator_no.h:1120
TranslatorNorwegian::trModuleDocumentation
virtual QCString trModuleDocumentation()
Definition: translator_no.h:435
TranslatorNorwegian::trPrivateAttribs
virtual QCString trPrivateAttribs()
Definition: translator_no.h:1002
TranslatorNorwegian::trPostcondition
virtual QCString trPostcondition()
Definition: translator_no.h:923
TranslatorNorwegian::trDirDocumentation
virtual QCString trDirDocumentation()
Definition: translator_no.h:1567
TranslatorNorwegian::trVariables
virtual QCString trVariables()
Definition: translator_no.h:502
TranslatorNorwegian::trReferenceManual
virtual QCString trReferenceManual()
Definition: translator_no.h:472
TranslatorNorwegian::trPackageList
virtual QCString trPackageList()
Definition: translator_no.h:1182
ClassDef::Category
@ Category
Definition: classdef.h:112
TranslatorNorwegian::trRTFTableOfContents
virtual QCString trRTFTableOfContents()
Definition: translator_no.h:1410
ClassDef::Struct
@ Struct
Definition: classdef.h:108
TranslatorNorwegian::trNote
virtual QCString trNote()
Definition: translator_no.h:963
TranslatorNorwegian::trFileMembers
virtual QCString trFileMembers()
Definition: translator_no.h:249
TranslatorNorwegian::trEnumerationValues
virtual QCString trEnumerationValues()
Definition: translator_no.h:508
TranslatorNorwegian::trPackageDocumentation
virtual QCString trPackageDocumentation()
Definition: translator_no.h:1197
TranslatorNorwegian::trPrecondition
virtual QCString trPrecondition()
Definition: translator_no.h:918
TranslatorNorwegian::trEnumerations
virtual QCString trEnumerations()
Definition: translator_no.h:490
TranslatorNorwegian::trCompounds
virtual QCString trCompounds()
Definition: translator_no.h:550
TranslatorNorwegian::trNamespaceMembers
virtual QCString trNamespaceMembers()
Definition: translator_no.h:777
TranslatorNorwegian::trCollaborationDiagram
virtual QCString trCollaborationDiagram(const QCString &clName)
Definition: translator_no.h:892
TranslatorNorwegian::trExampleDocumentation
virtual QCString trExampleDocumentation()
Definition: translator_no.h:462
TranslatorNorwegian::trRTFGeneralIndex
virtual QCString trRTFGeneralIndex()
Definition: translator_no.h:1266
TranslatorNorwegian::trSearch
virtual QCString trSearch()
Definition: translator_no.h:270
TranslatorNorwegian::trPublicTypes
virtual QCString trPublicTypes()
Definition: translator_no.h:967
TranslatorNorwegian::trEnumValue
virtual QCString trEnumValue()
Definition: translator_no.h:195
TranslatorNorwegian::trCompoundMembers
virtual QCString trCompoundMembers()
Definition: translator_no.h:236
TranslatorNorwegian::trFriends
virtual QCString trFriends()
Definition: translator_no.h:643
TranslatorNorwegian::latexLanguageSupportCommand
virtual QCString latexLanguageSupportCommand()
Definition: translator_no.h:110
TranslatorNorwegian::trBug
virtual QCString trBug()
Definition: translator_no.h:1212
TranslatorNorwegian::trInheritsList
virtual QCString trInheritsList(int numEntries)
Definition: translator_no.h:747
TranslatorNorwegian::trPublicAttribs
virtual QCString trPublicAttribs()
Definition: translator_no.h:971
TranslatorNorwegian::trSearchMatches
virtual QCString trSearchMatches()
Definition: translator_no.h:1538
TranslatorNorwegian::trSearchResults
virtual QCString trSearchResults(int numDocuments)
Definition: translator_no.h:1519
TranslatorNorwegian::trInclDepGraph
virtual QCString trInclDepGraph(const QCString &fName)
Definition: translator_no.h:897
TranslatorNorwegian::trEnumName
virtual QCString trEnumName()
Definition: translator_no.h:191
TranslatorNorwegian::trPageAbbreviation
virtual QCString trPageAbbreviation()
Definition: translator_no.h:858
TranslatorNorwegian::trThisIsTheListOfAllMembers
virtual QCString trThisIsTheListOfAllMembers()
Definition: translator_no.h:173
TranslatorNorwegian::trGeneratedBy
virtual QCString trGeneratedBy()
Definition: translator_no.h:620
Config_getBool
#define Config_getBool(name)
Definition: config.h:33
ClassDef::Protocol
@ Protocol
Definition: classdef.h:111
TranslatorNorwegian::trCompoundList
virtual QCString trCompoundList()
Definition: translator_no.h:215
TranslatorNorwegian::trExamples
virtual QCString trExamples()
Definition: translator_no.h:266
TranslatorNorwegian::trGeneratedAt
virtual QCString trGeneratedAt(const QCString &date, const QCString &projName)
Definition: translator_no.h:565
TranslatorNorwegian::trStaticProtectedMembers
virtual QCString trStaticProtectedMembers()
Definition: translator_no.h:710
TranslatorNorwegian::trGotoTextualHierarchy
virtual QCString trGotoTextualHierarchy()
Definition: translator_no.h:950
TranslatorNorwegian::trAttention
virtual QCString trAttention()
Definition: translator_no.h:1038
TranslatorNorwegian::trInitialValue
virtual QCString trInitialValue()
Definition: translator_no.h:933
TranslatorNorwegian::trFileReference
virtual QCString trFileReference(const QCString &fileName)
Definition: translator_no.h:683
TranslatorNorwegian::idLanguage
virtual QCString idLanguage()
Definition: translator_no.h:96
TranslatorNorwegian::trPropertyDocumentation
virtual QCString trPropertyDocumentation()
Definition: translator_no.h:1150
TranslatorNorwegian::trAuthor
virtual QCString trAuthor(bool first_capital, bool singular)
Definition: translator_no.h:1365
TranslatorNorwegian::trNamespaceIndex
virtual QCString trNamespaceIndex()
Definition: translator_no.h:795
TranslatorNorwegian::trDefineValue
virtual QCString trDefineValue()
Definition: translator_no.h:1202
TranslatorNorwegian::trNoDescriptionAvailable
virtual QCString trNoDescriptionAvailable()
Definition: translator_no.h:389
TranslatorNorwegian::trModuleIndex
virtual QCString trModuleIndex()
Definition: translator_no.h:402
TranslatorNorwegian::trConstructorDocumentation
virtual QCString trConstructorDocumentation()
Definition: translator_no.h:903
TranslatorNorwegian::trMainPage
virtual QCString trMainPage()
Definition: translator_no.h:852
TranslatorNorwegian::trFileListDescription
virtual QCString trFileListDescription(bool extractAll)
Definition: translator_no.h:280
TranslatorNorwegian::trMemberFunctionDocumentation
virtual QCString trMemberFunctionDocumentation()
Definition: translator_no.h:144
TranslatorNorwegian::trHeaderFilesDescription
virtual QCString trHeaderFilesDescription()
Definition: translator_no.h:371
TranslatorNorwegian::trSince
virtual QCString trSince()
Definition: translator_no.h:1047
TranslatorNorwegian::trRTFansicp
virtual QCString trRTFansicp()
Definition: translator_no.h:1251
TranslatorNorwegian::trMemberList
virtual QCString trMemberList()
Definition: translator_no.h:169
TranslatorNorwegian::trDirReference
virtual QCString trDirReference(const QCString &dirName)
Definition: translator_no.h:1587
TranslatorNorwegian::trGotoSourceCode
virtual QCString trGotoSourceCode()
Definition: translator_no.h:908
TranslatorNorwegian::trPackageListDescription
virtual QCString trPackageListDescription()
Definition: translator_no.h:1187
TranslatorNorwegian::trPrivateTypes
virtual QCString trPrivateTypes()
Definition: translator_no.h:998
TranslatorNorwegian::trPackageMembers
virtual QCString trPackageMembers()
Definition: translator_no.h:1457
ClassDef::Exception
@ Exception
Definition: classdef.h:113
TranslatorNorwegian::trEventDocumentation
virtual QCString trEventDocumentation()
Definition: translator_no.h:1439
TranslatorNorwegian::trBugsAndLimitations
virtual QCString trBugsAndLimitations()
Definition: translator_no.h:592
TranslatorNorwegian::trWarning
virtual QCString trWarning()
Definition: translator_no.h:588
TranslatorNorwegian::trModules
virtual QCString trModules()
Definition: translator_no.h:207
TranslatorNorwegian::trRelatedFunctionDocumentation
virtual QCString trRelatedFunctionDocumentation()
Definition: translator_no.h:653
TranslatorNorwegian::trEnumerationTypeDocumentation
virtual QCString trEnumerationTypeDocumentation()
Definition: translator_no.h:526
TranslatorNorwegian::trFile
virtual QCString trFile(bool first_capital, bool singular)
Definition: translator_no.h:1286
TranslatorNorwegian::trGraphicalHierarchy
virtual QCString trGraphicalHierarchy()
Definition: translator_no.h:942
TranslatorNorwegian::trNamespaceList
virtual QCString trNamespaceList()
Definition: translator_no.h:628
TranslatorNorwegian::trSearchResultsTitle
virtual QCString trSearchResultsTitle()
Definition: translator_no.h:1507
TranslatorNorwegian::trFileList
virtual QCString trFileList()
Definition: translator_no.h:228
TranslatorNorwegian::trDefinedAtLineInSourceFile
virtual QCString trDefinedAtLineInSourceFile()
Definition: translator_no.h:869
TranslatorNorwegian::trFunctionDocumentation
virtual QCString trFunctionDocumentation()
Definition: translator_no.h:538
TranslatorNorwegian::trDocumentation
virtual QCString trDocumentation()
Definition: translator_no.h:396
TranslatorNorwegian::trPrivateSlots
virtual QCString trPrivateSlots()
Definition: translator_no.h:714
TranslatorNorwegian::trRelatedPagesDescription
virtual QCString trRelatedPagesDescription()
Definition: translator_no.h:379
QCString
This is an alternative implementation of QCString.
Definition: qcstring.h:108