[gnome-devel-docs] Gtk+ corrected in GTK+



commit b869d596f2b2a453133819754136f6838202fa5a
Author: Marta Maria Casetti <mmcasetti gmail com>
Date:   Tue Feb 26 12:56:00 2013 +0100

    Gtk+ corrected in GTK+

 platform-demos/C/02_welcome_to_the_grid.js.page |    8 ++++----
 platform-demos/C/03_getting_the_signal.js.page  |    2 +-
 platform-demos/C/beginner.c.page                |    4 ++--
 platform-demos/C/gmenu.vala.page                |    2 +-
 platform-demos/C/guitar-tuner.c.page            |    4 ++--
 platform-demos/C/guitar-tuner.py.page           |    2 +-
 platform-demos/C/guitar-tuner.vala.page         |    2 +-
 platform-demos/C/helloWorld.js.page             |    2 +-
 platform-demos/C/image-viewer.c.page            |    2 +-
 platform-demos/C/image-viewer.vala.page         |    2 +-
 platform-demos/C/magic-mirror.vala.page         |    4 ++--
 platform-demos/C/model-view-controller.py.page  |    3 ---
 platform-demos/C/part-1.vala.page               |    6 +++---
 platform-demos/C/photo-wall.c.page              |    2 +-
 platform-demos/C/properties.py.page             |    2 +-
 platform-demos/C/toolbar_builder.py.page        |    1 -
 platform-demos/C/window.py.page                 |    2 +-
 17 files changed, 23 insertions(+), 27 deletions(-)
---
diff --git a/platform-demos/C/02_welcome_to_the_grid.js.page b/platform-demos/C/02_welcome_to_the_grid.js.page
index f013c4b..216f167 100644
--- a/platform-demos/C/02_welcome_to_the_grid.js.page
+++ b/platform-demos/C/02_welcome_to_the_grid.js.page
@@ -31,14 +31,14 @@
     <title>Going native</title>
 
     <p>In the last tutorial, we created what was basically a GNOME window frame for a web app. All the 
GNOME-specific code we needed to learn revolved around putting the WebView -- the widget containing our 
application -- into an ApplicationWindow, and telling it to display. The application itself was written in 
HTML and JavaScript, just like most pages on the web.</p>
-    <p>This time, we're going to use only native GNOME widgets. A widget is just a thing, like a checkbox or 
picture, and GNOME has a wide variety of them to choose from. We call them "native" widgets to distinguish 
them from things like the button and header in the web app we wrote. Because instead of using web code, these 
are going to be 100 percent GNOME, using Gtk+.</p>
-    <note style="tip"><p>Gtk+ stands for "GIMP Toolkit". It's like a toolbox of widgets that you can reach 
into, while building your applications. It was originally written for <link href="http://www.gimp.org/";>the 
GIMP</link>, which is a free software image editor.</p></note>
+    <p>This time, we're going to use only native GNOME widgets. A widget is just a thing, like a checkbox or 
picture, and GNOME has a wide variety of them to choose from. We call them "native" widgets to distinguish 
them from things like the button and header in the web app we wrote. Because instead of using web code, these 
are going to be 100 percent GNOME, using GTK+.</p>
+    <note style="tip"><p>GTK+ stands for "GIMP Toolkit". It's like a toolbox of widgets that you can reach 
into, while building your applications. It was originally written for <link href="http://www.gimp.org/";>the 
GIMP</link>, which is a free software image editor.</p></note>
   </section>
 
   <section id="setup">
     <title>Setting up our application</title>
 
-    <p>Before we dig out any widgets from the Gtk+ toolbox, we first need to write the basic boilerplate 
code that our application requires.</p>
+    <p>Before we dig out any widgets from the GTK+ toolbox, we first need to write the basic boilerplate 
code that our application requires.</p>
     <code mime="application/javascript"><![CDATA[
 #!/usr/bin/gjs
 
@@ -88,7 +88,7 @@ const WelcomeToTheGrid = new Lang.Class({
   </section>
 
   <section id="toolbox">
-    <title>Reaching into the Gtk+ toolbox</title>
+    <title>Reaching into the GTK+ toolbox</title>
     <p>What widgets should we use? Well, let's say we want to write an application that looks like this:</p>
 
     <media type="image" mime="image/png" src="media/02_jsgrid_01.png"/>
diff --git a/platform-demos/C/03_getting_the_signal.js.page b/platform-demos/C/03_getting_the_signal.js.page
index 9a5a939..eff84e8 100644
--- a/platform-demos/C/03_getting_the_signal.js.page
+++ b/platform-demos/C/03_getting_the_signal.js.page
@@ -151,7 +151,7 @@ app.application.run (ARGV);
 
   <section id="switch">
     <title>Flip the switch</title>
-    <p>Buttons aren't the only input widgets in our Gtk+ toolbox. We can also use switches, like the one in 
this example. Switches don't have a label property, so we have to create a separate Label that says what it 
does to go next to it.</p>
+    <p>Buttons aren't the only input widgets in our GTK+ toolbox. We can also use switches, like the one in 
this example. Switches don't have a label property, so we have to create a separate Label that says what it 
does to go next to it.</p>
 
     <media type="image" mime="image/png" src="media/03_jssignal_02.png"/>
 
diff --git a/platform-demos/C/beginner.c.page b/platform-demos/C/beginner.c.page
index d13a9de..3af027e 100644
--- a/platform-demos/C/beginner.c.page
+++ b/platform-demos/C/beginner.c.page
@@ -31,7 +31,7 @@
 </list>
 
 
-<p>By following these tutorials you will learn the basics of GUI programming using Gtk+.</p>
+<p>By following these tutorials you will learn the basics of GUI programming using GTK+.</p>
 </synopsis>
 
 <section id="tutorials">
@@ -53,7 +53,7 @@
   </steps>
  <note>
   <p>
-    For more information about compiling GTK+ programs see <link 
href="http://developer.gnome.org/gtk3/3.4/gtk-compiling.html";>Compiling Gtk+ Applications on UNIX</link>.
+    For more information about compiling GTK+ programs see <link 
href="http://developer.gnome.org/gtk3/3.4/gtk-compiling.html";>Compiling GTK+ Applications on UNIX</link>.
   </p>
   </note>
   <p>You can also use the Vala compiler to compile these samples:</p>
diff --git a/platform-demos/C/gmenu.vala.page b/platform-demos/C/gmenu.vala.page
index d721fd6..cffed91 100644
--- a/platform-demos/C/gmenu.vala.page
+++ b/platform-demos/C/gmenu.vala.page
@@ -26,7 +26,7 @@
   <title>GMenu</title>
     <media type="image" mime="image/png" height="200" src="media/gmenu.vala.png"/>
     <note style="important">
-       <p><em style="strong">You need to be running Gtk+-3.4 or later for this to work</em></p>
+       <p><em style="strong">You need to be running GTK+-3.4 or later for this to work</em></p>
     </note>
     <note style="bug">
       <p>This program will not compile with the quit action connected until <link 
href="https://bugzilla.gnome.org/show_bug.cgi?id=674090";>Bug #674090</link> is fixed. Therefore, the 
problematic line has been commented out.</p>
diff --git a/platform-demos/C/guitar-tuner.c.page b/platform-demos/C/guitar-tuner.c.page
index 812284f..39acd9e 100644
--- a/platform-demos/C/guitar-tuner.c.page
+++ b/platform-demos/C/guitar-tuner.c.page
@@ -7,7 +7,7 @@
     <title type="text">Guitar tuner (C)</title>
     <link type="guide" xref="c#examples"/>
 
-    <desc>Use Gtk+ and GStreamer to build a simple guitar tuner application for GNOME. Shows off how to use 
the interface designer.</desc>
+    <desc>Use GTK+ and GStreamer to build a simple guitar tuner application for GNOME. Shows off how to use 
the interface designer.</desc>
 
     <revision pkgversion="0.1" version="0.1" date="2010-12-02" status="review"/>
     <credit type="author">
@@ -51,7 +51,7 @@
     <p>Start Anjuta and click <guiseq><gui>File</gui><gui>New</gui><gui>Project</gui></guiseq> to open the 
project wizard.</p>
     </item>
     <item>
-    <p>Choose <gui>Gtk+ (Simple)</gui> from the <gui>C</gui> tab, click <gui>Continue</gui>, and fill out 
your details on the next few pages. Use <file>guitar-tuner</file> as project name and directory.</p>
+    <p>Choose <gui>GTK+ (Simple)</gui> from the <gui>C</gui> tab, click <gui>Continue</gui>, and fill out 
your details on the next few pages. Use <file>guitar-tuner</file> as project name and directory.</p>
        </item>
     <item>
     <p>Make sure that <gui>Configure external packages</gui> is switched <gui>ON</gui>. On the next page, 
select
diff --git a/platform-demos/C/guitar-tuner.py.page b/platform-demos/C/guitar-tuner.py.page
index 2b15e9c..cc5d1ec 100644
--- a/platform-demos/C/guitar-tuner.py.page
+++ b/platform-demos/C/guitar-tuner.py.page
@@ -7,7 +7,7 @@
     <title type="text">Guitar tuner (Python)</title>
     <link type="guide" xref="py#examples"/>
 
-    <desc>Use Gtk+ and GStreamer to build a simple guitar tuner application for GNOME. Shows off how to use 
the interface designer.</desc>
+    <desc>Use GTK+ and GStreamer to build a simple guitar tuner application for GNOME. Shows off how to use 
the interface designer.</desc>
 
     <revision pkgversion="0.1" version="0.1" date="2010-12-02" status="stub"/>
     <credit type="author">
diff --git a/platform-demos/C/guitar-tuner.vala.page b/platform-demos/C/guitar-tuner.vala.page
index 620f1a4..a4aba0d 100644
--- a/platform-demos/C/guitar-tuner.vala.page
+++ b/platform-demos/C/guitar-tuner.vala.page
@@ -54,7 +54,7 @@
     <p>Start <app>Anjuta</app> and click <gui>Create a new project</gui> or 
<guiseq><gui>File</gui><gui>New</gui><gui>Project</gui></guiseq> to open the project wizard.</p>
     </item>
     <item>
-    <p>Click on the <gui>Vala</gui> tab and select <gui>Gtk+ (Simple)</gui>. Click <gui>Continue</gui>, and 
fill out your details on the next few pages. Use <file>guitar-tuner</file> as project name and directory.</p>
+    <p>Click on the <gui>Vala</gui> tab and select <gui>GTK+ (Simple)</gui>. Click <gui>Continue</gui>, and 
fill out your details on the next few pages. Use <file>guitar-tuner</file> as project name and directory.</p>
        </item>
     <item>
     <p>Make sure that <gui>Configure external packages</gui> is switched <gui>ON</gui>. On the next page, 
select
diff --git a/platform-demos/C/helloWorld.js.page b/platform-demos/C/helloWorld.js.page
index d77ad0c..6c93a4d 100644
--- a/platform-demos/C/helloWorld.js.page
+++ b/platform-demos/C/helloWorld.js.page
@@ -88,7 +88,7 @@ const Gtk = imports.gi.Gtk;]]></code>
 });
 ]]></code>
 
-    <p>GtkApplication initializes Gtk+. It also connects the <gui>x</gui> button that's automatically 
generated along with the window to the "destroy" signal.</p>
+    <p>GtkApplication initializes GTK+. It also connects the <gui>x</gui> button that's automatically 
generated along with the window to the "destroy" signal.</p>
     <p>We can start building our first window. We do this by creating a variable called <var>_window</var> 
and assigning it a new Gtk.ApplicationWindow.</p>
     <p>We give the window a property called <var>title</var>. The title can be any string you want it to be. 
To be on the safe side, it's best to stick to UTF-8 encoding.</p>
     <p>Now we have a window which has a title and a working "close" button. Let's add the actual "Hello 
World" text.</p>
diff --git a/platform-demos/C/image-viewer.c.page b/platform-demos/C/image-viewer.c.page
index 68ca6dc..ec79d22 100644
--- a/platform-demos/C/image-viewer.c.page
+++ b/platform-demos/C/image-viewer.c.page
@@ -45,7 +45,7 @@
     <p>Start Anjuta and click <guiseq><gui>File</gui><gui>New</gui><gui>Project</gui></guiseq> to open the 
project wizard.</p>
     </item>
     <item>
-    <p>Choose <gui>Gtk+ (Simple)</gui> from the <gui>C</gui> tab, click <gui>Continue</gui>, and fill out 
your details on the next few pages. Use <file>image-viewer</file> as project name and directory.</p>
+    <p>Choose <gui>GTK+ (Simple)</gui> from the <gui>C</gui> tab, click <gui>Continue</gui>, and fill out 
your details on the next few pages. Use <file>image-viewer</file> as project name and directory.</p>
        </item>
     <item>
     <p>Make sure that <gui>Use GtkBuilder for user interface</gui> is disabled as we will
diff --git a/platform-demos/C/image-viewer.vala.page b/platform-demos/C/image-viewer.vala.page
index 42708e2..787e04b 100644
--- a/platform-demos/C/image-viewer.vala.page
+++ b/platform-demos/C/image-viewer.vala.page
@@ -62,7 +62,7 @@
       <p>Start <app>Anjuta</app> and click <gui>Create a new project</gui> or 
<guiseq><gui>File</gui><gui>New</gui><gui>Project</gui></guiseq> to open the project wizard.</p>
     </item>
     <item>
-      <p>From the <gui>Vala</gui> tab choose <gui>Gtk+ (Simple)</gui>, click <gui>Continue</gui>, and fill 
out your details on the next page.
+      <p>From the <gui>Vala</gui> tab choose <gui>GTK+ (Simple)</gui>, click <gui>Continue</gui>, and fill 
out your details on the next page.
       Use <file>image-viewer</file> as project name and directory.</p>
        </item>
     <item>
diff --git a/platform-demos/C/magic-mirror.vala.page b/platform-demos/C/magic-mirror.vala.page
index e7117be..4d3fc1e 100644
--- a/platform-demos/C/magic-mirror.vala.page
+++ b/platform-demos/C/magic-mirror.vala.page
@@ -7,7 +7,7 @@
   <title type="text">Magic mirror (Vala)</title>
     <link type="guide" xref="vala#examples"/>
 
-    <desc>Use your webcam as a mirror using the GStreamer framework and Gtk+</desc>
+    <desc>Use your webcam as a mirror using the GStreamer framework and GTK+</desc>
 
     <revision pkgversion="0.1" version="0.1" date="2011-03-19" status="review"/>
     <credit type="author">
@@ -53,7 +53,7 @@
     <p>Start Anjuta and click <guiseq><gui>File</gui><gui>New</gui><gui>Project</gui></guiseq> to open the 
project wizard.</p>
     </item>
     <item>
-    <p>Choose <gui>Gtk+ (simple)</gui> from the <gui>Vala</gui> tab, click <gui>Forward</gui>, and fill out 
your details on the next few pages. Use <file>guitar-tuner</file> as project name and directory.</p>
+    <p>Choose <gui>GTK+ (simple)</gui> from the <gui>Vala</gui> tab, click <gui>Forward</gui>, and fill out 
your details on the next few pages. Use <file>guitar-tuner</file> as project name and directory.</p>
        </item>
        <item>
     <p>Disable <gui>Use GtkBuilder for user interface</gui> as we will
diff --git a/platform-demos/C/model-view-controller.py.page b/platform-demos/C/model-view-controller.py.page
index d3512d6..35c08c6 100644
--- a/platform-demos/C/model-view-controller.py.page
+++ b/platform-demos/C/model-view-controller.py.page
@@ -188,9 +188,6 @@ def on_tree_selection_changed(selection):
   <item><p><link 
href="http://developer.gnome.org/gtk3/unstable/GtkTreeViewColumn.html";>GtkTreeViewColumn</link></p></item>
   <item><p><link 
href="http://developer.gnome.org/gtk3/unstable/GtkComboBox.html";>GtkComboBox</link></p></item>
   <item><p><link 
href="http://developer.gnome.org/gtk3/unstable/GtkCellRenderer.html";>GtkCellRenderer</link></p></item>
-  <item><p><link href="http://python-gtk-3-tutorial.readthedocs.org/en/latest/treeview.html";>The Python Gtk+ 
3 Tutorial - Tree and List Widgets</link></p></item>
-  <item><p><link href="http://python-gtk-3-tutorial.readthedocs.org/en/latest/cellrenderers.html";>The Python 
Gtk+ 3 Tutorial - CellRenderers</link></p></item>
-  <item><p><link href="http://python-gtk-3-tutorial.readthedocs.org/en/latest/combobox.html";>The Python Gtk+ 
3 Tutorial - ComboBox</link></p></item>
 </list>
 
 </section>
diff --git a/platform-demos/C/part-1.vala.page b/platform-demos/C/part-1.vala.page
index fd2f4f3..a85edfc 100644
--- a/platform-demos/C/part-1.vala.page
+++ b/platform-demos/C/part-1.vala.page
@@ -6,7 +6,7 @@
     <link type="guide" xref="hello-world.vala"/>
     <link type="next" xref="part-2.vala"/>
     <title type="link" role="series">
-     Your first Gtk+ application
+     Your first GTK+ application
     </title>
     <revision version="0.1" date="2012-02-20" status="stub"/>
 
@@ -19,7 +19,7 @@
     <desc>An intro to Anjuta's interface builder</desc>
   </info>
 
