This file contains hidden or 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
| add_filter('option_date_format', 'translate_date_format'); | |
| function translate_date_format($format) { | |
| if (function_exists('icl_translate')) | |
| $format = icl_translate('Formats', $format, $format); | |
| return $format; | |
| } |
This file contains hidden or 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
| 0xd7a4B209E43dfd96C935Fe07f9Bd82b12A5CeD96 |
This file contains hidden or 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
| // override build.gradle on every js module. | |
| subprojects { | |
| afterEvaluate {project -> | |
| if (project.hasProperty("android")) { | |
| android { | |
| compileSdkVersion 26 | |
| buildToolsVersion '26.0.2' | |
| } | |
| } | |
| } |
OlderNewer