[polari] Use Unicode in translatable strings
- From: Piotr Drąg <piotrdrag src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [polari] Use Unicode in translatable strings
- Date: Fri, 11 Nov 2016 17:28:41 +0000 (UTC)
commit 9578ed814adc37e1f12c3a647cd867d77bc74d53
Author: Piotr Drąg <piotrdrag gmail com>
Date: Fri Nov 11 17:54:36 2016 +0100
Use Unicode in translatable strings
See https://developer.gnome.org/hig/stable/typography.html
https://bugzilla.gnome.org/show_bug.cgi?id=774283
data/appdata/org.gnome.Polari.appdata.xml.in | 2 +-
data/resources/help-overlay.ui | 2 +-
src/ircParser.js | 42 +++++++++++++-------------
src/roomList.js | 2 +-
4 files changed, 24 insertions(+), 24 deletions(-)
---
diff --git a/data/appdata/org.gnome.Polari.appdata.xml.in b/data/appdata/org.gnome.Polari.appdata.xml.in
index 9eecd70..eb820fe 100644
--- a/data/appdata/org.gnome.Polari.appdata.xml.in
+++ b/data/appdata/org.gnome.Polari.appdata.xml.in
@@ -15,7 +15,7 @@
<p>
You can use Polari to publicly chat with people in a channel, and to
have private one-to-one conversations. Notifications make sure that
- you never miss an important message - for private conversations,
+ you never miss an important message — for private conversations,
they even allow you to reply instantly without switching back to the
application!
</p>
diff --git a/data/resources/help-overlay.ui b/data/resources/help-overlay.ui
index 08910d5..0416747 100644
--- a/data/resources/help-overlay.ui
+++ b/data/resources/help-overlay.ui
@@ -100,7 +100,7 @@
<child>
<object class="GtkShortcutsShortcut">
<property name="visible">True</property>
- <property name="title" translatable="yes" context="shortcut window">First - Ninth
Room</property>
+ <property name="title" translatable="yes" context="shortcut window">First – Ninth
Room</property>
<property name="accelerator"><Alt>1...9</property>
</object>
</child>
diff --git a/src/ircParser.js b/src/ircParser.js
index 9528935..dac12b1 100644
--- a/src/ircParser.js
+++ b/src/ircParser.js
@@ -13,31 +13,31 @@ const N_ = function(s) { return s; };
const knownCommands = {
/* commands that would be nice to support: */
/*
- AWAY: N_("/AWAY [<message>] - sets or unsets away message"),
- LIST: N_("/LIST [<channel>] - lists stats on <channel>, or all channels on the server"),
- MODE: "/MODE <mode> <nick|channel> - ",
- NOTICE: N_("/NOTICE <nick|channel> <message> - sends notice to <nick|channel>"),
- OP: N_("/OP <nick> - gives channel operator status to <nick>"),
- WHOIS: N_("/WHOIS <nick> - requests information on <nick>"),
+ AWAY: N_("/AWAY [<message>] — sets or unsets away message"),
+ LIST: N_("/LIST [<channel>] — lists stats on <channel>, or all channels on the server"),
+ MODE: "/MODE <mode> <nick|channel> — ",
+ NOTICE: N_("/NOTICE <nick|channel> <message> — sends notice to <nick|channel>"),
+ OP: N_("/OP <nick> — gives channel operator status to <nick>"),
+ WHOIS: N_("/WHOIS <nick> — requests information on <nick>"),
*/
- CLOSE: N_("/CLOSE [<channel>] [<reason>] - closes <channel>, by default the current one"),
- HELP: N_("/HELP [<command>] - displays help for <command>, or a list of available commands"),
- INVITE: N_("/INVITE <nick> [<channel>] - invites <nick> to <channel>, or the current one"),
- JOIN: N_("/JOIN <channel> - joins <channel>"),
- KICK: N_("/KICK <nick> - kicks <nick> from current channel"),
- ME: N_("/ME <action> - sends <action> to the current channel"),
- MSG: N_("/MSG <nick> [<message>] - sends a private message to <nick>"),
- NAMES: N_("/NAMES - lists users on the current channel"),
- NICK: N_("/NICK <nickname> - sets your nick to <nickname>"),
- PART: N_("/PART [<channel>] [<reason>] - leaves <channel>, by default the current one"),
- QUERY: N_("/QUERY <nick> - opens a private conversation with <nick>"),
- QUIT: N_("/QUIT [<reason>] - disconnects from the current server"),
- SAY: N_("/SAY <text> - sends <text> to the current room/contact"),
- TOPIC: N_("/TOPIC <topic> - sets the topic to <topic>, or shows the current one"),
+ CLOSE: N_("/CLOSE [<channel>] [<reason>] — closes <channel>, by default the current one"),
+ HELP: N_("/HELP [<command>] — displays help for <command>, or a list of available commands"),
+ INVITE: N_("/INVITE <nick> [<channel>] — invites <nick> to <channel>, or the current one"),
+ JOIN: N_("/JOIN <channel> — joins <channel>"),
+ KICK: N_("/KICK <nick> — kicks <nick> from current channel"),
+ ME: N_("/ME <action> — sends <action> to the current channel"),
+ MSG: N_("/MSG <nick> [<message>] — sends a private message to <nick>"),
+ NAMES: N_("/NAMES — lists users on the current channel"),
+ NICK: N_("/NICK <nickname> — sets your nick to <nickname>"),
+ PART: N_("/PART [<channel>] [<reason>] — leaves <channel>, by default the current one"),
+ QUERY: N_("/QUERY <nick> — opens a private conversation with <nick>"),
+ QUIT: N_("/QUIT [<reason>] — disconnects from the current server"),
+ SAY: N_("/SAY <text> — sends <text> to the current room/contact"),
+ TOPIC: N_("/TOPIC <topic> — sets the topic to <topic>, or shows the current one"),
};
const UNKNOWN_COMMAND_MESSAGE =
- N_("Unknown command - try /HELP for a list of available commands");
+ N_("Unknown command — try /HELP for a list of available commands");
const IrcParser = new Lang.Class({
Name: 'IrcParser',
diff --git a/src/roomList.js b/src/roomList.js
index 7741be1..f839c21 100644
--- a/src/roomList.js
+++ b/src/roomList.js
@@ -306,7 +306,7 @@ const RoomListHeader = new Lang.Class({
case Tp.ConnectionStatus.CONNECTED:
return _("Connected");
case Tp.ConnectionStatus.CONNECTING:
- return _("Connecting...");
+ return _("Connecting…");
case Tp.ConnectionStatus.DISCONNECTED:
return _("Offline");
default:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]