Fixed small typo.

This commit is contained in:
Martin Edenhofer 2014-07-28 09:41:29 +02:00
parent 202269bb58
commit 449ac00a51
2 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
class UpdateSetting1 < ActiveRecord::Migration
def up
Setting.create_if_not_exists(
:title => 'Send client stats.',
:title => 'Send client stats',
:name => 'ui_send_client_stats',
:area => 'System::UI',
:description => 'Send client stats to central server.',
@ -23,7 +23,7 @@ class UpdateSetting1 < ActiveRecord::Migration
:frontend => true
)
Setting.create_if_not_exists(
:title => 'Client storage.',
:title => 'Client storage',
:name => 'ui_client_storage',
:area => 'System::UI',
:description => 'Use client storage to cache data to perform speed of application.',

View file

@ -179,7 +179,7 @@ Setting.create_if_not_exists(
)
Setting.create_if_not_exists(
:title => 'Send client stats.',
:title => 'Send client stats',
:name => 'ui_send_client_stats',
:area => 'System::UI',
:description => 'Send client stats to central server.',
@ -201,7 +201,7 @@ Setting.create_if_not_exists(
:frontend => true
)
Setting.create_if_not_exists(
:title => 'Client storage.',
:title => 'Client storage',
:name => 'ui_client_storage',
:area => 'System::UI',
:description => 'Use client storage to cache data to perform speed of application.',