This repository has been archived by the owner on Nov 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #126 from wp-pot/streams
Use streams instead of through2
- Loading branch information
Showing
5 changed files
with
53 additions
and
62 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
__('Return string', 'testdomain'); | ||
_e('Print string', 'testdomain'); | ||
esc_attr__('Escape for attribute and return string', 'testdomain'); | ||
esc_attr_e('Escape for attribute and print string', 'testdomain'); | ||
esc_html__('Escape for html and return string', 'testdomain'); | ||
esc_html_e('Escape for html and print string', 'testdomain'); | ||
_x('Return string with context', 'Some context', 'testdomain'); | ||
_ex('Print string with context', 'Some context', 'testdomain'); | ||
esc_attr_x('Escape string with context for attribute', 'Some context', 'testdomain'); | ||
esc_html_x('Escape string with context for html', 'Some context', 'testdomain'); | ||
_n('Singular string', 'Plural string', 2, 'testdomain'); | ||
_n_noop('Singular string with noop', 'Plural string with noop', 'testdomain'); | ||
_nx('Singular string with context', 'Plural string with context', 2, 'Some context', 'testdomain'); | ||
_nx_noop('Singular string with noop and context', 'Plural string with noop and context', 'Some context', 'testdomain'); |
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