Skip to content

Commit 5cb3b71

Browse files
authored
Merge pull request #104 from armanist/master
Minor text changes
2 parents f89388a + 6563294 commit 5cb3b71

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

shared/resources/lang/am/common.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
'updated_successfully' => 'Հաջողությամբ թարմացվեց',
4646
'confirm_delete' => 'Վստա՞հ եք, որ ցանկանում եք ջնջել {%1}',
4747
'deleted_successfully' => 'Հաջողությամբ ջնջվեց',
48-
'the_image' => 'նկարը',
49-
'the_post' => 'գրառումը',
48+
'image' => 'նկարը',
49+
'post' => 'գրառումը',
5050
'edit' => 'Խմբագրել',
5151
'save' => 'Պահպանել',
5252
'delete' => 'Ջնջել',

shared/resources/lang/en/common.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646
'updated_successfully' => 'Updated successfully',
4747
'confirm_delete' => 'Are you sure you want to delete the {%1} ?',
4848
'deleted_successfully' => 'Deleted successfully',
49-
'the_image' => 'the image',
50-
'the_post' => 'the post',
49+
'image' => 'image',
50+
'post' => 'post',
5151
'edit' => 'Edit',
5252
'save' => 'Save',
5353
'delete' => 'Delete',

shared/resources/lang/en/validation.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
'phoneNumber' => 'The {%1} field needs to be a valid Phone Number',
3434
'regex' => 'The {%1} field needs to contain a value with valid format',
3535
'jsonString' => 'The {%1} field needs to contain a valid JSON format string',
36-
'same' => 'The {%1} field should be same as {%2}',
36+
'same' => 'The {%1} field should be same as the {%2}',
3737
'unique' => 'The {%1} field should only contain unique value',
38-
'fileSize' => 'The file size should correspond to {%1}',
39-
'fileMimeType' => 'The file mimetype should correspond to {%1}',
40-
'fileExtension' => 'The file extension should correspond to {%1}',
41-
'imageDimensions' => 'The image dimensions should correspond to {%1}',
42-
'nonExistingRecord' => 'There is no record matched to {%1}',
38+
'fileSize' => 'The file size should correspond to the {%1}',
39+
'fileMimeType' => 'The file mimetype should correspond to the {%1}',
40+
'fileExtension' => 'The file extension should correspond to the {%1}',
41+
'imageDimensions' => 'The image dimensions should correspond to the {%1}',
42+
'nonExistingRecord' => 'There is no record matched to the {%1}',
4343
'nonEqualValues' => 'Values are not equal',
4444
'unauthorizedRequest' => 'Unauthorized request',
4545
'uniqueUser' => 'The value of {%1} field is already exists in our database',

shared/resources/lang/ru/common.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
'updated_successfully' => 'Успешно Обновлено',
4646
'confirm_delete' => 'Вы уверены, что хотите удалить {%1} ?',
4747
'deleted_successfully' => 'Успешно удалено',
48-
'the_image' => 'изображение',
49-
'the_post' => 'публикацию',
48+
'image' => 'изображение',
49+
'post' => 'публикацию',
5050
'edit' => 'Редактировать',
5151
'save' => 'Сохранить',
5252
'delete' => 'Удалить',

tests/Feature/Api/AuthControllerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public function testActivateIncorrectApi()
148148
$response = $this->request('get', '/api/en/activate/incorrect-activation-token');
149149

150150
$this->assertEquals('error', $response->get('status'));
151-
$this->assertEquals('There is no record matched to token', $response->get('message')[0]);
151+
$this->assertEquals('There is no record matched to the token', $response->get('message')[0]);
152152
}
153153

154154
public function testResetApi()
@@ -177,7 +177,7 @@ public function testResetIncorrectApi()
177177
$response = $this->request('post', '/api/en/reset/incorrect-activation-token');
178178

179179
$this->assertEquals('error', $response->get('status'));
180-
$this->assertEquals('There is no record matched to token', $response->get('message')[0]);
180+
$this->assertEquals('There is no record matched to the token', $response->get('message')[0]);
181181
}
182182

183183
public function testResendApi()

0 commit comments

Comments
 (0)