[gnome-devel-docs] Updated Spanish translation



commit f94b13d00bd9d083997ddbccd199c1718a4056d6
Author: Daniel Mustieles <daniel mustieles gmail com>
Date:   Fri Sep 4 12:57:29 2020 +0200

    Updated Spanish translation

 platform-demos/es/es.po | 178 ++----------------------------------------------
 1 file changed, 5 insertions(+), 173 deletions(-)
---
diff --git a/platform-demos/es/es.po b/platform-demos/es/es.po
index cd8540d9..2df0f689 100644
--- a/platform-demos/es/es.po
+++ b/platform-demos/es/es.po
@@ -10,7 +10,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: gnome-devel-docs.platform-demos.master\n"
-"POT-Creation-Date: 2020-06-12 10:34+0000\n"
+"POT-Creation-Date: 2020-08-25 11:42+0000\n"
 "PO-Revision-Date: 2020-08-25 13:30+0200\n"
 "Last-Translator: Daniel Mustieles <daniel mustieles gmail com>\n"
 "Language-Team: Spanish - Spain <gnome-es-list gnome org>\n"
@@ -113,7 +113,7 @@ msgstr ""
 #. (itstool) path: page/title
 #: C/02_welcome_to_the_grid.js.page:23
 msgid "2. Welcome to the Grid"
-msgstr "2. Bienvenido a la rejilla"
+msgstr "2. Bienvenido/a a la rejilla"
 
 #. (itstool) path: synopsis/p
 #: C/02_welcome_to_the_grid.js.page:25
@@ -39160,164 +39160,6 @@ msgstr "Desplace las escalas."
 #. (itstool) path: page/code
 #: C/scale.c.page:28
 #, no-wrap
