Advertisement
Guest User

Untitled

a guest
Nov 14th, 2019
441
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.44 KB | None | 0 0
  1. function german_core_translation() {
  2.  
  3.     // initialize $s locally when it appears in the text strings
  4.     $s = '';
  5.     $strings = array(
  6.         //  Überschrift über Kommentareingabe
  7.         //  wp-includes/theme-compat/comments.php:75
  8.         "Leave a Reply"
  9.         => "Schreiben Sie einen Kommentar:",
  10.  
  11.         // wp-includes/comment-template.php:2123
  12.         // Steht als Hinweis unter der Überschrift
  13.         "Your email address will not be published."
  14.         => "Ihre E-Mail-Adresse wird nicht veröffentlicht.",
  15.  
  16.         // wp-includes/class-walker-comment.php:335
  17.         // Nachdem ein Kommentar abgegeben wurde, sieht der Kommentator:
  18.         "Your comment is awaiting moderation."
  19.         => "Ihr Kommentar wartet auf Freischaltung.",
  20.  
  21.         // wp-includes/comment.php:2764
  22.         "Sorry, you must be logged in to post a comment."
  23.         => "Um einen Kommentar zu hinterlassen, müssen Sie angemeldet sein.",
  24.  
  25.         // wp-includes/comment-template.php:1683
  26.         "Log in to leave a Comment"
  27.         => "Melden Sie sich an, um einen Kommentar zu hinterlassen",
  28.  
  29.         // wp-includes/theme-compat/comments-popup.php:107
  30.         "Sorry, the comment form is closed at this time."
  31.         => "Das Kommentarformular ist für diesen Beitrag geschlossen.",
  32.  
  33.         // comments-popup.php:68
  34.         "Leave a comment"
  35.         => "Schreiben Sie einen Kommentar",
  36.  
  37.         // wp-includes/theme-compat/comments-popup.php:118
  38.         "Sorry, no posts matched your criteria."
  39.         => "Es passt leider kein Beitrag zu Ihrer Suche.",
  40.  
  41.         // wp-includes/theme-compat/comments-popup.php:91
  42.         "Your Comment"
  43.         => "Ihr Kommentar",
  44.  
  45.         // wp-includes/comment-template.php:1839 wp-includes/comment-template.php:2131
  46.         // wp-includes/theme-compat/comments.php:75
  47.         "Leave a Reply to %s"
  48.         => "Schreiben Sie einen Kommentar zu %s",
  49.         // wp-includes/class-wp-xmlrpc-server.php:5751
  50.         "You do not have permission to upload files."
  51.         => "Sie haben nicht die erforderlichen Rechte, um Dateien hochzuladen.",
  52.         // wp-includes/comment-template.php:2137
  53.         "Post Comment"
  54.         => "Kommentar senden",
  55.  
  56.         'comment_notes_before'
  57.         => "Ihre E-Mail-Adresse wird nicht veröffentlicht.",
  58.  
  59.         'title_reply'
  60.         => "Schreiben Sie einen Kommentar:",
  61.  
  62.         'reply_text'
  63.         => "Schreiben Sie einen Kommentar:",
  64.  
  65.     );
  66.  
  67.     return $strings;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement