Blame src/translator_id.h

Packit Service 50c9f2
/******************************************************************************
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Copyright (C) 1997-2015 by Dimitri van Heesch.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Permission to use, copy, modify, and distribute this software and its
Packit Service 50c9f2
 * documentation under the terms of the GNU General Public License is hereby
Packit Service 50c9f2
 * granted. No representations are made about the suitability of this software
Packit Service 50c9f2
 * for any purpose. It is provided "as is" without express or implied warranty.
Packit Service 50c9f2
 * See the GNU General Public License for more details.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Documents produced by Doxygen are derivative works derived from the
Packit Service 50c9f2
 * input used in their production; they are not affected by this license.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 */
Packit Service 50c9f2
Packit Service 50c9f2
#ifndef TRANSLATOR_ID_H
Packit Service 50c9f2
#define TRANSLATOR_ID_H
Packit Service 50c9f2
Packit Service 50c9f2
/*
Packit Service 50c9f2
 * Translasi berikut didasarkan pada versi translator_en.h dalam
Packit Service 50c9f2
 * Doxygen 1.7.5.1.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Penterjemah: Adhi Hargo <cadmus_sw at yahoo.com>
Packit Service 50c9f2
 */
Packit Service 50c9f2
class TranslatorIndonesian : public TranslatorAdapter_1_8_0
Packit Service 50c9f2
{
Packit Service 50c9f2
  public:
Packit Service 50c9f2
Packit Service 50c9f2
    // --- Language control methods -------------------
Packit Service 50c9f2
Packit Service 50c9f2
    /*! Used for identification of the language. The identification
Packit Service 50c9f2
     * should not be translated. It should be replaced by the name
Packit Service 50c9f2
     * of the language in English using lower-case characters only
Packit Service 50c9f2
     * (e.g. "czech", "japanese", "russian", etc.). It should be equal to
Packit Service 50c9f2
     * the identification used in language.cpp.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString idLanguage()
Packit Service 50c9f2
    { return "indonesian"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! Used to get the LaTeX command(s) for the language support.
Packit Service 50c9f2
     *  This method should return string with commands that switch
Packit Service 50c9f2
     *  LaTeX to the desired language.  For example
Packit Service 50c9f2
     *  
"\\usepackage[german]{babel}\n"
Packit Service 50c9f2
     *  
Packit Service 50c9f2
     *  or
Packit Service 50c9f2
     *  
"\\usepackage{polski}\n"
Packit Service 50c9f2
     *  "\\usepackage[latin2]{inputenc}\n"
Packit Service 50c9f2
     *  "\\usepackage[T1]{fontenc}\n"
Packit Service 50c9f2
     *  
Packit Service 50c9f2
     *
Packit Service 50c9f2
     * The English LaTeX does not use such commands.  Because of this
Packit Service 50c9f2
     * the empty string is returned in this implementation.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString latexLanguageSupportCommand()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "\\usepackage[bahasa]{babel}";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    // --- Language translation methods -------------------
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in the compound documentation before a list of related functions. */
Packit Service 50c9f2
    virtual QCString trRelatedFunctions()
Packit Service 50c9f2
    { return "Fungsi-fungsi Terkait"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! subscript for the related functions. */
Packit Service 50c9f2
    virtual QCString trRelatedSubscript()
Packit Service 50c9f2
    { return "(Perhatikan bahwa fungsi-fungsi tersebut bukan fungsi anggota.)"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the detailed description of files, classes and namespaces. */
Packit Service 50c9f2
    virtual QCString trDetailedDescription()
Packit Service 50c9f2
    { return "Keterangan Lengkap"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of typedefs. */
Packit Service 50c9f2
    virtual QCString trMemberTypedefDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Anggota: Tipe"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of enumerations. */
Packit Service 50c9f2
    virtual QCString trMemberEnumerationDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Anggota: Enumerasi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of member functions. */
Packit Service 50c9f2
    virtual QCString trMemberFunctionDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Anggota: Fungsi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! header that is put before the list of member attributes. */
Packit Service 50c9f2
    virtual QCString trMemberDataDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Dokumentasi Variabel";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Dokumentasi Anggota: Data";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is the text of a link put after brief descriptions. */
Packit Service 50c9f2
    virtual QCString trMore()
Packit Service 50c9f2
    { return "Selengkapnya..."; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put in the class documentation */
Packit Service 50c9f2
    virtual QCString trListOfAllMembers()
Packit Service 50c9f2
    { return "Daftar semua anggota"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the "list of all members" page of a class */
Packit Service 50c9f2
    virtual QCString trMemberList()
Packit Service 50c9f2
    { return "Daftar anggota"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is the first part of a sentence that is followed by a class name */
Packit Service 50c9f2
    virtual QCString trThisIsTheListOfAllMembers()
Packit Service 50c9f2
    { return "Berikut ini daftar lengkap anggota untuk "; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is the remainder of the sentence after the class name */
Packit Service 50c9f2
    virtual QCString trIncludingInheritedMembers()
Packit Service 50c9f2
    { return ", termasuk semua anggota yang diwariskan."; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this is put at the author sections at the bottom of man pages.
Packit Service 50c9f2
     *  parameter s is name of the project name.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trGeneratedAutomatically(const char *s)
Packit Service 50c9f2
    { QCString result="Dibangkitkan secara otomatis oleh Doxygen";
Packit Service 50c9f2
      if (s) result+=(QCString)" untuk "+s;
Packit Service 50c9f2
      result+=" dari kode sumber.";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put after an enum name in the list of all members */
Packit Service 50c9f2
    virtual QCString trEnumName()
Packit Service 50c9f2
    { return "nama enumerasi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put after an enum value in the list of all members */
Packit Service 50c9f2
    virtual QCString trEnumValue()
Packit Service 50c9f2
    { return "nilai enumerasi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! put after an undocumented member in the list of all members */
Packit Service 50c9f2
    virtual QCString trDefinedIn()
Packit Service 50c9f2
    { return "didefinisikan di"; }
Packit Service 50c9f2
Packit Service 50c9f2
    // quick reference sections
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the list of all groups of
Packit Service 50c9f2
     *  compounds or files (see the \\group command).
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trModules()
Packit Service 50c9f2
    { return "Modul"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the class hierarchy */
Packit Service 50c9f2
    virtual QCString trClassHierarchy()
Packit Service 50c9f2
    { return "Hierarki Kelas"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the list of annotated classes */
Packit Service 50c9f2
    virtual QCString trCompoundList()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Struktur Data";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Daftar Kelas";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the list of documented files */
Packit Service 50c9f2
    virtual QCString trFileList()
Packit Service 50c9f2
    { return "Daftar File"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all members of compounds. */
Packit Service 50c9f2
    virtual QCString trCompoundMembers()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Variabel Data";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Daftar Anggota Kelas";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all members of files. */
Packit Service 50c9f2
    virtual QCString trFileMembers()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Daftar Definisi Global";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Daftar Anggota File";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all related pages. */
Packit Service 50c9f2
    virtual QCString trRelatedPages()
Packit Service 50c9f2
    { return "Halaman Terkait"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all examples. */
Packit Service 50c9f2
    virtual QCString trExamples()
Packit Service 50c9f2
    { return "Contoh"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to the search engine. */
Packit Service 50c9f2
    virtual QCString trSearch()
Packit Service 50c9f2
    { return "Cari"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the class hierarchy. */
Packit Service 50c9f2
    virtual QCString trClassHierarchyDescription()
Packit Service 50c9f2
    { return "Hierarki kelas ini diurutkan kurang-lebih"
Packit Service 50c9f2
	" berdasarkan abjad:";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the list with all files. */
Packit Service 50c9f2
    virtual QCString trFileListDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Berikut ini daftar seluruh file";
Packit Service 50c9f2
      if (!extractAll) result+=" yang didokumentasikan";
Packit Service 50c9f2
      result += ", dengan penjelasan singkat:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the annotated compound list. */
Packit Service 50c9f2
    virtual QCString trCompoundListDescription()
Packit Service 50c9f2
    {
Packit Service 50c9f2
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Berikut ini daftar struktur data, dengan penjelasan singkat:";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Berikut ini daftar kelas, struct, union, dan interface, dengan penjelasan singkat:";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with all class members. */
Packit Service 50c9f2
    virtual QCString trCompoundMembersDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Berikut ini daftar seluruh ";
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="variabel anggota struct dan union";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="kelas";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      if (!extractAll)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+=" yang didokumentasikan";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      result+=", dengan tautan ke ";
Packit Service 50c9f2
      if (!extractAll)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="dokumentasi struct/union untuk setiap variabel:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
        else
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="dokumentasi kelas untuk setiap anggota:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="struct/union yang memuatnya:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
        else
Packit Service 50c9f2
        {
Packit Service 50c9f2
          result+="kelas yang memuatnya:";
Packit Service 50c9f2
        }
Packit Service 50c9f2
      }
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with all file members. */
Packit Service 50c9f2
    virtual QCString trFileMembersDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Berikut ini daftar ";
Packit Service 50c9f2
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="fungsi, variabel, makro definisi, enumerasi, dan tipe";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        result+="file";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      if (!extractAll) result+=" yang didokumentasikan";
Packit Service 50c9f2
      result+=", dengan tautan ke ";
Packit Service 50c9f2
      if (extractAll)
Packit Service 50c9f2
        result+="file yang memuatnya:";
Packit Service 50c9f2
      else
Packit Service 50c9f2
        result+="dokumentasinya:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with the list of all examples */
Packit Service 50c9f2
    virtual QCString trExamplesDescription()
Packit Service 50c9f2
    { return "Berikut ini daftar semua contoh:"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with the list of related pages */
Packit Service 50c9f2
    virtual QCString trRelatedPagesDescription()
Packit Service 50c9f2
    { return "Berikut ini daftar semua halaman dokumentasi yang terkait:"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with the list of class/file groups */
Packit Service 50c9f2
    virtual QCString trModulesDescription()
Packit Service 50c9f2
    { return "Berikut ini daftar semua modul:"; }
Packit Service 50c9f2
Packit Service 50c9f2
    // index titles (the project name is prepended for these)
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in HTML as the title of index.html. */
Packit Service 50c9f2
    virtual QCString trDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * index of all groups.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trModuleIndex()
Packit Service 50c9f2
    { return "Indeks Modul"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * class hierarchy.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trHierarchicalIndex()
Packit Service 50c9f2
    { return "Indeks Hierarki Kelas"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * annotated compound index.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trCompoundIndex()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Indeks Struktur Data";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Indeks Kelas";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     * list of all files.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trFileIndex()
Packit Service 50c9f2
    { return "Indeks File"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all groups.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trModuleDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Modul"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all classes, structs and unions.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trClassDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Dokumentasi Struktur Data";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Dokumentasi Kelas";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all files.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trFileDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi File"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all examples.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trExampleDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Contoh"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all related pages.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trPageDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Halaman"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the document */
Packit Service 50c9f2
    virtual QCString trReferenceManual()
Packit Service 50c9f2
    { return "Dokumen Referensi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of defines
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trDefines()
Packit Service 50c9f2
    { return "Makro Definisi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of typedefs
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trTypedefs()
Packit Service 50c9f2
    { return "Definisi Tipe"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of enumerations
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trEnumerations()
Packit Service 50c9f2
    { return "Enumerasi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of (global) functions
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trFunctions()
Packit Service 50c9f2
    { return "Fungsi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of (global) variables
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trVariables()
Packit Service 50c9f2
    { return "Variabel"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file as a header before the
Packit Service 50c9f2
     *  list of (global) variables
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trEnumerationValues()
Packit Service 50c9f2
    { return "Nilai enumerasi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file before the list of
Packit Service 50c9f2
     *  documentation blocks for defines
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trDefineDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Makro Definisi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for typedefs
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trTypedefDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Definisi Tipe"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for enumeration types
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trEnumerationTypeDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Tipe Enumerasi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for functions
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trFunctionDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Fungsi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace before the list
Packit Service 50c9f2
     *  of documentation blocks for variables
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trVariableDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Variabel"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation of a file/namespace/group before
Packit Service 50c9f2
     *  the list of links to documented compounds
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trCompounds()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Struktur Data";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Kelas";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the standard footer of each page and indicates when
Packit Service 50c9f2
     *  the page was generated
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trGeneratedAt(const char *date,const char *projName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result=(QCString)"Dibangkitkan pada tanggal "+date;
Packit Service 50c9f2
      if (projName) result+=(QCString)" untuk "+projName;
Packit Service 50c9f2
      result+=(QCString)" oleh";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is put before a class diagram */
Packit Service 50c9f2
    virtual QCString trClassDiagram(const char *clName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return (QCString)"Diagram hierarki kelas untuk "+clName+":";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\internal command is used. */
Packit Service 50c9f2
    virtual QCString trForInternalUseOnly()
Packit Service 50c9f2
    { return "Hanya untuk digunakan secara internal."; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\warning command is used. */
Packit Service 50c9f2
    virtual QCString trWarning()
Packit Service 50c9f2
    { return "Peringatan"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\version command is used. */
Packit Service 50c9f2
    virtual QCString trVersion()
Packit Service 50c9f2
    { return "Versi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\date command is used. */
Packit Service 50c9f2
    virtual QCString trDate()
Packit Service 50c9f2
    { return "Tanggal"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\return command is used. */
Packit Service 50c9f2
    virtual QCString trReturns()
Packit Service 50c9f2
    { return "Mengembalikan"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\sa command is used. */
Packit Service 50c9f2
    virtual QCString trSeeAlso()
Packit Service 50c9f2
    { return "Lihat juga"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\param command is used. */
Packit Service 50c9f2
    virtual QCString trParameters()
Packit Service 50c9f2
    { return "Parameter"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is generated when the \\exception command is used. */
Packit Service 50c9f2
    virtual QCString trExceptions()
Packit Service 50c9f2
    { return "Eksepsi"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is used in the title page of a LaTeX document. */
Packit Service 50c9f2
    virtual QCString trGeneratedBy()
Packit Service 50c9f2
    { return "Dibangkitkan oleh"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990307
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of page containing all the index of all namespaces. */
Packit Service 50c9f2
    virtual QCString trNamespaceList()
Packit Service 50c9f2
    { return "Daftar Namespace"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as an introduction to the namespace list */
Packit Service 50c9f2
    virtual QCString trNamespaceListDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Berikut ini daftar namespace";
Packit Service 50c9f2
      if (!extractAll) result+=" yang didokumentasikan";
Packit Service 50c9f2
      result+=", dengan keterangan singkat:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in the class documentation as a header before the list of all
Packit Service 50c9f2
     *  friends of a class
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trFriends()
Packit Service 50c9f2
    { return "Friend"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990405
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in the class documentation as a header before the list of all
Packit Service 50c9f2
     * related classes
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trRelatedFunctionDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Friend Dan Fungsi Terkait"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990425
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the HTML page of a class/struct/union */
Packit Service 50c9f2
    virtual QCString trCompoundReference(const char *clName,
Packit Service 50c9f2
        ClassDef::CompoundType compType,
Packit Service 50c9f2
        bool isTemplate)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Referensi";
Packit Service 50c9f2
      switch(compType)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        case ClassDef::Class:      result+=" Kelas "; break;
Packit Service 50c9f2
        case ClassDef::Struct:     result+=" Struct "; break;
Packit Service 50c9f2
        case ClassDef::Union:      result+=" Union "; break;
Packit Service 50c9f2
        case ClassDef::Interface:  result+=" Interface "; break;
Packit Service 50c9f2
        case ClassDef::Protocol:   result+=" Protokol "; break;
Packit Service 50c9f2
        case ClassDef::Category:   result+=" Kategori "; break;
Packit Service 50c9f2
        case ClassDef::Exception:  result+=" Eksepsi "; break;
Packit Service 50c9f2
        default: break;
Packit Service 50c9f2
      }
Packit Service 50c9f2
      if (isTemplate) result+=" Template ";
Packit Service 50c9f2
      result+=(QCString)clName;
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the HTML page of a file */
Packit Service 50c9f2
    virtual QCString trFileReference(const char *fileName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Referensi File ";
Packit Service 50c9f2
      result+=fileName;
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used as the title of the HTML page of a namespace */
Packit Service 50c9f2
    virtual QCString trNamespaceReference(const char *namespaceName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Referensi Namespace ";
Packit Service 50c9f2
      result+=namespaceName;
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    virtual QCString trPublicMembers()
Packit Service 50c9f2
    { return "Fungsi Anggota Publik"; }
Packit Service 50c9f2
    virtual QCString trPublicSlots()
Packit Service 50c9f2
    { return "Slot Publik"; }
Packit Service 50c9f2
    virtual QCString trSignals()
Packit Service 50c9f2
    { return "Signal"; }
Packit Service 50c9f2
    virtual QCString trStaticPublicMembers()
Packit Service 50c9f2
    { return "Fungsi Anggota Publik Statis"; }
Packit Service 50c9f2
    virtual QCString trProtectedMembers()
Packit Service 50c9f2
    { return "Fungsi Anggota Diproteksi"; }
Packit Service 50c9f2
    virtual QCString trProtectedSlots()
Packit Service 50c9f2
    { return "Slot Diproteksi"; }
Packit Service 50c9f2
    virtual QCString trStaticProtectedMembers()
Packit Service 50c9f2
    { return "Fungsi Anggota Diproteksi Statis"; }
Packit Service 50c9f2
    virtual QCString trPrivateMembers()
Packit Service 50c9f2
    { return "Fungsi Anggota Privat"; }
Packit Service 50c9f2
    virtual QCString trPrivateSlots()
Packit Service 50c9f2
    { return "Slot Privat"; }
Packit Service 50c9f2
    virtual QCString trStaticPrivateMembers()
Packit Service 50c9f2
    { return "Fungsi Anggota Privat Statis"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this function is used to produce a comma-separated list of items.
Packit Service 50c9f2
     *  use generateMarker(i) to indicate where item i should be put.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trWriteList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result;
Packit Service 50c9f2
      int i;
Packit Service 50c9f2
      // the inherits list contain `numEntries' classes
Packit Service 50c9f2
      for (i=0;i
Packit Service 50c9f2
      {
Packit Service 50c9f2
        // use generateMarker to generate placeholders for the class links!
Packit Service 50c9f2
        result+=generateMarker(i); // generate marker for entry i in the list
Packit Service 50c9f2
        // (order is left to right)
Packit Service 50c9f2
Packit Service 50c9f2
        if (i!=numEntries-1)  // not the last entry, so we need a separator
Packit Service 50c9f2
        {
Packit Service 50c9f2
          if (i
Packit Service 50c9f2
            result+=", ";
Packit Service 50c9f2
          else                // the fore last entry
Packit Service 50c9f2
            result+=", dan ";
Packit Service 50c9f2
        }
Packit Service 50c9f2
      }
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in class documentation to produce a list of base classes,
Packit Service 50c9f2
     *  if class diagrams are disabled.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trInheritsList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Mewarisi "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in class documentation to produce a list of super classes,
Packit Service 50c9f2
     *  if class diagrams are disabled.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trInheritedByList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Diwariskan ke "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in member documentation blocks to produce a list of
Packit Service 50c9f2
     *  members that are hidden by this one.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trReimplementedFromList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Di-reimplementasikan dari "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! used in member documentation blocks to produce a list of
Packit Service 50c9f2
     *  all member that overwrite the implementation of this member.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trReimplementedInList(int numEntries)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Diimplementasikan ulang di "+trWriteList(numEntries)+".";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put above each page as a link to all members of namespaces. */
Packit Service 50c9f2
    virtual QCString trNamespaceMembers()
Packit Service 50c9f2
    { return "Anggota Namespace"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is an introduction to the page with all namespace members */
Packit Service 50c9f2
    virtual QCString trNamespaceMemberDescription(bool extractAll)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      QCString result="Berikut ini daftar anggota namespace";
Packit Service 50c9f2
      if (!extractAll) result+=" yang didokumentasikan";
Packit Service 50c9f2
      result+=", dengan tautan ke ";
Packit Service 50c9f2
      if (extractAll)
Packit Service 50c9f2
        result+="dokumentasi namespace untuk setiap anggota:";
Packit Service 50c9f2
      else
Packit Service 50c9f2
        result+="namespace yang memuatnya:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter with the
Packit Service 50c9f2
     *  index of all namespaces.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trNamespaceIndex()
Packit Service 50c9f2
    { return "Indeks Namespace"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in LaTeX as the title of the chapter containing
Packit Service 50c9f2
     *  the documentation of all namespaces.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trNamespaceDocumentation()
Packit Service 50c9f2
    { return "Dokumentasi Namespace"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990522
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in the documentation before the list of all
Packit Service 50c9f2
     *  namespaces in a file.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trNamespaces()
Packit Service 50c9f2
    { return "Daftar Namespace"; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990728
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is put at the bottom of a class documentation page and is
Packit Service 50c9f2
     *  followed by a list of files that were used to generate the page.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trGeneratedFromFiles(ClassDef::CompoundType compType,
Packit Service 50c9f2
        bool single)
Packit Service 50c9f2
    { // here s is one of " Class", " Struct" or " Union"
Packit Service 50c9f2
      // single is true implies a single file
Packit Service 50c9f2
      QCString result=(QCString)"Dokumentasi untuk ";
Packit Service 50c9f2
      switch(compType)
Packit Service 50c9f2
      {
Packit Service 50c9f2
        case ClassDef::Class:      result+="kelas"; break;
Packit Service 50c9f2
        case ClassDef::Struct:     result+="struct"; break;
Packit Service 50c9f2
        case ClassDef::Union:      result+="union"; break;
Packit Service 50c9f2
        case ClassDef::Interface:  result+="interface"; break;
Packit Service 50c9f2
        case ClassDef::Protocol:   result+="protokol"; break;
Packit Service 50c9f2
        case ClassDef::Category:   result+="kategori"; break;
Packit Service 50c9f2
        case ClassDef::Exception:  result+="eksepsi"; break;
Packit Service 50c9f2
        default: break;
Packit Service 50c9f2
      }
Packit Service 50c9f2
      result+=" ini dibangkitkan dari file";
Packit Service 50c9f2
      result+=single ? "" : "-file";
Packit Service 50c9f2
      result+=" berikut:";
Packit Service 50c9f2
      return result;
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-990901
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used as the heading text for the retval command. */
Packit Service 50c9f2
    virtual QCString trReturnValues()
Packit Service 50c9f2
    { return "Nilai kembali"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is in the (quick) index as a link to the main page (index.html)
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trMainPage()
Packit Service 50c9f2
    { return "Halaman Utama"; }
Packit Service 50c9f2
Packit Service 50c9f2
    /*! This is used in references to page that are put in the LaTeX
Packit Service 50c9f2
     *  documentation. It should be an abbreviation of the word page.
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trPageAbbreviation()
Packit Service 50c9f2
    { return "hal."; }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-991003
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    virtual QCString trDefinedAtLineInSourceFile()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Definisi pada baris @0 dalam file @1.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trDefinedInSourceFile()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Definisi dalam file @0.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 0.49-991205
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    virtual QCString trDeprecated()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Kadaluarsa";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.0.0
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! this text is put before a collaboration diagram */
Packit Service 50c9f2
    virtual QCString trCollaborationDiagram(const char *clName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return (QCString)"Diagram kolaborasi untuk "+clName+":";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! this text is put before an include dependency graph */
Packit Service 50c9f2
    virtual QCString trInclDepGraph(const char *fName)
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return (QCString)"Bagan kebergantungan pemuatan untuk "+fName+":";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! header that is put before the list of constructor/destructors. */
Packit Service 50c9f2
    virtual QCString trConstructorDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Dokumentasi Konstruktor & Destruktor";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Used in the file documentation to point to the corresponding sources. */
Packit Service 50c9f2
    virtual QCString trGotoSourceCode()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Ke kode sumber file ini.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Used in the file sources to point to the corresponding documentation. */
Packit Service 50c9f2
    virtual QCString trGotoDocumentation()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Ke dokumentasi file ini.";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text for the \\pre command */
Packit Service 50c9f2
    virtual QCString trPrecondition()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Kondisi Awal";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text for the \\post command */
Packit Service 50c9f2
    virtual QCString trPostcondition()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Kondisi Akhir";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text for the \\invariant command */
Packit Service 50c9f2
    virtual QCString trInvariant()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Invarian";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text shown before a multi-line variable/enum initialization */
Packit Service 50c9f2
    virtual QCString trInitialValue()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Nilai awal:";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Text used the source code in the file index */
Packit Service 50c9f2
    virtual QCString trCode()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "kode";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trGraphicalHierarchy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Hierarki Kelas Secara Grafis";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trGotoGraphicalHierarchy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Ke bagan grafis hierarki kelas";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trGotoTextualHierarchy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Ke bagan tekstual hierarki kelas";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trPageIndex()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Indeks Halaman";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.0
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    virtual QCString trNote()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Catatan";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trPublicTypes()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Tipe Publik";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trPublicAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Variabel Data";
Packit Service 50c9f2
      }
Packit Service 50c9f2
      else
Packit Service 50c9f2
      {
Packit Service 50c9f2
        return "Atribut Publik";
Packit Service 50c9f2
      }
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trStaticPublicAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Atribut Publik Statis";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trProtectedTypes()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Tipe Diproteksi";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trProtectedAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Atribut Diproteksi";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trStaticProtectedAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Atribut Diproteksi Statis";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trPrivateTypes()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Tipe Privat";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trPrivateAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Atribut Privat";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trStaticPrivateAttribs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Atribut Privat Statis";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.3
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! Used as a marker that is put before a \\todo item */
Packit Service 50c9f2
    virtual QCString trTodo()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Tugas";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! Used as the header of the todo list */
Packit Service 50c9f2
    virtual QCString trTodoList()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Daftar Tugas";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.4
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    virtual QCString trReferencedBy()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Direferensikan oleh";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trRemarks()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Keterangan";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trAttention()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Perhatian";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trInclByDepGraph()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Bagan ini menunjukkan file-file yang memuat"
Packit Service 50c9f2
	" atau menggunakan file ini baik secara langsung maupun"
Packit Service 50c9f2
	" tidak langsung:";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    virtual QCString trSince()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Sejak";
Packit Service 50c9f2
    }
Packit Service 50c9f2
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
// new since 1.1.5
Packit Service 50c9f2
//////////////////////////////////////////////////////////////////////////
Packit Service 50c9f2
Packit Service 50c9f2
    /*! title of the graph legend page */
Packit Service 50c9f2
    virtual QCString trLegendTitle()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return "Keterangan Bagan";
Packit Service 50c9f2
    }
Packit Service 50c9f2
    /*! page explaining how the dot graph's should be interpreted
Packit Service 50c9f2
     *  The %A in the text below are to prevent link to classes called "A".
Packit Service 50c9f2
     */
Packit Service 50c9f2
    virtual QCString trLegendDocs()
Packit Service 50c9f2
    {
Packit Service 50c9f2
      return
Packit Service 50c9f2
        "Halaman ini berisi keterangan cara membaca bagan yang dibangkitkan "
Packit Service 50c9f2
        "oleh doxygen.

\n"

Packit Service 50c9f2
        "Contoh:\n"
Packit Service 50c9f2
        "\\code\n"
Packit Service 50c9f2
        "/*! Invisible class because of truncation */\n"
Packit Service 50c9f2
        "class Invisible { };\n\n"
Packit Service 50c9f2
        "/*! Truncated class, inheritance relation is hidden */\n"
Packit Service 50c9f2
        "class Truncated : public Invisible { };\n\n"
Packit Service 50c9f2
        "/* Class not documented with doxygen comments */\n"
Packit Service 50c9f2
        "class Undocumented { };\n\n"
Packit Service 50c9f2
        "/*! Class that is inherited using public inheritance */\n"
Packit Service 50c9f2
        "class PublicBase : public Truncated { };\n\n"
Packit Service 50c9f2
        "/*! A template class */\n"
Packit Service 50c9f2
        "template<class T> class Templ { };\n\n"
Packit Service 50c9f2
        "/*! Class that is inherited using protected inheritance */\n"
Packit Service 50c9f2
        "class ProtectedBase { };\n\n"
Packit Service 50c9f2
        "/*! Class that is inherited using private inheritance */\n"
Packit Service 50c9f2
        "class PrivateBase { };\n\n"
Packit Service 50c9f2
        "/*! Class that is used by the Inherited class */\n"
Packit Service 50c9f2
        "class Used { };\n\n"
Packit Service 50c9f2
        "/*! Super class that inherits a number of other classes */\n"
Packit Service 50c9f2
        "class Inherited : public PublicBase,\n"
Packit Service 50c9f2
        "                  protected ProtectedBase,\n"
Packit Service 50c9f2
        "                  private PrivateBase,\n"
Packit Service 50c9f2
        "                  public Undocumented,\n"
Packit Service 50c9f2
        "                  public Templ<int>\n"
Packit Service 50c9f2
        "{\n"
Packit Service 50c9f2
        "  private:\n"
Packit Service 50c9f2
        "    Used *m_usedClass;\n"
Packit Service 50c9f2
        "};\n"
Packit Service 50c9f2
        "\\endcode\n"
Packit Service 50c9f2
        "Apabila tag \\c MAX_DOT_GRAPH_HEIGHT di file konfigurasi "
Packit Service 50c9f2
        "diset ke 240 kode di atas akan menghasilkan bagan berikut:"
Packit Service 50c9f2
        "

<center>\"\"</center>\n"

Packit Service 50c9f2
        "

\n"

Packit Service 50c9f2
        "Kotak-kotak pada bagan di atas mempunyai arti sebagai berikut:\n"
Packit Service 50c9f2
        "
    \n"
Packit Service 50c9f2
        "
  • %Kotak hitam merupakan struct atau kelas yang bersangkutan.\n"
  • Packit Service 50c9f2
            "
  • %Kotak berbingkai hitam adalah struct atau kelas yang mempunyai dokumentasi.\n"
  • Packit Service 50c9f2
            "
  • %Kotak dengan bingkai abu-abu adalah struct atau kelas tanpa dokumentasi.\n"
  • Packit Service 50c9f2
            "
  • %Kotak dengan bingkai merah merupakan struct atau kelas yang didokumentasikan tetapi"
  • Packit Service 50c9f2
            "tidak semua relasinya ditampilkan. %Sebuah bagan "
    Packit Service 50c9f2
            "akan terpotong apabila lebih besar daripada ukuran yang ditentukan.\n"
    Packit Service 50c9f2
            "\n"
    Packit Service 50c9f2
            "Arti dari tanda-tanda panah adalah sebagai berikut:\n"
    Packit Service 50c9f2
            "
      \n"
    Packit Service 50c9f2
            "
  • %Panah biru tua menandakan pewarisan publik.\n"
  • Packit Service 50c9f2
            "
  • %Panah hijau tua untuk pewarisan diproteksi.\n"
  • Packit Service 50c9f2
            "
  • %Panah merah tua untuk pewarisan privat.\n"
  • Packit Service 50c9f2
            "
  • %Panah ungu putus-putus menandakan kelas tersebut berhubungan dengan kelas lain. "
  • Packit Service 50c9f2
            "Panah tersebut diberi judul sesuai dengan kelas atau struct tujuan.\n"
    Packit Service 50c9f2
            "
  • %Panah kuning putus-putus menandakan hubungan antara sebuah template kelas dan "
  • Packit Service 50c9f2
            "instance dari template tersebut. Panah tersebut diberi judul sesuai dengan "
    Packit Service 50c9f2
            "parameter template yang digunakan.\n"
    Packit Service 50c9f2
            "\n";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! text for the link to the legend page */
    Packit Service 50c9f2
        virtual QCString trLegend()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "keterangan";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.0
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a marker that is put before a test item */
    Packit Service 50c9f2
        virtual QCString trTest()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Tes";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as the header of the test list */
    Packit Service 50c9f2
        virtual QCString trTestList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Tes";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a section header for IDL properties */
    Packit Service 50c9f2
        virtual QCString trProperties()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Property";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a section header for IDL property documentation */
    Packit Service 50c9f2
        virtual QCString trPropertyDocumentation()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Dokumentasi Property";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.4
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used for Java classes in the summary section of Java packages */
    Packit Service 50c9f2
        virtual QCString trClasses()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          if (Config_getBool(OPTIMIZE_OUTPUT_FOR_C))
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Struktur Data";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Daftar Kelas";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as the title of a Java package */
    Packit Service 50c9f2
        virtual QCString trPackage(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return (QCString)"Paket "+name;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Title of the package index page */
    Packit Service 50c9f2
        virtual QCString trPackageList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Paket";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! The description of the package index page */
    Packit Service 50c9f2
        virtual QCString trPackageListDescription()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Berikut ini daftar paket, dengan keterangan singkat (apabila tersedia):";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! The link name in the Quick links header for each page */
    Packit Service 50c9f2
        virtual QCString trPackages()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Paket";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Text shown before a multi-line define */
    Packit Service 50c9f2
        virtual QCString trDefineValue()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Nilai:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.5
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a marker that is put before a \\bug item */
    Packit Service 50c9f2
        virtual QCString trBug()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Bug";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as the header of the bug list */
    Packit Service 50c9f2
        virtual QCString trBugList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Bug";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.6
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as ansicpg for RTF file
    Packit Service 50c9f2
         *
    Packit Service 50c9f2
         * The following table shows the correlation of Charset name, Charset Value and
    Packit Service 50c9f2
         * 
    Packit Service 50c9f2
         * Codepage number:
    Packit Service 50c9f2
         * Charset Name       Charset Value(hex)  Codepage number
    Packit Service 50c9f2
         * ------------------------------------------------------
    Packit Service 50c9f2
         * DEFAULT_CHARSET           1 (x01)
    Packit Service 50c9f2
         * SYMBOL_CHARSET            2 (x02)
    Packit Service 50c9f2
         * OEM_CHARSET             255 (xFF)
    Packit Service 50c9f2
         * ANSI_CHARSET              0 (x00)            1252
    Packit Service 50c9f2
         * RUSSIAN_CHARSET         204 (xCC)            1251
    Packit Service 50c9f2
         * EE_CHARSET              238 (xEE)            1250
    Packit Service 50c9f2
         * GREEK_CHARSET           161 (xA1)            1253
    Packit Service 50c9f2
         * TURKISH_CHARSET         162 (xA2)            1254
    Packit Service 50c9f2
         * BALTIC_CHARSET          186 (xBA)            1257
    Packit Service 50c9f2
         * HEBREW_CHARSET          177 (xB1)            1255
    Packit Service 50c9f2
         * ARABIC _CHARSET         178 (xB2)            1256
    Packit Service 50c9f2
         * SHIFTJIS_CHARSET        128 (x80)             932
    Packit Service 50c9f2
         * HANGEUL_CHARSET         129 (x81)             949
    Packit Service 50c9f2
         * GB2313_CHARSET          134 (x86)             936
    Packit Service 50c9f2
         * CHINESEBIG5_CHARSET     136 (x88)             950
    Packit Service 50c9f2
         * 
    Packit Service 50c9f2
         *
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trRTFansicp()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "1252";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as ansicpg for RTF fcharset
    Packit Service 50c9f2
         *  \see trRTFansicp() for a table of possible values.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trRTFCharSet()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "0";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as header RTF general index */
    Packit Service 50c9f2
        virtual QCString trRTFGeneralIndex()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Indeks";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trClass(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Kelas" : "kelas"));
    Packit Service 50c9f2
          if (!singular) result+="-kelas";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trFile(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "File" : "file"));
    Packit Service 50c9f2
          if (!singular) result+="-file";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trNamespace(bool first_capital, bool)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Namespace" : "namespace"));
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trGroup(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Kelompok" : "kelompok"));
    Packit Service 50c9f2
          if (!singular) result+="-kelompok";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPage(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Halaman" : "halaman"));
    Packit Service 50c9f2
          if (!singular) result+="-halaman";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trMember(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Anggota" : "anggota"));
    Packit Service 50c9f2
          if (!singular) result+="-anggota";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trGlobal(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Definisi" : "definisi"));
    Packit Service 50c9f2
          if (!singular)  result+="-definisi";
    Packit Service 50c9f2
          result += " global";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.7
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This text is generated when the \\author command is used and
    Packit Service 50c9f2
         *  for the author section in man pages. */
    Packit Service 50c9f2
        virtual QCString trAuthor(bool first_capital, bool)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Penulis" : "penulis"));
    Packit Service 50c9f2
          //if (!singular)  result+="s";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.11
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This text is put before the list of members referenced by a member
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trReferences()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Referensi";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.13
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used in member documentation blocks to produce a list of
    Packit Service 50c9f2
         *  members that are implemented by this one.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trImplementedFromList(int numEntries)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Mengimplementasikan "+trWriteList(numEntries)+".";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used in member documentation blocks to produce a list of
    Packit Service 50c9f2
         *  all members that implement this abstract member.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trImplementedInList(int numEntries)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Diimplementasikan di "+trWriteList(numEntries)+".";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.16
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used in RTF documentation as a heading for the Table
    Packit Service 50c9f2
         *  of Contents.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trRTFTableOfContents()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Isi";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.17
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as the header of the list of item that have been
    Packit Service 50c9f2
         *  flagged deprecated
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDeprecatedList()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Kadaluarsa";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.2.18
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a header for declaration section of the events found in
    Packit Service 50c9f2
         * a C# program
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trEvents()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Event";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Header used for the documentation section of a class' events. */
    Packit Service 50c9f2
        virtual QCString trEventDocumentation()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Dokumentasi Event";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used as a heading for a list of Java class types with package scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPackageTypes()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Jenis Paket";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of Java class functions with package
    Packit Service 50c9f2
         * scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPackageMembers()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Fungsi Paket";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of static Java class functions with
    Packit Service 50c9f2
         *  package scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trStaticPackageMembers()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Fungsi Statis Paket";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of Java class variables with package
    Packit Service 50c9f2
         * scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trPackageAttribs()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Atribut Paket";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Used as a heading for a list of static Java class variables with
    Packit Service 50c9f2
         * package scope.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trStaticPackageAttribs()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Daftar Atribut Statis Paket";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.1
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Used in the quick index of a class/file/namespace member list page
    Packit Service 50c9f2
         *  to link to the unfiltered list of all members.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trAll()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Semua";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! Put in front of the call graph for a function. */
    Packit Service 50c9f2
        virtual QCString trCallGraph()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Berikut ini bagan fungsi-terpanggil untuk fungsi ini:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.3
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This string is used as the title for the page listing the search
    Packit Service 50c9f2
         *  results.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSearchResultsTitle()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Hasil Pencarian";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This string is put just before listing the search results. The
    Packit Service 50c9f2
         *  text can be different depending on the number of documents found.
    Packit Service 50c9f2
         *  Inside the text you can put the special marker $num to insert
    Packit Service 50c9f2
         *  the number representing the actual number of search results.
    Packit Service 50c9f2
         *  The @a numDocuments parameter can be either 0, 1 or 2, where the
    Packit Service 50c9f2
         *  value 2 represents 2 or more matches. HTML markup is allowed inside
    Packit Service 50c9f2
         *  the returned string.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSearchResults(int numDocuments)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          if (numDocuments==0)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Maaf, tidak ada dokumen yang cocok.";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else if (numDocuments==1)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Ditemukan 1 dokumen yang cocok.";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            return "Ditemukan $num documents yang cocok. "
    Packit Service 50c9f2
                   "Menampilkan hasil terbaik lebih awal.";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This string is put before the list of matched words, for each search
    Packit Service 50c9f2
         *  result. What follows is the list of words that matched the query.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSearchMatches()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Kecocokan:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.8
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in HTML as the title of page with source code for file filename
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSourceFile(QCString& filename)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Kode Sumber:" + filename;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.3.9
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used as the name of the chapter containing the directory
    Packit Service 50c9f2
         *  hierarchy.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirIndex()
    Packit Service 50c9f2
        { return "Hierarki Direktori"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used as the name of the chapter containing the documentation
    Packit Service 50c9f2
         *  of the directories.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirDocumentation()
    Packit Service 50c9f2
        { return "Dokumentasi Direktori"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used as the title of the directory index and also in the
    Packit Service 50c9f2
         *  Quick links of an HTML page, to link to the directory hierarchy.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirectories()
    Packit Service 50c9f2
        { return "Daftar Direktori"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This returns a sentences that introduces the directory hierarchy.
    Packit Service 50c9f2
         *  and the fact that it is sorted alphabetically per level
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirDescription()
    Packit Service 50c9f2
        { return "Struktur direktori ini diurutkan hampir berdasarkan abjad:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This returns the title of a directory page. The name of the
    Packit Service 50c9f2
         *  directory is passed via \a dirName.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDirReference(const char *dirName)
    Packit Service 50c9f2
        { QCString result="Referensi Direktori "; result+=dirName; return result; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This returns the word directory with or without starting capital
    Packit Service 50c9f2
         *  (\a first_capital) and in sigular or plural form (\a singular).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDir(bool first_capital, bool)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Direktori" : "direktori"));
    Packit Service 50c9f2
          //if (singular) result+="y"; else result+="ies";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.4.1
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This text is added to the documentation when the \\overload command
    Packit Service 50c9f2
         *  is used for a overloaded function.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trOverloadText()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Ini adalah fungsi anggota yang di-overload"
    Packit Service 50c9f2
    	" untuk kemudahan. Perbedaannya dengan fungsi di atas"
    Packit Service 50c9f2
    	" hanya pada parameter-parameter yang diterima.";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.4.6
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used to introduce a caller (or called-by) graph */
    Packit Service 50c9f2
        virtual QCString trCallerGraph()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Berikut ini bagan fungsi-pemanggil untuk fungsi ini:";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file/namespace before the list
    Packit Service 50c9f2
         *  of documentation blocks for enumeration values
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trEnumerationValueDocumentation()
    Packit Service 50c9f2
        { return "Dokumentasi Nilai Enumerasi"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.5.4 (mainly for Fortran)
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! header that is put before the list of member subprograms (Fortran). */
    Packit Service 50c9f2
        virtual QCString trMemberFunctionDocumentationFortran()
    Packit Service 50c9f2
        { return "Dokumentasi Fungsi/Subrutin Anggota"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is put above each page as a link to the list of annotated data types (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundListFortran()
    Packit Service 50c9f2
        { return "Daftar Tipe Data"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is put above each page as a link to all members of compounds (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundMembersFortran()
    Packit Service 50c9f2
        { return "Variabel Data"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is an introduction to the annotated compound list (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundListDescriptionFortran()
    Packit Service 50c9f2
        { return "Berikut daftar tipe data, dengan penjelasan singkat:"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is an introduction to the page with all data types (Fortran). */
    Packit Service 50c9f2
        virtual QCString trCompoundMembersDescriptionFortran(bool extractAll)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Berikut daftar semua anggota tipe data ";
    Packit Service 50c9f2
          if (!extractAll)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            result+="terdokumentasi ";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          result+=" dengan tautan ke ";
    Packit Service 50c9f2
          if (!extractAll)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
             result+="dokumentasi struktur data untuk setiap anggota:";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
             result+="tipe data yang memuatnya:";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in LaTeX as the title of the chapter with the
    Packit Service 50c9f2
         * annotated compound index (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trCompoundIndexFortran()
    Packit Service 50c9f2
        { return "Indeks Tipe Data"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in LaTeX as the title of the chapter containing
    Packit Service 50c9f2
         *  the documentation of all data types (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trTypeDocumentation()
    Packit Service 50c9f2
        { return "Dokumentasi Tipe Data"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file as a header before the
    Packit Service 50c9f2
         *  list of (global) subprograms (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSubprograms()
    Packit Service 50c9f2
        { return "Fungsi/Subrutin"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file/namespace before the list
    Packit Service 50c9f2
         *  of documentation blocks for subprograms (Fortran)
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSubprogramDocumentation()
    Packit Service 50c9f2
        { return "Dokumentasi Fungsi/Subrutin"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in the documentation of a file/namespace/group before
    Packit Service 50c9f2
         *  the list of links to documented compounds (Fortran)
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
         virtual QCString trDataTypes()
    Packit Service 50c9f2
        { return "Tipe Data"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used as the title of page containing all the index of all modules (Fortran). */
    Packit Service 50c9f2
        virtual QCString trModulesList()
    Packit Service 50c9f2
        { return "Modules List"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used as an introduction to the modules list (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModulesListDescription(bool extractAll)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Berikut daftar semua modul";
    Packit Service 50c9f2
          if (!extractAll) result+=" terdokumentasi";
    Packit Service 50c9f2
          result+=", dengan penjelasan singkat:";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! used as the title of the HTML page of a module/type (Fortran) */
    Packit Service 50c9f2
        virtual QCString trCompoundReferenceFortran(const char *clName,
    Packit Service 50c9f2
                                        ClassDef::CompoundType compType,
    Packit Service 50c9f2
                                        bool isTemplate)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Referensi ";
    Packit Service 50c9f2
          if (isTemplate) result+="Template ";
    Packit Service 50c9f2
          switch(compType)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            case ClassDef::Class:      result+="Modul "; break;
    Packit Service 50c9f2
            case ClassDef::Struct:     result+="Tipe "; break;
    Packit Service 50c9f2
            case ClassDef::Union:      result+="Union "; break;
    Packit Service 50c9f2
            case ClassDef::Interface:  result+="Antarmuka "; break;
    Packit Service 50c9f2
            case ClassDef::Protocol:   result+="Protokol "; break;
    Packit Service 50c9f2
            case ClassDef::Category:   result+="Kategori "; break;
    Packit Service 50c9f2
            case ClassDef::Exception:  result+="Eksepsi "; break;
    Packit Service 50c9f2
            default: break;
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          result+=(QCString)clName;
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! used as the title of the HTML page of a module (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModuleReference(const char *namespaceName)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Referensi Modul ";
    Packit Service 50c9f2
          result+=namespaceName;
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is put above each page as a link to all members of modules. (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModulesMembers()
    Packit Service 50c9f2
        { return "Anggota Modul"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is an introduction to the page with all modules members (Fortran) */
    Packit Service 50c9f2
        virtual QCString trModulesMemberDescription(bool extractAll)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result="Berikut daftar semua anggota modul ";
    Packit Service 50c9f2
          if (!extractAll) result+="terdokumentasi ";
    Packit Service 50c9f2
          result+="dengan tautan ke ";
    Packit Service 50c9f2
          if (extractAll)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            result+="dokumentasi modul untuk setiap anggota:";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          else
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            result+="modul yang memuatnya:";
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used in LaTeX as the title of the chapter with the
    Packit Service 50c9f2
         *  index of all modules (Fortran).
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trModulesIndex()
    Packit Service 50c9f2
        { return "Indeks Modul"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trModule(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Modul" : "modul"));
    Packit Service 50c9f2
          if (!singular)  result+="-modul";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This is put at the bottom of a module documentation page and is
    Packit Service 50c9f2
         *  followed by a list of files that were used to generate the page.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trGeneratedFromFilesFortran(ClassDef::CompoundType compType,
    Packit Service 50c9f2
            bool single)
    Packit Service 50c9f2
        { // here s is one of " Module", " Struct" or " Union"
    Packit Service 50c9f2
          // single is true implies a single file
    Packit Service 50c9f2
          QCString result=(QCString)"Dokumentasi untuk ";
    Packit Service 50c9f2
          switch(compType)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            case ClassDef::Class:      result+="module"; break;
    Packit Service 50c9f2
            case ClassDef::Struct:     result+="type"; break;
    Packit Service 50c9f2
            case ClassDef::Union:      result+="union"; break;
    Packit Service 50c9f2
            case ClassDef::Interface:  result+="interface"; break;
    Packit Service 50c9f2
            case ClassDef::Protocol:   result+="protocol"; break;
    Packit Service 50c9f2
            case ClassDef::Category:   result+="category"; break;
    Packit Service 50c9f2
            case ClassDef::Exception:  result+="exception"; break;
    Packit Service 50c9f2
            default: break;
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          result+=" ini dibangkitkan dari file";
    Packit Service 50c9f2
          if (!single) result+="-file ";
    Packit Service 50c9f2
    	  result+="berikut:";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trType(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Tipe" : "tipe"));
    Packit Service 50c9f2
          if (!singular)  result+="-tipe";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
        /*! This is used for translation of the word that will possibly
    Packit Service 50c9f2
         *  be followed by a single name or by a list of names
    Packit Service 50c9f2
         *  of the category.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trSubprogram(bool first_capital, bool singular)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          QCString result((first_capital ? "Subprogram" : "subprogram"));
    Packit Service 50c9f2
          if (!singular)  result+="-subprogram";
    Packit Service 50c9f2
          return result;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! C# Type Constraint list */
    Packit Service 50c9f2
        virtual QCString trTypeConstraints()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Batasan Tipe";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.6.0 (mainly for the new search engine)
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! directory relation for \a name */
    Packit Service 50c9f2
        virtual QCString trDirRelation(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Relasi "+QCString(name);
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Loading message shown when loading search results */
    Packit Service 50c9f2
        virtual QCString trLoading()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Memuat...";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Label used for search results in the global namespace */
    Packit Service 50c9f2
        virtual QCString trGlobalNamespace()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Namespace Global";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Message shown while searching */
    Packit Service 50c9f2
        virtual QCString trSearching()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Mencari...";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Text shown when no search results are found */
    Packit Service 50c9f2
        virtual QCString trNoMatches()
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return "Tidak Ditemukan";
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.6.3 (missing items for the directory pages)
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! when clicking a directory dependency label, a page with a
    Packit Service 50c9f2
         *  table is shown. The heading for the first column mentions the
    Packit Service 50c9f2
         *  source file that has a relation to another file.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trFileIn(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return (QCString)"File dimuat dalam "+name;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! when clicking a directory dependency label, a page with a
    Packit Service 50c9f2
         *  table is shown. The heading for the second column mentions the
    Packit Service 50c9f2
         *  destination file that is included.
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trIncludesFileIn(const char *name)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          return (QCString)"Memuat file dalam "+name;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /** Compiles a date string.
    Packit Service 50c9f2
         *  @param year Year in 4 digits
    Packit Service 50c9f2
         *  @param month Month of the year: 1=January
    Packit Service 50c9f2
         *  @param day Day of the Month: 1..31
    Packit Service 50c9f2
         *  @param dayOfWeek Day of the week: 1=Monday..7=Sunday
    Packit Service 50c9f2
         *  @param hour Hour of the day: 0..23
    Packit Service 50c9f2
         *  @param minutes Minutes in the hour: 0..59
    Packit Service 50c9f2
         *  @param seconds Seconds within the minute: 0..59
    Packit Service 50c9f2
         *  @param includeTime Include time in the result string?
    Packit Service 50c9f2
         */
    Packit Service 50c9f2
        virtual QCString trDateTime(int year,int month,int day,int dayOfWeek,
    Packit Service 50c9f2
                                    int hour,int minutes,int seconds,
    Packit Service 50c9f2
                                    bool includeTime)
    Packit Service 50c9f2
        {
    Packit Service 50c9f2
          static const char *days[]   = { "Senin","Selasa","Rabu","Kamis","Jumat","Sabtu","Minggu" };
    Packit Service 50c9f2
          static const char *months[] = { "Januari","Februari","Maret","April","Mei","Juni","Juli","Agustus","September","Oktober","November","Desember" };
    Packit Service 50c9f2
          QCString sdate;
    Packit Service 50c9f2
          sdate.sprintf("%s %d %s %d",days[dayOfWeek-1],day,months[month-1],year);
    Packit Service 50c9f2
          if (includeTime)
    Packit Service 50c9f2
          {
    Packit Service 50c9f2
            QCString stime;
    Packit Service 50c9f2
            stime.sprintf(" %.2d:%.2d:%.2d",hour,minutes,seconds);
    Packit Service 50c9f2
            sdate+=stime;
    Packit Service 50c9f2
          }
    Packit Service 50c9f2
          return sdate;
    Packit Service 50c9f2
        }
    Packit Service 50c9f2
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    // new since 1.7.5
    Packit Service 50c9f2
    //////////////////////////////////////////////////////////////////////////
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Header for the page with bibliographic citations */
    Packit Service 50c9f2
        virtual QCString trCiteReferences()
    Packit Service 50c9f2
        { return "Daftar Pustaka"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Text for copyright paragraph */
    Packit Service 50c9f2
        virtual QCString trCopyright()
    Packit Service 50c9f2
        { return "Hak Cipta"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
        /*! Header for the graph showing the directory dependencies */
    Packit Service 50c9f2
        virtual QCString trDirDepGraph(const char *name)
    Packit Service 50c9f2
        { return QCString("Bagan dependensi directori untuk ")+name+":"; }
    Packit Service 50c9f2
    Packit Service 50c9f2
    };
    Packit Service 50c9f2
    Packit Service 50c9f2
    #endif