[gnome-devel-docs] Updated Czech translation



commit 30158274aa3ae484c3bd6426eda37095789d7253
Author: Marek Cernocky <marek_cernocky conel cz>
Date:   Sun Aug 6 10:16:50 2017 +0200

    Updated Czech translation

 platform-demos/cs/cs.po         |  117 ++-------------------------------------
 programming-guidelines/cs/cs.po |    7 --
 2 files changed, 5 insertions(+), 119 deletions(-)
---
diff --git a/platform-demos/cs/cs.po b/platform-demos/cs/cs.po
index 3dd79f5..79b060c 100644
--- a/platform-demos/cs/cs.po
+++ b/platform-demos/cs/cs.po
@@ -7,8 +7,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: gnome-devel-docs\n"
-"POT-Creation-Date: 2017-08-01 11:29+0000\n"
-"PO-Revision-Date: 2017-08-05 16:22+0200\n"
+"POT-Creation-Date: 2017-08-05 14:26+0000\n"
+"PO-Revision-Date: 2017-08-06 10:15+0200\n"
 "Last-Translator: Marek Černocký <marek manet cz>\n"
 "Language-Team: Czech <gnome-cs-list gnome org>\n"
 "Language: cs\n"
@@ -23107,12 +23107,6 @@ msgstr ""
 #: C/image-viewer.c.page:245 C/image-viewer.cpp.page:233
 #: C/image-viewer.js.page:333 C/image-viewer.py.page:247
 #: C/image-viewer.vala.page:306
-#, fuzzy
-#| msgid ""
-#| "You can use <link href=\"http://library.gnome.org/devel/gio/unstable/";
-#| "\">GIO</link> to handle network file tranfers and the like, and <link "
-#| "href=\"http://library.gnome.org/devel/gnome-scan/unstable/\";>GNOME Scan</"
-#| "link> to handle scanning."
 msgid ""
 "You can use <link href=\"http://library.gnome.org/devel/gio/unstable/\";>GIO</"
 "link> to handle network file transfers and the like, and <link href=\"http://";
@@ -26284,13 +26278,7 @@ msgstr ""
 
 #. (itstool) path: item/code
 #: C/label.py.page:92
-#, fuzzy, no-wrap
-#| msgid ""
-#| "\n"
-#| "label.set_markup(\"Text can be &lt;small&gt;small&lt;/small&gt;, &lt;big&gt;big&lt;/big&gt;, \"\n"
-#| "                 \"&lt;b&gt;bold&lt;/b&gt;, &lt;i&gt;italic&lt;/i&gt; and even point to somewhere \"\n"
-#| "                 \"in the &lt;a href=\\\"http://www.gtk.org\\\"; \"\n"
-#| "                 \"title=\\\"Click to find out more\\\"&gt;internets&lt;/a&gt;.\")"
+#, no-wrap
 msgid ""
 "\n"
 "label.set_markup(\"Text can be &lt;small&gt;small&lt;/small&gt;, &lt;big&gt;big&lt;/big&gt;, \"\n"
@@ -27217,11 +27205,6 @@ msgstr ""
 
 #. (itstool) path: item/p
 #: C/magic-mirror.vala.page:137
-#, fuzzy
-#| msgid ""
-#| "Of course it is also possible to integrate the video more tighly into "
-#| "other windows but that is an advanced topic that includes some details of "
-#| "the X Window System we will omit here."
 msgid ""
 "Of course it is also possible to integrate the video more tightly into other "
 "windows but that is an advanced topic that includes some details of the X "
@@ -33556,11 +33539,6 @@ msgstr ""
 
 #. (itstool) path: item/p
 #: C/model-view-controller.py.page:110
-#, fuzzy
-#| msgid ""
-#| "<code>set_wrap_width(width)</code> sets the wrap width of this combo box "
-#| "to be <code>width</code>. The wrap width is basically the preferred "
-#| "number of columns when you want the popup to be layed out in a grid."
 msgid ""
 "<code>set_wrap_width(width)</code> sets the wrap width of this combo box to "
 "be <code>width</code>. The wrap width is basically the preferred number of "
@@ -40669,66 +40647,7 @@ msgstr "Obrázek v okně s posuvníky."
 
 #. (itstool) path: page/code
 #: C/scrolledwindow.c.page:28
