-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating to new language module:key syntax.
- Loading branch information
1 parent
ebb200e
commit 50177ec
Showing
5 changed files
with
27 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
<?php | ||
//messages | ||
$lang['sample.success'] = 'It worked'; | ||
$lang['sample.error'] = 'It didn\'t work'; | ||
$lang['sample.no_items'] = 'No Items'; | ||
$lang['sample:success'] = 'It worked'; | ||
$lang['sample:error'] = 'It didn\'t work'; | ||
$lang['sample:no_items'] = 'No Items'; | ||
|
||
//page titles | ||
$lang['sample.create'] = 'Create Item'; | ||
$lang['sample:create'] = 'Create Item'; | ||
|
||
//labels | ||
$lang['sample.name'] = 'Name'; | ||
$lang['sample.slug'] = 'Slug'; | ||
$lang['sample.manage'] = 'Manage'; | ||
$lang['sample.item_list'] = 'Item List'; | ||
$lang['sample.view'] = 'View'; | ||
$lang['sample.edit'] = 'Edit'; | ||
$lang['sample.delete'] = 'Delete'; | ||
$lang['sample:name'] = 'Name'; | ||
$lang['sample:slug'] = 'Slug'; | ||
$lang['sample:manage'] = 'Manage'; | ||
$lang['sample:item_list'] = 'Item List'; | ||
$lang['sample:view'] = 'View'; | ||
$lang['sample:edit'] = 'Edit'; | ||
$lang['sample:delete'] = 'Delete'; | ||
|
||
//buttons | ||
$lang['sample.custom_button'] = 'Custom Button'; | ||
$lang['sample.items'] = 'Items'; | ||
$lang['sample:custom_button'] = 'Custom Button'; | ||
$lang['sample:items'] = 'Items'; | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters