[gnome-devel-docs] Fixed typos in strings



commit 438f2cd94ec569086c0d82b8be0fbfcde25bb451
Author: Daniel Mustieles <daniel mustieles gmail com>
Date:   Sun Oct 14 12:13:21 2012 +0200

    Fixed typos in strings

 platform-demos/C/02_welcome_to_the_grid.js.page |    2 +-
 platform-demos/C/beginner.js.page               |    2 +-
 platform-demos/C/combobox.js.page               |    2 +-
 platform-demos/C/comboboxtext.js.page           |    2 +-
 platform-demos/C/hellognome.js.page             |    2 +-
 platform-demos/C/set-up-gedit.js.page           |    2 +-
 6 files changed, 6 insertions(+), 6 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 76a54d7..3ae2d6e 100644
--- a/platform-demos/C/02_welcome_to_the_grid.js.page
+++ b/platform-demos/C/02_welcome_to_the_grid.js.page
@@ -32,7 +32,7 @@
 
     <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>
+    <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">
diff --git a/platform-demos/C/beginner.js.page b/platform-demos/C/beginner.js.page
index 6eebdb2..31c6121 100644
--- a/platform-demos/C/beginner.js.page
+++ b/platform-demos/C/beginner.js.page
@@ -17,7 +17,7 @@
 
   <title>0 Beginner's tutorials and samples</title>
 <synopsis>
-  <p>JavaScript is one of the most popular programming languages on the web. It's not just for the web, though. If you have even a basic understanding of JavaScript, you can write full-fledged applications for GNOME. <link href="https://live.gnome.org/GnomeDocuments";>GNOME Documents</link> is written in JavaScript, and so is <link href="https://live.gnome.org/GnomeShell/Tour";>GNOME Shell,</link> the most basic part of GNOME.</p>
+  <p>JavaScript is one of the most popular programming languages on the web. It's not just for the web, though. If you have even a basic understanding of JavaScript, you can write full-fledged applications for GNOME. <link href="https://live.gnome.org/GnomeDocuments";>GNOME Documents</link> is written in JavaScript, and so is <link href="https://live.gnome.org/GnomeShell/Tour";>GNOME Shell</link>, the most basic part of GNOME.</p>
   <note style="tip"><p>GNOME Shell is what you see when you click on "Activities" in the top-left corner of your screen. It also controls the clock and the rest of the top panel. Besides showing how you to write GNOME applications, these tutorials will also show you how to use JavaScript to write GNOME Shell extensions, which give it new features or change the way it does things.</p></note>
 </synopsis>
 
diff --git a/platform-demos/C/combobox.js.page b/platform-demos/C/combobox.js.page
index 41baa21..3cd7771 100644
--- a/platform-demos/C/combobox.js.page
+++ b/platform-demos/C/combobox.js.page
@@ -176,7 +176,7 @@ const ComboBoxExample = new Lang.Class ({
             "Like a simple clam\nrevealing a lustrous pearl\nit opens for you.",
             "A moment in time\na memory on the breeze\nthese things can't be saved."];
 ]]></code>
-    <p>We're going to create a pop-up <link xref="messagedialog.js">MessageDialog,</link> which shows you a silly haiku based on which distro you select. First, we create the array of haiku to use. Since the first string in our ComboBox is just the "Select" message, we make the first string in our array blank.</p>
+    <p>We're going to create a pop-up <link xref="messagedialog.js">MessageDialog</link>, which shows you a silly haiku based on which distro you select. First, we create the array of haiku to use. Since the first string in our ComboBox is just the "Select" message, we make the first string in our array blank.</p>
 
     <code mime="application/javascript"><![CDATA[
         // Which combobox item is active?
diff --git a/platform-demos/C/comboboxtext.js.page b/platform-demos/C/comboboxtext.js.page
index a93d033..224aae7 100644
--- a/platform-demos/C/comboboxtext.js.page
+++ b/platform-demos/C/comboboxtext.js.page
@@ -119,7 +119,7 @@ const ComboBoxTextExample = new Lang.Class ({
             "Mint is a popular distro based on Ubuntu.",
             "SUSE is a name shared by two separate distros."];
 ]]></code>
-    <p>We're going to create a pop-up <link xref="messagedialog.js">MessageDialog,</link> which shows you a message based on which distro you select. First, we create the array of responses to use. Since the first string in our ComboBoxText is just the "Select distribution" message, we make the first string in our array blank.</p>
+    <p>We're going to create a pop-up <link xref="messagedialog.js">MessageDialog</link>, which shows you a message based on which distro you select. First, we create the array of responses to use. Since the first string in our ComboBoxText is just the "Select distribution" message, we make the first string in our array blank.</p>
 
     <code mime="application/javascript"><![CDATA[
         // Which combobox item is active?
diff --git a/platform-demos/C/hellognome.js.page b/platform-demos/C/hellognome.js.page
index a6475e3..5992553 100644
--- a/platform-demos/C/hellognome.js.page
+++ b/platform-demos/C/hellognome.js.page
@@ -185,7 +185,7 @@ app.application.run (ARGV);
   <section id="whatsnext">
     <title>What's next?</title>
 
-    <p><link xref="02_welcome_to_the_grid.js">Continue on to the next tutorial</link> to learn how to build "native" GNOME applications that look and feel like the others, instead of a webview with HTML code inside. Or take a look at some <link xref="beginner.js#samples">code samples,</link> if you'd like to see example code for each Gtk widget.</p>
+    <p><link xref="02_welcome_to_the_grid.js">Continue on to the next tutorial</link> to learn how to build "native" GNOME applications that look and feel like the others, instead of a webview with HTML code inside. Or take a look at some <link xref="beginner.js#samples">code samples</link>, if you'd like to see example code for each Gtk widget.</p>
     <p>Finally, if you want to just build GNOME applications using JavaScript libraries designed for the web, you can basically stop here and go do that! Take a look at the <link xref="scrolledwindow.js">ScrolledWindow</link> code sample if you'd like to see how to make a WebView widget that can scroll to show parts of a larger web page, and check out <link xref="beginner.js#tutorials">the later tutorials</link> if you'd like to see how to create a .desktop file for your application, which will let it appear in your desktop's Activities menu with all your other apps.</p>
   </section>
 
diff --git a/platform-demos/C/set-up-gedit.js.page b/platform-demos/C/set-up-gedit.js.page
index d6824a8..bc3fb77 100644
--- a/platform-demos/C/set-up-gedit.js.page
+++ b/platform-demos/C/set-up-gedit.js.page
@@ -16,7 +16,7 @@
   </info>
 
   <title>Set up gedit for JavaScript development</title>
-  <p>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.</p>
+  <p>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.</p>
 
   <section id="view">
     <title>Making code clearer</title>



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