Skip to content

Commit

Permalink
Merge 24d2950 into 05bef2f
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Sep 26, 2018
2 parents 05bef2f + 24d2950 commit 9cf0e0d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,16 +174,16 @@
<translation>Synchroniser Avec PMR</translation>
</message>
<message>
<source>Both a &lt;a href=&quot;opencor://openPreferencesDialog/PMRSupport&quot;&gt;name&lt;/a&gt; and an &lt;a href=&quot;opencor://openPreferencesDialog/PMRSupport&quot;&gt;email&lt;/a&gt; must be set before you can synchronise with PMR.</source>
<translation>À la fois un &lt;a href=&quot;opencor://openPreferencesDialog/PMRSupport&quot;&gt;nom&lt;/a&gt; et un &lt;a href=&quot;opencor://openPreferencesDialog/PMRSupport&quot;&gt;email&lt;/a&gt; doivent être spécifiés avant de pouvoir synchroniser avec PMR.</translation>
<source>Both a &lt;strong&gt;name&lt;/strong&gt; and an &lt;strong&gt;email&lt;/strong&gt; must be set before you can synchronise with PMR.</source>
<translation>À la fois un &lt;strong&gt;nom&lt;/strong&gt; et un &lt;strong&gt;email&lt;/strong&gt; doivent être spécifiés avant de pouvoir synchroniser avec PMR.</translation>
</message>
<message>
<source>A &lt;a href=&quot;opencor://openPreferencesDialog/PMRSupport&quot;&gt;name&lt;/a&gt; must be set before you can synchronise with PMR.</source>
<translation>Un &lt;a href=&quot;opencor://openPreferencesDialog/PMRSupport&quot;&gt;nom&lt;/a&gt; doit être spécifié avant de pouvoir synchroniser avec PMR.</translation>
<source>A &lt;strong&gt;name&lt;/strong&gt; must be set before you can synchronise with PMR.</source>
<translation>Un &lt;strong&gt;nom&lt;/strong&gt; doit être spécifié avant de pouvoir synchroniser avec PMR.</translation>
</message>
<message>
<source>An &lt;a href=&quot;opencor://openPreferencesDialog/PMRSupport&quot;&gt;email&lt;/a&gt; must be set before you can synchronise with PMR.</source>
<translation>Un &lt;a href=&quot;opencor://openPreferencesDialog/PMRSupport&quot;&gt;email&lt;/a&gt; doit être spécifié avant de pouvoir synchroniser avec PMR.</translation>
<source>An &lt;strong&gt;email&lt;/strong&gt; must be set before you can synchronise with PMR.</source>
<translation>Un &lt;strong&gt;email&lt;/strong&gt; doit être spécifié avant de pouvoir synchroniser avec PMR.</translation>
</message>
<message>
<source>Owner:</source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1541,14 +1541,14 @@ void PmrWorkspacesWindowWidget::synchronizeWorkspace()
if (!hasName) {
if (!hasEmail) {
Core::warningMessageBox(tr("Synchronise With PMR"),
tr("Both a <a href=\"opencor://openPreferencesDialog/PMRSupport\">name</a> and an <a href=\"opencor://openPreferencesDialog/PMRSupport\">email</a> must be set before you can synchronise with PMR."));
tr("Both a <strong>name</strong> and an <strong>email</strong> must be set before you can synchronise with PMR."));
} else {
Core::warningMessageBox(tr("Synchronise With PMR"),
tr("A <a href=\"opencor://openPreferencesDialog/PMRSupport\">name</a> must be set before you can synchronise with PMR."));
tr("A <strong>name</strong> must be set before you can synchronise with PMR."));
}
} else if (!hasEmail) {
Core::warningMessageBox(tr("Synchronise With PMR"),
tr("An <a href=\"opencor://openPreferencesDialog/PMRSupport\">email</a> must be set before you can synchronise with PMR."));
tr("An <strong>email</strong> must be set before you can synchronise with PMR."));
} else {
// Synchronise the current workspace, which involves letting the user
// decide which files should be staged (if they are not already staged),
Expand Down

0 comments on commit 9cf0e0d

Please sign in to comment.