-#| msgid ""
-#| "\n"
-#| "#include &lt;gtk/gtk.h&gt;\n"
-#| "\n"
-#| "\n"
-#| "\n"
-#| "/* This is the callback function. \n"
-#| " * It is a handler function which reacts to the signal. \n"
-#| " * In this case, it will notify the user the value of their scale as a label.\n"
-#| " */\n"
-#| "static void\n"
-#| "hscale_moved (GtkRange *range,\n"
-#| "              gpointer  user_data)\n"
-#| "{\n"
-#| "   GtkWidget *label = user_data;\n"
-#| "\n"
-#| "   /* Get the value of the range, and convert it into a string which will be\n"
-#| "    * used as a new label for the horizontal scale.\n"
-#| "    * %.0f - stands for a double that will have 0 decimal places.\n"
-#| "    */\n"
-#| "   gdouble pos = gtk_range_get_value (range);\n"
-#| "   /* Note: Using g_strdup_printf returns a string that must be freed. \n"
-#| "    * (In which is done below)\n"
-#| "    */\n"
-#| "   gchar *str = g_strdup_printf (\"Horizontal scale is %.0f\", pos);\n"
-#| "   gtk_label_set_text (GTK_LABEL (label), str);\n"
-#| "\n"
-#| "   g_free(str);\n"
-#| "}\n"
-#| "\n"
-#| "\n"
-#| "\n"
-#| "/* This is the second callback function. It is a handler function which \n"
-#| " * reacts to the signal. It does the same thing as the function above, except with\n"
-#| " * the vertical scale.\n"
-#| " */\n"
-#| "vscale_moved (GtkRange *range,\n"
-#| "              gpointer  user_data)\n"
-#| "{\n"
-#| "   GtkWidget *label = user_data;\n"
-#| "   \n"
-#| "   gdouble pos = gtk_range_get_value (range);\n"
-#| "   /* %.1f - stands for a double that will have 1 decimal place */\n"
-#| "   gchar *str = g_strdup_printf (\"Vertical scale is %.1f\", pos);\n"
-#| "   gtk_label_set_text (GTK_LABEL (label), str);\n"
-#| "\n"
-#| "   \n"
-#| "   g_free (str);\n"
-#| "}\n"
-#| "\n"
-#| "\n"
-#| "\n"
-#| "static void\n"
-#| "activate (GtkApplication *app,\n"
-#| "          gpointer        user_data)\n"
-#| "{\n"
-#| "  /* Declare variables */\n"
-#| "  GtkWidget *window;\n"
-#| "  GtkWidget *h_scale;\n"
-#| "  GtkWidget *v_scale;\n"
-#| "  GtkWidget *hlabel;\n"
-#| "  GtkWidget *vlabel;\n"
-#| "  GtkWidget *grid;\n"
-#| "\n"
-#| "  /* The Adjustment object represents a value \n"
-#| "   * which has an associated lower and upper bound.\n"
-#| "   */\n"
-#| "  GtkAdjustment *hadjustment;\n"
-#| "  GtkAdjustment *vadjustment;\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), \"Scale Example\");\n"
-#| "  gtk_window_set_default_size (GTK_WINDOW (window), 400, 300);\n"
-#| "  gtk_container_set_border_width (GTK_CONTAINER (window), 5);\n"
-#| "\n"
-#| "  /* Two labels to be shown in the window */\n"
-#| "  hlabel = gtk_label_new (\"Move the scale handle...\");\n"
-#| "  vlabel = gtk_label_new (\"Move the scale handle...\");\n"
-#| "\n"
-#| "   \n"
-#| "  /* gtk_adjustment_new takes six parameters, three of which \n"
-#| "   * may be difficult to understand:\n"
-#| "   * step increment- move the handle with the arrow keys on your keyboard to see.\n"
-#| "   * page increment - move the handle by clicking away from it \n"
-#| "   * on the scale to see.\n"
-#| "   * page size - not used here.\n"
-#| "   */\n"
-#| "  hadjustment = gtk_adjustment_new (0, 0, 100, 5, 10, 0);\n"
-#| "  vadjustment = gtk_adjustment_new (50, 0, 100, 5, 10, 0); \n"
-#| "\n"
-#| "  /* Create the Horizontal scale, making sure the \n"
-#| "   * digits used have no decimals.\n"
-#| "   */\n"
-#| "  h_scale = gtk_scale_new (GTK_ORIENTATION_HORIZONTAL, hadjustment);\n"
-#| "  gtk_scale_set_digits (GTK_SCALE (h_scale), 0); \n"
-#| "\n"
-#| "  /* Allow it to expand horizontally (if there's space), and \n"
-#| "   * set the vertical alignment\n"
-#| "   */\n"
-#| "  gtk_widget_set_hexpand (h_scale, TRUE);\n"
-#| "  gtk_widget_set_valign (h_scale, GTK_ALIGN_START);\n"
-#| "  \n"
-#| "  /* Connecting the \"value-changed\" signal for the horizontal scale \n"
-#| "   * to the appropriate callback function. \n"
-#| "   * take note that GtkRange is part of GtkScale's Object Hierarchy.\n"
-#| "   */\n"
-#| "  g_signal_connect (h_scale, \n"
-#| "                    \"value-changed\", \n"
-#| "                    G_CALLBACK (hscale_moved), \n"
-#| "                    hlabel);\n"
-#| "\n"
-#| "\n"
-#| "\n"
-#| "  /* Create the Vertical scale. This time, we will see what happens \n"
-#| "   * when the digits aren't initially set.\n"
-#| "   */\n"
-#| "  v_scale = gtk_scale_new (GTK_ORIENTATION_VERTICAL, vadjustment);\n"
-#| "  gtk_widget_set_vexpand (v_scale, TRUE);\n"
-#| "\n"
-#| "  /* Connecting the \"value-changed\" signal for the vertical scale to \n"
-#| "   * the appropriate callback function.\n"
-#| "   */\n"
-#| "  g_signal_connect (v_scale, \n"
-#| "                    \"value-changed\", \n"
-#| "                    G_CALLBACK (vscale_moved), \n"
-#| "                    vlabel);\n"
-#| "\n"
-#| "  /* Create a grid and arrange everything accordingly */\n"
-#| "  grid = gtk_grid_new ();\n"
-#| "  gtk_grid_set_column_spacing (GTK_GRID (grid), 10);\n"
-#| "  gtk_grid_set_column_homogeneous (GTK_GRID (grid), TRUE);\n"
-#| "  gtk_grid_attach (GTK_GRID (grid), h_scale, 0, 0, 1, 1);\n"
-#| "  gtk_grid_attach (GTK_GRID (grid), v_scale, 1, 0, 1, 1);\n"
-#| "  gtk_grid_attach (GTK_GRID (grid), hlabel, 0, 1, 1, 1);\n"
-#| "  gtk_grid_attach (GTK_GRID (grid), vlabel, 1, 1, 1, 1);\n"
-#| "  \n"
-#| "\n"
-#| "  gtk_container_add (GTK_CONTAINER (window), grid);\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"
@@ -41902,11 +41744,6 @@ msgstr "Configurar gedit para el desarrollo de JavaScript"
 
 #. (itstool) path: page/p
 #: C/set-up-gedit.js.page:20
