Edgewall Software

Changes between Version 8 and Version 9 of TranslationDe/WikiFormatting


Ignore:
Timestamp:
Dec 29, 2010, 9:10:49 PM (13 years ago)
Author:
Steffen Hoffmann
Comment:

finishing cheat sheet and 1st pass of German translation for related content: processors, comments, miscellaneous

Legend:

Unmodified
Added
Removed
Modified
  • TranslationDe/WikiFormatting

    v8 v9  
    197197|| `[[Image?]]` ||  ''(Hilfe zum Image-Makro)''  ||
    198198|-----------------------------------------------------------
    199 ||= [#Processors Processors] =||\
     199||= [#Processors Prozessoren] =||\
    200200{{{#!td
    201201 {{{
    202202 {{{
    203203 #!div style="font-size: 80%"
    204  Code highlighting:
     204 Programmcode-Hervorhebungen:
    205205   {{{#!python
    206    hello = lambda: "world"
     206   hallo = lambda: "Welt"
    207207   }}}
    208208 }}}
     
    212212 {{{
    213213 #!div style="font-size: 80%"
    214  Code highlighting:
     214 Programmcode-Hervorhebungen:
    215215   {{{#!python
    216    hello = lambda: "world"
     216   hallo = lambda: "Welt"
    217217   }}}
    218218 }}}
    219219}}}
    220220|-----------------------------------------------------------
    221 ||= [#Comments Comments] =||\
     221||= [#Comments Kommentare] =||\
    222222{{{#!td
    223223 {{{
    224224 {{{#!comment
    225  Note to Editors: ...
     225 Anmerkungen für Bearbeiter: ...
    226226 }}}
    227227 }}}
     
    229229{{{#!td style="padding-left: 2em"
    230230 {{{#!comment
    231  Note to Editors: ...
    232  }}}
    233 }}}
    234 |-----------------------------------------------------------
    235 ||= [#Miscellaneous Miscellaneous] =||\
    236 {{{#!td
    237  {{{
    238  Line [[br]] break
    239  Line \\ break
     231 Anmerkungen für Bearbeiter: ...
     232 }}}
     233}}}
     234|-----------------------------------------------------------
     235||= [#Miscellaneous Verschiedenes] =||\
     236{{{#!td
     237 {{{
     238 Zeilen- [[br]] umbruch
     239 Zeilen- \\ umbruch
    240240 ----
    241241 }}}
    242242}}}
    243243{{{#!td style="padding-left: 2em"
    244 Line [[br]] break
    245 Line \\ break
     244Zeilen- [[br]] umbruch
     245Zeilen- \\ umbruch
    246246----
    247247}}}
     
    804804
    805805
    806 == Processors ==
    807 
    808 Trac supports alternative markup formats using WikiProcessors. For example, processors are used to write pages in
    809 [wiki:WikiRestructuredText reStructuredText] or [wiki:WikiHtml HTML].
    810 
    811 ||= Wiki Markup =||= Display =||
     806== Prozessoren == #Processors
     807
     808Trac unterstützt alternative Textbeschreibungsformate mit Hilfe von [WikiProcessors WikiProzessoren]. Beispielsweise werden Prozessoren genutzt, um Seiten in
     809[wiki:WikiRestructuredText reStructuredText] oder [wiki:WikiHtml HTML] zu beschreiben.
     810
     811||= Wiki-Formatierung =||= Darstellung =||
    812812|--------------------------------------------------------
    813813{{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%"
    814814
    815    [=#Processors-example-html Example 1:] HTML
     815   [=#Processors-example-html Beispiel 1:] HTML
    816816
    817817}}}
     
    822822  #!html
    823823  <h1 style="text-align: right; color: blue">
    824    HTML Test
     824   HTML-Test
    825825  </h1>
    826826  }}}
     
    831831{{{
    832832#!html
    833 <h1 style="text-align: right; color: blue">HTML Test</h1>
     833<h1 style="text-align: right; color: blue">HTML-Test</h1>
    834834}}}
    835835
     
    838838{{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%"
    839839
    840    [=#Processors-example-highlight Example 2:] Code Highlighting
     840   [=#Processors-example-highlight Beispiel 2:] Programmcode-Hervorhebungen
    841841
    842842}}}
     
    849849 
    850850      def __init__(self):
    851           print "Hello World"
     851          print "Hallo Welt"
    852852  if __name__ == '__main__':
    853853     Test()
     
    862862class Test:
    863863    def __init__(self):
    864         print "Hello World"
     864        print "Hallo Welt"
    865865if __name__ == '__main__':
    866866   Test()
     
    871871{{{#!td align="center" colspan=2 style="border: 0px; font-size: 90%"
    872872
    873        [=#Processors-example-tables Example 3:] Complex Tables
     873       [=#Processors-example-tables Beispiel 3:] Komplex aufgebaute Tabellen
    874874
    875875}}}
     
    878878  {{{
    879879  {{{#!th rowspan=4 align=justify
    880   With the `#td` and `#th` processors,
    881   table cells can contain any content:
     880  Bei den `#td`- und `#th`-Prozessoren
     881  dürfen Tabellenzellen beliebigen Inhalt haben:
    882882  }}}
    883883  |----------------
    884884  {{{#!td
    885     - lists
    886     - embedded tables
    887     - simple multiline content
     885    - Listen
     886    - eingebettete Tabellen
     887    - einfache mehrzeilige Inhalte
    888888  }}}
    889889  |----------------
    890890  {{{#!td
    891   As processors can be easily nested,
    892   so can be tables:
     891  So wie Prozessoren verschachtelt werden können,
     892  können dies auch Tabellen:
    893893    {{{#!th
    894     Example:
     894    Beispiel:
    895895    }}}
    896896    {{{#!td style="background: #eef"
    897     || must be at the third level now... ||
     897    || muss nun die dritte Ebene erreicht haben ... ||
    898898    }}}
    899899  }}}
    900900  |----------------
    901901  {{{#!td
    902   Even when you don't have complex markup,
    903   this form of table cells can be convenient
    904   to write content on multiple lines.
     902  Selbst wenn Sie keine aufwendige Beschreibung haben,
     903  kann diese Form von Tabellenzellen angenehm sein,
     904  um mehrzeilige Inhalte zu notieren.
    905905  }}}
    906906  }}}
     
    910910
    911911  {{{#!th rowspan=4 align=justify
    912   With the `#td` and `#th` processors,
    913   table cells can contain any content:
     912  Bei den `#td`- und `#th`-Prozessoren
     913  dürfen Tabellenzellen beliebigen Inhalt haben:
    914914  }}}
    915915  |----------------
    916916  {{{#!td
    917     - lists
    918     - embedded tables
    919     - simple multiline content
     917    - Listen
     918    - eingebettete Tabellen
     919    - einfache mehrzeilige Inhalte
    920920  }}}
    921921  |----------------
    922922  {{{#!td
    923   As processors can be easily nested,
    924   so can be tables:
     923  So wie Prozessoren verschachtelt werden können,
     924  können dies auch Tabellen:
    925925    {{{#!th
    926     Example:
     926    Beispiel:
    927927    }}}
    928928    {{{#!td style="background: #eef"
    929     || must be at the third level now... ||
     929    || muss nun die dritte Ebene erreicht haben ... ||
    930930    }}}
    931931  }}}
    932932  |----------------
    933933  {{{#!td
    934   Even when you don't have complex markup,
    935   this form of table cells can be convenient
    936   to write content on multiple lines.
    937   }}}
    938 
    939 }}}
    940 
    941 See WikiProcessors for more information.
    942 
    943 
    944 == Comments ==
    945 
    946 Comments can be added to the plain text. These will not be rendered and will not display in any other format than plain text.
    947 
    948 ||= Wiki Markup =||= Display =||
    949 {{{#!td
    950   {{{
    951   Nothing to
     934  Selbst wenn Sie keine aufwendige Beschreibung haben,
     935  kann diese Form von Tabellenzellen angenehm sein,
     936  um mehrzeilige Inhalte zu notieren.
     937  }}}
     938
     939}}}
     940
     941Für weitere Informationen beachten Sie die Seite WikiProcessors.
     942
     943
     944== Kommentare == #Comments
     945
     946Zum einfachen Text können Kommentare hinzugefügt werden. Diese werden nicht dargestellt und in keinem anderen Format als im Beschreibungstext selbst angezeigt.
     947
     948||= Wiki-Formatierung =||= Darstellung =||
     949{{{#!td
     950  {{{
     951  Nichts
    952952  {{{
    953953  #!comment
    954   Your comment for editors here
    955   }}}
    956   see ;-)
    957   }}}
    958 }}}
    959 {{{#!td
    960   Nothing to
     954  Ihre Anmerkungen für Bearbeiter an dieser Stelle
     955  }}}
     956  zu sehen ;-)
     957  }}}
     958}}}
     959{{{#!td
     960  Nichts
    961961  {{{
    962962  #!comment
    963   Your comment for editors here
    964   }}}
    965   see ;-)
    966 }}}
    967 
    968 == Miscellaneous ==
    969 
    970 An horizontal line can be used to separated different parts of your page:
    971 
    972 ||= Wiki Markup =||= Display =||
    973 {{{#!td
    974   {{{
    975   Four or more dashes will be replaced
    976   by an horizontal line (<HR>)
     963  Ihre Anmerkungen für Bearbeiter an dieser Stelle
     964  }}}
     965  zu sehen ;-)
     966}}}
     967
     968== Verschiedenes == #Miscellaneous
     969
     970Zum Trennen verschiedener Teile Ihrer Seite kann eine horizontale Linie genutzt werden:
     971
     972||= Wiki-Formatierung =||= Darstellung =||
     973{{{#!td
     974  {{{
     975  Vier oder mehr Bindestriche werden
     976  durch eine horizontale Linie ersetzt (<HR>)
    977977  ----
    978   See?
    979   }}}
    980 }}}
    981 {{{#!td
    982 Four or more dashes will be replaced
    983 by an horizontal line (<HR>)
     978  Sehen Sie?
     979  }}}
     980}}}
     981{{{#!td
     982Vier oder mehr Bindestriche werden
     983durch eine horizontale Linie ersetzt (<HR>)
    984984----
    985 See?
     985Sehen Sie?
    986986}}}
    987987|----------------------------------
    988988{{{#!td
    989989  {{{
    990   "macro" style [[br]] line break
    991   }}}
    992 }}}
    993 {{{#!td
    994 "macro" style [[br]] line break
     990  makro-artiger [[br]] Zeilenumbruch
     991  }}}
     992}}}
     993{{{#!td
     994makro-artiger [[br]] Zeilenumbruch
    995995}}}
    996996|----------------------------------
    997997{{{#!td
    998998  {{{
    999   !WikiCreole style \\ line\\break
    1000   }}}
    1001 }}}
    1002 {{{#!td
    1003 !WikiCreole style \\ line\\break
    1004 }}}
    1005 
     999  Zeilenumbruch\\im \\ !WikiCreole-Stil
     1000  }}}
     1001}}}
     1002{{{#!td
     1003Zeilenumbruch\\im \\ !WikiCreole-Stil
     1004}}}