[haiku-commits] haiku: hrev54733 - in src: data/package_infos/any apps/installer

  • From: humdinger <humdingerb@xxxxxxxxx>
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 25 Nov 2020 13:14:33 -0500 (EST)

hrev54733 adds 1 changeset to branch 'master'
old head: 8c78892580f132d10e624aef96f835df8d94bf19
new head: 9d84226fcd4a24c87b88c08b0c0f14cd46cf677b
overview: 
https://git.haiku-os.org/haiku/log/?qt=range&q=9d84226fcd4a+%5E8c78892580f1

----------------------------------------------------------------------------

9d84226fcd4a: Installer: Improved alert text, consistent use of "Haiku User 
Guide"
  
  Point specifically to the SoftwareUpdater topic of the Haiku User Guide
  to make the hint more useful.
  
  Always use consistent spelling: "Haiku User Guide"
  
  Translated the German User Guide package info.
  
  Change-Id: I8f3b2a5a3f27caf9b5eea41a1a7a86c2e91e668a
  Reviewed-on: https://review.haiku-os.org/c/haiku/+/3412
  Reviewed-by: Niels Sascha Reedijk <niels.reedijk@xxxxxxxxx>

                                        [ Humdinger <humdingerb@xxxxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev54733
Commit:      9d84226fcd4a24c87b88c08b0c0f14cd46cf677b
URL:         https://git.haiku-os.org/haiku/commit/?id=9d84226fcd4a
Author:      Humdinger <humdingerb@xxxxxxxxx>
Date:        Mon Nov 23 18:31:06 2020 UTC
Committer:   humdinger <humdingerb@xxxxxxxxx>
Commit-Date: Wed Nov 25 18:14:29 2020 UTC

----------------------------------------------------------------------------

25 files changed, 95 insertions(+), 93 deletions(-)
src/apps/haikudepot/HaikuDepotConstants.h        |  4 ++--
src/apps/installer/EULAWindow.cpp                |  5 +++--
src/apps/installer/WorkerThread.cpp              |  3 ++-
src/data/package_infos/any/haiku_userguide       |  4 ++--
src/data/package_infos/any/haiku_userguide_ca    |  8 +++----
src/data/package_infos/any/haiku_userguide_de    | 22 ++++++++++----------
src/data/package_infos/any/haiku_userguide_en    |  4 ++--
src/data/package_infos/any/haiku_userguide_es    |  8 +++----
src/data/package_infos/any/haiku_userguide_fi    |  8 +++----
src/data/package_infos/any/haiku_userguide_fr    |  6 +++---
src/data/package_infos/any/haiku_userguide_fur   |  8 +++----
src/data/package_infos/any/haiku_userguide_hu    |  8 +++----
src/data/package_infos/any/haiku_userguide_id    |  8 +++----
src/data/package_infos/any/haiku_userguide_it    |  8 +++----
src/data/package_infos/any/haiku_userguide_jp    |  8 +++----
src/data/package_infos/any/haiku_userguide_pl    |  6 +++---
src/data/package_infos/any/haiku_userguide_pt_BR |  8 +++----
src/data/package_infos/any/haiku_userguide_pt_PT |  8 +++----
src/data/package_infos/any/haiku_userguide_ro    |  8 +++----
src/data/package_infos/any/haiku_userguide_ru    |  8 +++----
src/data/package_infos/any/haiku_userguide_sk    |  6 +++---
src/data/package_infos/any/haiku_userguide_sv_SE |  8 +++----
src/data/package_infos/any/haiku_userguide_tr    |  8 +++----
src/data/package_infos/any/haiku_userguide_uk    |  8 +++----
src/data/package_infos/any/haiku_userguide_zh_CN |  8 +++----

----------------------------------------------------------------------------

diff --git a/src/apps/haikudepot/HaikuDepotConstants.h 
b/src/apps/haikudepot/HaikuDepotConstants.h
index 0fdeb11386..1a85273988 100644
--- a/src/apps/haikudepot/HaikuDepotConstants.h
+++ b/src/apps/haikudepot/HaikuDepotConstants.h
@@ -99,7 +99,7 @@ enum UserUsageConditionsSelectionMode {
 #define STR_MDASH "\xE2\x80\x94"
 
 #define ALERT_MSG_LOGS_USER_GUIDE "\nInformation about how to view the logs " \
-       "is available in the HaikuDepot section of the user guide."
+       "is available in the HaikuDepot section of the Haiku User Guide."
 
 #define CACHE_DIRECTORY_APP "HaikuDepot"
 
@@ -108,4 +108,4 @@ enum UserUsageConditionsSelectionMode {
 #define PROMINANCE_ORDERING_MAX                                1000
        // this is the highest prominence value possible.
 
-#endif // HAIKU_DEPOT_CONSTANTS_H
\ No newline at end of file
+#endif // HAIKU_DEPOT_CONSTANTS_H
diff --git a/src/apps/installer/EULAWindow.cpp 
b/src/apps/installer/EULAWindow.cpp
index b4b5523b1a..ec90d51592 100644
--- a/src/apps/installer/EULAWindow.cpp
+++ b/src/apps/installer/EULAWindow.cpp
@@ -58,10 +58,11 @@ EULAWindow::EULAWindow()
                "For details, please consult the guide on booting Haiku on our "
                "website at https://www.haiku-os.org/guides/booting.\n";
                "Or you can set up a boot menu from Installer's \"Tools\" menu, 
see "
-               "the Userguide's topic on the application 
\"BootManager\".\n\n\n");
+               "the Haiku User Guide's topic on the application 
\"BootManager\"."
+               "\n\n\n");
        infoText << B_TRANSLATE(
                "3)   When you successfully boot into Haiku for the first time, 
make "
-               "sure to read our \"Userguide\" and take the \"Quick Tour\". 
There "
+               "sure to read our \"User Guide\" and take the \"Quick Tour\". 
There "
                "are links on the Desktop and in WebPositive's bookmarks.\n\n");
        infoText << B_TRANSLATE(
                "Have fun and thanks for trying out Haiku!");
diff --git a/src/apps/installer/WorkerThread.cpp 
b/src/apps/installer/WorkerThread.cpp
index e301073d06..7ef6f6cab7 100644
--- a/src/apps/installer/WorkerThread.cpp
+++ b/src/apps/installer/WorkerThread.cpp
@@ -451,7 +451,8 @@ WorkerThread::_PerformInstall(partition_id 
sourcePartitionID,
                        "empty. If it already contains a Haiku installation, it 
will be "
                        "overwritten. This will remove all installed 
software.\n\n"
                        "If you want to upgrade your system without removing 
installed "
-                       "software, see the Haiku user guide for update 
instructions.\n\n"
+                       "software, see the Haiku User Guide's topic on the 
application "
+                       "\"SoftwareUpdater\" for update instructions.\n\n"
                        "Are you sure you want to continue the installation?"),
                        B_TRANSLATE("Install anyway"), B_TRANSLATE("Cancel"), 0,
                        B_WIDTH_AS_USUAL, B_STOP_ALERT);
diff --git a/src/data/package_infos/any/haiku_userguide 
b/src/data/package_infos/any/haiku_userguide
index 2cb1cd618e..8c1f70e1b2 100644
--- a/src/data/package_infos/any/haiku_userguide
+++ b/src/data/package_infos/any/haiku_userguide
@@ -2,8 +2,8 @@ name                    haiku_userguide
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
diff --git a/src/data/package_infos/any/haiku_userguide_ca 
b/src/data/package_infos/any/haiku_userguide_ca
index a6b7a5bfbc..25391565c9 100644
--- a/src/data/package_infos/any/haiku_userguide_ca
+++ b/src/data/package_infos/any/haiku_userguide_ca
@@ -2,8 +2,8 @@ name                    haiku_userguide_ca
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Catalan 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Catalan translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Catalan translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_de 
b/src/data/package_infos/any/haiku_userguide_de
index d4d2592610..ad605e8d25 100644
--- a/src/data/package_infos/any/haiku_userguide_de
+++ b/src/data/package_infos/any/haiku_userguide_de
@@ -1,18 +1,18 @@
 name                   haiku_userguide_de
 version                        %HAIKU_VERSION%
 architecture   any
-summary                        "The Haiku user documentation (German 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
-It's recommended reading for people that are new to the system as well as the \
-seasoned Haiku or former BeOS user. It describes the fundamentals of the \
-graphical user interface as well as the special features that are unique to \
-the BeOS/Haiku system. All included applications and preferences are \
-described in detail and tips and little workshops help to work most \
-efficiently under Haiku.
+summary                        "Das Haiku Benutzerhandbuch auf Deutsch"
+description            "Der Haiku Userguide beschreibt das Haiku 
Betriebssystem aus \
+Sicht der Nutzer.
+Er ist praktisch Pflichtlektüre für neue Nutzer als auch alteingesessene Haiku 
\
+oder ehemalige BeOS User. Die Grundlagen der grafischen Oberfläche werden \
+ebenso besprochen wie die besonderen Eigenschaften, die BeOS/Haiku so \
+einzigartig machen. Die mitgelieferten Anwendungen und Einstellungs-Panels \
+werden detailliert beschrieben und kleine Workshops helfen dabei effektiv \
+unter Haiku zu arbeiten.
 
-This is the German translation of the user guide. Thanks to everyone who \
-contributed!"
+Dies ist die deutsche Übersetzung des Haiku User Guide. Dank an alle die \
+mitgeholfen haben!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_en 
b/src/data/package_infos/any/haiku_userguide_en
index 1a7e177312..c3f5b86987 100644
--- a/src/data/package_infos/any/haiku_userguide_en
+++ b/src/data/package_infos/any/haiku_userguide_en
@@ -2,8 +2,8 @@ name                    haiku_userguide_en
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
diff --git a/src/data/package_infos/any/haiku_userguide_es 
b/src/data/package_infos/any/haiku_userguide_es
index 989903e17b..4a951406f7 100644
--- a/src/data/package_infos/any/haiku_userguide_es
+++ b/src/data/package_infos/any/haiku_userguide_es
@@ -2,8 +2,8 @@ name                    haiku_userguide_es
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Spanish 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Spanish translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Spanish translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_fi 
b/src/data/package_infos/any/haiku_userguide_fi
index 5c5759b6c6..d41e7ecbfd 100644
--- a/src/data/package_infos/any/haiku_userguide_fi
+++ b/src/data/package_infos/any/haiku_userguide_fi
@@ -2,8 +2,8 @@ name                    haiku_userguide_fi
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Finnish 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Finnish translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Finnish translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_fr 
b/src/data/package_infos/any/haiku_userguide_fr
index 2eecce538b..b3b99864cf 100644
--- a/src/data/package_infos/any/haiku_userguide_fr
+++ b/src/data/package_infos/any/haiku_userguide_fr
@@ -2,8 +2,8 @@ name                    haiku_userguide_fr
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (French 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,7 +11,7 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the French translation of the user guide. Thanks to everyone who \
+This is the French translation of the Haiku User Guide. Thanks to everyone who 
\
 contributed!"
 
 packager               "The Haiku build system"
diff --git a/src/data/package_infos/any/haiku_userguide_fur 
b/src/data/package_infos/any/haiku_userguide_fur
index 3a9cd4aefe..7891acf43b 100644
--- a/src/data/package_infos/any/haiku_userguide_fur
+++ b/src/data/package_infos/any/haiku_userguide_fur
@@ -2,8 +2,8 @@ name                    haiku_userguide_fur
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Friulian 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Friulian translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Friulian translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_hu 
b/src/data/package_infos/any/haiku_userguide_hu
index 918ad44598..e0b545a45c 100644
--- a/src/data/package_infos/any/haiku_userguide_hu
+++ b/src/data/package_infos/any/haiku_userguide_hu
@@ -2,8 +2,8 @@ name                    haiku_userguide_hu
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Hungarian 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Hungarian translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Hungarian translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_id 
b/src/data/package_infos/any/haiku_userguide_id
index 4c0f177a92..31b0c673ed 100644
--- a/src/data/package_infos/any/haiku_userguide_id
+++ b/src/data/package_infos/any/haiku_userguide_id
@@ -2,8 +2,8 @@ name                    haiku_userguide_id
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Indonesian 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Indonesian translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Indonesian translation of the Haiku User Guide. Thanks to everyone 
\
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_it 
b/src/data/package_infos/any/haiku_userguide_it
index 18dc62a952..bdc6c39cc2 100644
--- a/src/data/package_infos/any/haiku_userguide_it
+++ b/src/data/package_infos/any/haiku_userguide_it
@@ -2,8 +2,8 @@ name                    haiku_userguide_it
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Italian 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Italian translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Italian translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_jp 
b/src/data/package_infos/any/haiku_userguide_jp
index 325cf0cdba..c6d698ccb2 100644
--- a/src/data/package_infos/any/haiku_userguide_jp
+++ b/src/data/package_infos/any/haiku_userguide_jp
@@ -2,8 +2,8 @@ name                    haiku_userguide_jp
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Japanese 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Japanese translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Japanese translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_pl 
b/src/data/package_infos/any/haiku_userguide_pl
index f688810583..4c1fdf9160 100644
--- a/src/data/package_infos/any/haiku_userguide_pl
+++ b/src/data/package_infos/any/haiku_userguide_pl
@@ -2,8 +2,8 @@ name                    haiku_userguide_pl
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Polish 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,7 +11,7 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Polish translation of the user guide. Thanks to everyone who \
+This is the Polish translation of the Haiku User Guide. Thanks to everyone who 
\
 contributed!"
 
 
diff --git a/src/data/package_infos/any/haiku_userguide_pt_BR 
b/src/data/package_infos/any/haiku_userguide_pt_BR
index 379f333a64..4cd710b6da 100644
--- a/src/data/package_infos/any/haiku_userguide_pt_BR
+++ b/src/data/package_infos/any/haiku_userguide_pt_BR
@@ -2,8 +2,8 @@ name                    haiku_userguide_pt_BR
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Brazilian 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Brazilian translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Brazilian translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_pt_PT 
b/src/data/package_infos/any/haiku_userguide_pt_PT
index 681ee91d41..fd9b42d76d 100644
--- a/src/data/package_infos/any/haiku_userguide_pt_PT
+++ b/src/data/package_infos/any/haiku_userguide_pt_PT
@@ -2,8 +2,8 @@ name                    haiku_userguide_pt_PT
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Portuguese 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Portuguese translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Portuguese translation of the Haiku User Guide. Thanks to everyone 
\
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_ro 
b/src/data/package_infos/any/haiku_userguide_ro
index 7b41a72a7d..75e8936092 100644
--- a/src/data/package_infos/any/haiku_userguide_ro
+++ b/src/data/package_infos/any/haiku_userguide_ro
@@ -2,8 +2,8 @@ name                    haiku_userguide_ro
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Romanian 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Romanian translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Romanian translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_ru 
b/src/data/package_infos/any/haiku_userguide_ru
index 9cd6316150..e36bdc1e62 100644
--- a/src/data/package_infos/any/haiku_userguide_ru
+++ b/src/data/package_infos/any/haiku_userguide_ru
@@ -2,8 +2,8 @@ name                    haiku_userguide_ru
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Russian 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Russian translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Russian translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_sk 
b/src/data/package_infos/any/haiku_userguide_sk
index b62221c4d1..cb8494ebc2 100644
--- a/src/data/package_infos/any/haiku_userguide_sk
+++ b/src/data/package_infos/any/haiku_userguide_sk
@@ -2,8 +2,8 @@ name                    haiku_userguide_sk
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Slovak 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,7 +11,7 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Slovak translation of the user guide. Thanks to everyone who \
+This is the Slovak translation of the Haiku User Guide. Thanks to everyone who 
\
 contributed!"
 
 packager               "The Haiku build system"
diff --git a/src/data/package_infos/any/haiku_userguide_sv_SE 
b/src/data/package_infos/any/haiku_userguide_sv_SE
index 818a368671..0393e174a0 100644
--- a/src/data/package_infos/any/haiku_userguide_sv_SE
+++ b/src/data/package_infos/any/haiku_userguide_sv_SE
@@ -2,8 +2,8 @@ name                    haiku_userguide_sv_SE
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Swedish 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Swedish translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Swedish translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_tr 
b/src/data/package_infos/any/haiku_userguide_tr
index cdbf7ef2c5..5662bc28e9 100644
--- a/src/data/package_infos/any/haiku_userguide_tr
+++ b/src/data/package_infos/any/haiku_userguide_tr
@@ -2,8 +2,8 @@ name                    haiku_userguide_tr
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Turkish 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Turkish translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Turkish translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_uk 
b/src/data/package_infos/any/haiku_userguide_uk
index 5fc761b5fb..015bc4b650 100644
--- a/src/data/package_infos/any/haiku_userguide_uk
+++ b/src/data/package_infos/any/haiku_userguide_uk
@@ -2,8 +2,8 @@ name                    haiku_userguide_uk
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Ukrainian 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Ukrainian translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Ukrainian translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"
diff --git a/src/data/package_infos/any/haiku_userguide_zh_CN 
b/src/data/package_infos/any/haiku_userguide_zh_CN
index 371876a326..01cf8eba99 100644
--- a/src/data/package_infos/any/haiku_userguide_zh_CN
+++ b/src/data/package_infos/any/haiku_userguide_zh_CN
@@ -2,8 +2,8 @@ name                    haiku_userguide_zh_CN
 version                        %HAIKU_VERSION%
 architecture   any
 summary                        "The Haiku user documentation (Chinese 
translation)"
-description            "The user guide describes the Haiku operating system 
from a \
-user's perspective.
+description            "The Haiku User Guide describes the Haiku operating 
system \
+from a user's perspective.
 It's recommended reading for people that are new to the system as well as the \
 seasoned Haiku or former BeOS user. It describes the fundamentals of the \
 graphical user interface as well as the special features that are unique to \
@@ -11,8 +11,8 @@ the BeOS/Haiku system. All included applications and 
preferences are \
 described in detail and tips and little workshops help to work most \
 efficiently under Haiku.
 
-This is the Chinese translation of the user guide. Thanks to everyone who \
-contributed!"
+This is the Chinese translation of the Haiku User Guide. Thanks to everyone \
+who contributed!"
 
 packager               "The Haiku build system"
 vendor                 "Haiku Project"


Other related posts:

  • » [haiku-commits] haiku: hrev54733 - in src: data/package_infos/any apps/installer - humdinger