-#, fuzzy, no-wrap
-#| msgid ""
-#| "\n"
-#| "#include &lt;gtk/gtk.h&gt;\n"
-#| "\n"
-#| "\n"
-#| "\n"
-#| "static void\n"
-#| "activate (GtkApplication *app,\n"
-#| "          gpointer        user_data)\n"
-#| "{\n"
-#| "  /* Declare variables */\n"
-#| "  GtkWidget *window;\n"
-#| "  GtkWidget *scrolled_window;\n"
-#| "  GtkWidget *image;\n"
-#| "\n"
-#| "  /* Create a window with a title, and a default size */\n"
-#| "  window = gtk_application_window_new (app);\n"
-#| "  gtk_window_set_title (GTK_WINDOW (window), \"ScrolledWindow Example\");\n"
-#| "  gtk_window_set_default_size (GTK_WINDOW (window), 220, 200);\n"
-#| "\n"
-#| "  /* Create the scrolled window. Usually NULL is passed for both parameters so\n"
-#| "   * that it creates the horizontal/vertical adjustments automatically. Setting\n"
-#| "   * the scrollbar policy to automatic allows the scrollbars to only show up\n"
-#| "   * when needed.\n"
-#| "   */\n"
-#| "  scrolled_window = gtk_scrolled_window_new (NULL, NULL);\n"
-#| "  /* Set the border width */\n"
-#| "  gtk_container_set_border_width (GTK_CONTAINER (scrolled_window), 10);\n"
-#| "  /* Extract our desired image from a file that we have */\n"
-#| "  image = gtk_image_new_from_file (\"gnome-image.png\");\n"
-#| "  /* And add it to the scrolled window */\n"
-#| "  gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrolled_window), image);\n"
-#| "  /* Set the policy of the horizontal and vertical scrollbars to automatic.\n"
-#| "   * What this means is that the scrollbars are only present if needed.\n"
-#| "   */\n"
-#| "  gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),\n"
-#| "                                  GTK_POLICY_AUTOMATIC,\n"
-#| "                                  GTK_POLICY_AUTOMATIC);\n"
-#| "\n"
-#| "  gtk_container_add (GTK_CONTAINER (window), scrolled_window);\n"
-#| "\n"
-#| "  gtk_widget_show_all (window);\n"
-#| "}\n"
-#| "\n"
-#| "\n"
-#| "\n"
-#| "int\n"
-#| "main (int argc, char **argv)\n"
-#| "{\n"
-#| "  GtkApplication *app;\n"
-#| "  int status;\n"
-#| "\n"
-#| "  app = gtk_application_new (\"org.gtk.example\", G_APPLICATION_FLAGS_NONE);\n"
-#| "  g_signal_connect (app, \"activate\", G_CALLBACK (activate), NULL);\n"
-#| "  status = g_application_run (G_APPLICATION (app), argc, argv);\n"
-#| "  g_object_unref (app);\n"
-#| "\n"
-#| "  return status;\n"
-#| "}\n"
+#, no-wrap
 msgid ""
 "\n"
 "#include &lt;gtk/gtk.h&gt;\n"
@@ -40819,7 +40738,7 @@ msgstr ""
 "  /* Získá ze souboru námi požadovaný obrázek */\n"
 "  image = gtk_image_new_from_file (\"gnome-image.png\");\n"
 "  /* A přidá jej do okna s posuvníky */\n"
-"  gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrolled_window), image);\n"
+"  gtk_container_add (GTK_CONTAINER (scrolled_window), image);\n"
 "  /* Nastaví pravidlo pro vodorovný a svislý posuvník na automatiku.\n"
 "   * Což znamená, že se posuvníky zobrazí, jen když je zapotřebí.\n"
 "   */\n"
@@ -45541,15 +45460,6 @@ msgstr "Řetězce v jazyce Python 3"
 
 #. (itstool) path: section/p
 #: C/strings.py.page:64
-#, fuzzy
-#| msgid ""
-#| "Since Python 3.0, all strings are stored as Unicode in an instance of the "
-#| "<code>str</code> type. Encoded strings on the other hand are represented "
-#| "as binary data in the form of instances of the bytes type. "
-#| "Conceptionally, <code>str</code> refers to text, whereas bytes refers to "
-#| "data. Use <code>encode()</code> to go from <code>str</code> to "
-#| "<code>bytes</code>, and <code>decode()</code> to go from <code>bytes</"
-#| "code> to <code>str</code>."
 msgid ""
 "Since Python 3.0, all strings are stored as Unicode in an instance of the "
 "<code>str</code> type. Encoded strings on the other hand are represented as "
@@ -57478,18 +57388,6 @@ msgstr ""
 
 #. (itstool) path: section/p
 #: C/weatherAppMain.js.page:91
-#, fuzzy
-#| msgid ""
-#| "In this section we create the grid we are going to use for positioning "
-#| "the widgets. All the buttons, labels and entrys are initialized and "
-#| "placed on the grid. As seen from the placing of the different widgets, "
-#| "they don't need to be related only to one widget. At this point some of "
-#| "the labels don't have any content. The content for those widgets is "
-#| "applied later. If you run the application at this stage, you have the UI "
-#| "ready, but the widgets are not connected to anything. For this we need to "
-#| "first build the weather searching local library, and then get the "
-#| "information we need asynchronously. When we have our local library ready "
-#| "we can connect it to the necessary widgets."
 msgid ""
 "In this section we create the grid we are going to use for positioning the "
 "widgets. All the buttons, labels and entries are initialized and placed on "
@@ -58141,11 +58039,6 @@ msgstr ""
 
 #. (itstool) path: section/p
 #: C/weatherAutotools.js.page:129
-#, fuzzy
-#| msgid ""
-#| "after the comment #icons in the application there are all the icons that "
-#| "are used by the program. For them to be useful you need to install the "
-#| "icons in correct places and that is done byt the install-icons: bit"
 msgid ""
 "after the comment #icons in the application there are all the icons that are "
 "used by the program. For them to be useful you need to install the icons in "
diff --git a/programming-guidelines/cs/cs.po b/programming-guidelines/cs/cs.po
index b955b46..42e120a 100644
--- a/programming-guidelines/cs/cs.po
+++ b/programming-guidelines/cs/cs.po
@@ -6046,13 +6046,6 @@ msgstr ""
 
 #. (itstool) path: section/p
 #: C/main-contexts.page:827
-#, fuzzy
-#| msgid ""
-#| "If that’s put at the top of each function, any assertion failure will "
-#| "highlight a case where a function has been called from the wrong thread. "
-#| "It is much easier to write these assertions when initially developing "
-#| "code, rather than debuging race conditions which can easily result from a "
-#| "function being called in the wrong thread."
 msgid ""
 "If that’s put at the top of each function, any assertion failure will "
 "highlight a case where a function has been called from the wrong thread. It "


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]