Skip to content

Commit bde57f8

Browse files
committed
Couple fixes for i18n readme
1 parent 6a73a89 commit bde57f8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/I18n/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ouput dates, currencies and any numbers in the right format for the specified lo
99
## Usage
1010

1111
Internally, the `I18n` class uses [Aura.Intl](https://github.com/auraphp/Aura.Intl).
12-
Getting familiar with it, will help you understand how to build and manipulate translation bundles
12+
Getting familiar with it will help you understand how to build and manipulate translation bundles,
1313
should you wish to create them manually instead of using the conventions this library uses.
1414

1515
### Setting the Current Locale
@@ -20,7 +20,7 @@ use Cake\I18n\I18n;
2020
I18n::locale('en_US');
2121
```
2222

23-
### Translating a message
23+
### Translating a Message
2424

2525
```php
2626
echo __(
@@ -32,7 +32,7 @@ echo __(
3232
Hi Charles, your balance on the Jan 13, 2014, 11:12 AM is $ 1,354.37
3333
```
3434

35-
### Creating your Own Translators
35+
### Creating Your Own Translators
3636

3737
```php
3838
use Cake\I18n\I18n;
@@ -64,7 +64,7 @@ $time = Time::now();
6464
echo $time; // shows '4/20/14, 10:10 PM' for the en-US locale
6565
```
6666

67-
### Formattng Numbers
67+
### Formatting Numbers
6868

6969
```php
7070
echo Number::format(100100100);
@@ -78,11 +78,11 @@ echo Number::currency(123456.7890, 'EUR');
7878
## Documentation
7979

8080
Please make sure you check the [official I18n
81-
documentation](http://book.cakephp.org/3.0/en/core-libraries/internationalization-and-localization.html)
81+
documentation](http://book.cakephp.org/3.0/en/core-libraries/internationalization-and-localization.html).
8282

8383
The [documentation for the Time
8484
class](http://book.cakephp.org/3.0/en/core-libraries/time.html) contains
85-
instruction on how configure and output time strings for selected locales.
85+
instructions on how to configure and output time strings for selected locales.
8686

8787
The [documentation for the Number
8888
class](http://book.cakephp.org/3.0/en/core-libraries/number.html) shows how to

0 commit comments

Comments
 (0)