-  <title>Part 1: Your first Gtk+ application</title>
+  <title>Part 1: Your first GTK+ application</title>
   <links type="series" style="floatend"/>
 
 <synopsis>
@@ -39,7 +39,7 @@
       <p>Start <app>Anjuta</app> and click <gui>Create a new project</gui> or 
<guiseq><gui>File</gui><gui>New</gui><gui>Project</gui></guiseq> to open the project wizard.</p>
     </item>
     <item>
-      <p>Choose <gui>Gtk+ (Simple)</gui> from the <gui>Vala</gui> tab, click <gui>Forward</gui>, and fill 
out your details on the next few pages.
+      <p>Choose <gui>GTK+ (Simple)</gui> from the <gui>Vala</gui> tab, click <gui>Forward</gui>, and fill 
out your details on the next few pages.
       Use <file>hello-world</file> as the project name and directory. Click <gui>Continue</gui>.</p>
        </item>
     <item>
diff --git a/platform-demos/C/photo-wall.c.page b/platform-demos/C/photo-wall.c.page
index 284d8fb..c3e92f4 100644
--- a/platform-demos/C/photo-wall.c.page
+++ b/platform-demos/C/photo-wall.c.page
@@ -55,7 +55,7 @@
     <p>Start Anjuta and click <guiseq><gui>File</gui><gui>New</gui><gui>Project</gui></guiseq> to open the 
project wizard.</p>
     </item>
     <item>
-    <p>Choose <gui>Gtk+ (simple)</gui> from the <gui>C</gui> tab, click <gui>Continue</gui>, and fill out 
your details on the next few pages. Use <file>photo-wall</file> as project name and directory.</p>
+    <p>Choose <gui>GTK+ (simple)</gui> from the <gui>C</gui> tab, click <gui>Continue</gui>, and fill out 
your details on the next few pages. Use <file>photo-wall</file> as project name and directory.</p>
        </item>
     <item>
     <p>Make sure that <gui>Use GtkBuilder for user interface</gui> is disabled as we will
diff --git a/platform-demos/C/properties.py.page b/platform-demos/C/properties.py.page
index 9e2fa24..412e351 100644
--- a/platform-demos/C/properties.py.page
+++ b/platform-demos/C/properties.py.page
@@ -49,7 +49,7 @@ label.set_halign(Gtk.Align.END)</code>
 <section id="references">
 <title>References</title>
 
-<p><link href="http://python-gtk-3-tutorial.readthedocs.org/en/latest/basics.html";>Basics - 
Properties</link> in Python Gtk+ 3 Tutorial</p>
+<p><link href="http://python-gtk-3-tutorial.readthedocs.org/en/latest/basics.html";>Basics - 
Properties</link> in Python GTK+ 3 Tutorial</p>
 </section>
 
 </page>
diff --git a/platform-demos/C/toolbar_builder.py.page b/platform-demos/C/toolbar_builder.py.page
index c3770f7..14fea10 100644
--- a/platform-demos/C/toolbar_builder.py.page
+++ b/platform-demos/C/toolbar_builder.py.page
@@ -196,7 +196,6 @@
   <item><p><link href="http://developer.gnome.org/gtk3/unstable/GtkBuilder.html";>GtkBuilder</link></p></item>
   <item><p><link href="http://developer.gnome.org/gtk3/unstable/GtkWidget.html";>GtkWidget</link></p></item>
   <item><p><link 
href="http://developer.gnome.org/gdk3/unstable/gdk3-Event-Structures.html#GdkEventWindowState";>Event 
Structures</link></p></item>
-  <item><p><link href="http://python-gtk-3-tutorial.readthedocs.org/en/latest/builder.html";>The Python Gtk+ 
3 Tutorial - Glade and Gtk.Builder</link></p></item>
 </list>
 
 </section>
diff --git a/platform-demos/C/window.py.page b/platform-demos/C/window.py.page
index 39ef222..8ca9d59 100644
--- a/platform-demos/C/window.py.page
+++ b/platform-demos/C/window.py.page
@@ -30,7 +30,7 @@
     <tr>
       <td>
         <media type="image" mime="image/png" src="media/window.png"/>
-        <p>A minimal Gtk+ Application: a window with a title.</p>
+        <p>A minimal GTK+ Application: a window with a title.</p>
       </td>
       <td>
         <p>Use <link xref="GtkApplicationWindow.py" /> if you need <link xref="gmenu.py"/> support.</p>


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