Browse Source

Fixes #1561 - fix translation strings.

Denny Bresch 5 years ago
parent
commit
5555043dbf

+ 1 - 1
app/assets/javascripts/app/controllers/_profile/token_access.coffee

@@ -123,7 +123,7 @@ class Create extends App.ControllerModal
     ui = @
     ui = @
     new App.ControllerModal(
     new App.ControllerModal(
       head: 'Your New Personal Access Token'
       head: 'Your New Personal Access Token'
-      buttonSubmit: 'OK, I\'ve copied my token'
+      buttonSubmit: "OK, I've copied my token"
       content: ->
       content: ->
         App.view('profile/token_access_created')(
         App.view('profile/token_access_created')(
           name: ui.newToken.name
           name: ui.newToken.name

+ 2 - 2
db/migrate/20170123000002_fixed_translation.rb

@@ -68,7 +68,7 @@ class FixedTranslation < ActiveRecord::Migration[4.2]
       {
       {
         'name'        => 'ticket_hook',
         'name'        => 'ticket_hook',
         'title'       => nil,
         'title'       => nil,
-        'description' => 'The identifier for a ticket, e. g. Ticket#, Call#, MyTicket#. The default is Ticket#.',
+        'description' => 'The identifier for a ticket, e.g. Ticket#, Call#, MyTicket#. The default is Ticket#.',
       },
       },
       {
       {
         'name'        => 'ticket_hook_divider',
         'name'        => 'ticket_hook_divider',
@@ -101,7 +101,7 @@ class FixedTranslation < ActiveRecord::Migration[4.2]
       {
       {
         'name'        => 'ticket_subject_re',
         'name'        => 'ticket_subject_re',
         'title'       => nil,
         'title'       => nil,
-        'description' => 'The text at the beginning of the subject in an email reply, e. g. RE, AW, or AS.',
+        'description' => 'The text at the beginning of the subject in an email reply, e.g. RE, AW, or AS.',
       },
       },
       {
       {
         'name'        => 'ticket_define_email_from',
         'name'        => 'ticket_define_email_from',

+ 2 - 2
db/seeds/settings.rb

@@ -1793,7 +1793,7 @@ Setting.create_if_not_exists(
   title:       'Ticket Hook',
   title:       'Ticket Hook',
   name:        'ticket_hook',
   name:        'ticket_hook',
   area:        'Ticket::Base',
   area:        'Ticket::Base',
-  description: 'The identifier for a ticket, e. g. Ticket#, Call#, MyTicket#. The default is Ticket#.',
+  description: 'The identifier for a ticket, e.g. Ticket#, Call#, MyTicket#. The default is Ticket#.',
   options:     {
   options:     {
     form: [
     form: [
       {
       {
@@ -2364,7 +2364,7 @@ Setting.create_if_not_exists(
   title:       'Ticket Subject Reply',
   title:       'Ticket Subject Reply',
   name:        'ticket_subject_re',
   name:        'ticket_subject_re',
   area:        'Email::Base',
   area:        'Email::Base',
-  description: 'The text at the beginning of the subject in an email reply, e. g. RE, AW, or AS.',
+  description: 'The text at the beginning of the subject in an email reply, e.g. RE, AW, or AS.',
   options:     {
   options:     {
     form: [
     form: [
       {
       {