[gnome-devel-docs] Update Spanish translation



commit 33beec7bfb87efeb881b7d833f7197553a670095
Author: Daniel Mustieles <daniel mustieles gmail com>
Date:   Thu Aug 31 11:16:26 2017 +0000

    Update Spanish translation

 platform-demos/es/es.po |  113 +---------------------------------------------
 1 files changed, 3 insertions(+), 110 deletions(-)
---
diff --git a/platform-demos/es/es.po b/platform-demos/es/es.po
index e2dcef3..f715930 100644
--- a/platform-demos/es/es.po
+++ b/platform-demos/es/es.po
@@ -10,8 +10,8 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: gnome-devel-docs.platform-demos.master\n"
-"POT-Creation-Date: 2017-08-01 11:29+0000\n"
-"PO-Revision-Date: 2017-08-03 12:49+0200\n"
+"POT-Creation-Date: 2017-08-05 10:04+0000\n"
+"PO-Revision-Date: 2017-08-31 13:14+0200\n"
 "Last-Translator: Daniel Mustieles <daniel mustieles gmail com>\n"
 "Language-Team: es <gnome-es-list gnome org>\n"
 "Language: \n"
@@ -12197,12 +12197,6 @@ msgstr ""
 
 #. (itstool) path: item/p
 #: C/entry.py.page:47
-#| msgid ""
-#| "If we set <code>set_visibility(False)</code> the characters in the entry "
-#| "are displayed as the invisible char. This is the best available in the "
-#| "current font, but it can be changed with <code>set_invisible_char(ch)</"
-#| "code>, where <code>ch</code> is a Unicode charcater. The latter method is "
-#| "reversed by <code>unset_invisbile_char()</code>."
 msgid ""
 "If we set <code>set_visibility(False)</code> the characters in the entry are "
 "displayed as the invisible char. This is the best available in the current "
@@ -23217,11 +23211,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
-#| 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://";
@@ -25960,7 +25949,7 @@ msgstr ""
 #. (itstool) path: section/title
 #: C/index.page:36
 msgid "Pick a Language"
-msgstr "Elija un idioma"
+msgstr "Elija un lenguaje"
 
 #. (itstool) path: section/p
 #: C/index.page:37
@@ -26438,12 +26427,6 @@ msgstr ""
 #. (itstool) path: item/code
 #: C/label.py.page:92
 #, 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;.\")"
 msgid ""
 "\n"
 "label.set_markup(\"Text can be &lt;small&gt;small&lt;/small&gt;, &lt;big&gt;big&lt;/big&gt;, \"\n"
@@ -27372,10 +27355,6 @@ msgstr ""
 
 #. (itstool) path: item/p
 #: C/magic-mirror.vala.page:137
-#| 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 "
@@ -33725,10 +33704,6 @@ msgstr ""
 
 #. (itstool) path: item/p
 #: C/model-view-controller.py.page:110
-#| 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 "
@@ -40873,65 +40848,6 @@ msgstr "Una imagen en una ventana con barras de desplazamiento."
 #. (itstool) path: page/code
 #: C/scrolledwindow.c.page:28
 #, 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"
 msgid ""
 "\n"
 "#include &lt;gtk/gtk.h&gt;\n"
@@ -45767,14 +45683,6 @@ msgstr "Cadenas en Python 3"
 
 #. (itstool) path: section/p
 #: C/strings.py.page:64
-#| 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 "
@@ -57721,17 +57629,6 @@ msgstr ""
 
 #. (itstool) path: section/p
 #: C/weatherAppMain.js.page:91
-#| 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 "
@@ -58378,10 +58275,6 @@ msgstr "El bloque do_subst son partes que deben estar donde están"
 
 #. (itstool) path: section/p
 #: C/weatherAutotools.js.page:129
-#| 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 "


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