-#| msgid ""
-#| "This tutorial will show you how to set up <link href=\"http://projects.";
-#| "gnome.org/gedit/\">gedit</link>, GNOME's basic text editor, so that it "
-#| "has a handful of extra features which are useful for writing JavaScript "
-#| "code."
 msgid ""
 "This tutorial will show you how to set up <link href=\"https://wiki.gnome.";
 "org/Apps/Gedit\">gedit</link>, GNOME's basic text editor, so that it has a "
@@ -44419,11 +44256,6 @@ msgstr ""
 
 #. (itstool) path: page/p
 #: C/statusbar.js.page:23
-#| msgid ""
-#| "This statusbar keeps track of how many times you've clicked a button. "
-#| "Applications like <link href=\"http://projects.gnome.org/gedit/\";>gedit</"
-#| "link> use statusbars to display information at a glance, and show "
-#| "notifications without interrupting the user."
 msgid ""
 "This statusbar keeps track of how many times you've clicked a button. "
 "Applications like <link href=\"https://wiki.gnome.org/Apps/Gedit\";>gedit</"
@@ -60815,7 +60647,7 @@ msgstr ""
 #~ "bugzilla.gnome.org/\"/>."
 #~ msgstr ""
 #~ "Los <app>Tutoriales del desarrollador de GNOME</app> los mantiene la "
-#~ "comunidad de manera voluntaria. Si quiere participar, es bienvenido. Si "
+#~ "comunidad de manera voluntaria. Si quiere participar, es bienvenido/a . Si "
 #~ "encuentra un error, puede rellenar un <em>informe de error</em>. Para "
 #~ "informar de un error, vaya a <link href=\"https://bugzilla.gnome.org/\"/>."
 
@@ -60888,7 +60720,7 @@ msgstr ""
 #~ "a volunteer community. You are welcome to participate."
 #~ msgstr ""
 #~ "Los <app>Tutoriales del desarrollador de GNOME</app> los desarrolla y los "
-#~ "mantiene una comunidad de voluntarios. Si quiere participar es bienvenido."
+#~ "mantiene una comunidad de voluntarios. Si quiere participar es bienvenido/a ."
 
 #~ msgid ""
 #~ "If you would like to <link href=\"https://live.gnome.org/";
@@ -61036,7 +60868,7 @@ msgstr ""
 #~ "volunteer community. You are welcome to participate."
 #~ msgstr ""
 #~ "Los <app>Tutoriales de demostración</app> los traduce una comunidad de "
-#~ "voluntarios de todo el mundo. Si quiere participar, es bienvenido."
+#~ "voluntarios de todo el mundo. Si quiere participar, es bienvenido/a ."
 
 #~ msgid ""
 #~ "There are <link href=\"http://l10n.gnome.org/module/gnome-devel-docs/";


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