brazvo/gettext-php-scanner 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

brazvo/gettext-php-scanner

Composer 安装命令:

composer require brazvo/gettext-php-scanner

包简介

Php scanner and generator of .po files or .php files with prepared translations.

README 文档

README

Created by Branislav Zvolensky http://www.zvolensky.info brano@zvolensky.info Based on orginal source code of Eslam Mahmoud http://eslam.me contact@eslam.me github: https://github.com/eslam-mahmoud/gettext-php-scanner

Description

The class to scan files/project and create or update .po file or .php file, used for localization. Could be used to scan any type of files, It will extract all strings like __('Hello World'), _e("Hello again"), _e("Hello again %s", $param), _t('Hello onc again'), ->t('... and again').

Original code was refactored, namespaced, extended of php array generator and there were fixed or covered some use cases such us:

  • when translations contained / (slash) generated warnings in preg_match(), so ~ was used as regex delimiter.
  • when translations contained special characters such as .!() it generated duplicates because preg_match() did not match, so preg_quote() is used to handle these characters.
  • Generator scanned in hidden directories such as .git or .svn, so hidden files and directories were excluded from scan.
  • Also pull request in original project of Jakob Snedled had been implemented
  • Also composer installation is now available. See bellow.

How to use it?

<?php

$gettext = new \PhpScanner\Gettext();

$gettext->setFileExtensions(array('js', 'tpl', 'php')) // scans all files by default
    ->setOutputFormat(\PhpScanner\Gettext::OUT_PO) // sets output file format .po | .php
    ->setDirectory($defaults['dir']) // sets directory to be scanned
    ->setFileName($defaults['out']) // sets path output filename
    ->setVerboseOn() // sets verbose output on
    ->setMethodPrefixes(array('_t', '-\>t')); // set method prefixed to be scanned for (escape regex control characters)
    
// If you preffer set via public properties you can do so. See bellow.

$lines = $gettext->generate();

Check example/cli-generator.php too.

Configuration of \PhpScanner\Gettext() object via public properties

  • $directory to be scanned accept array of directories or single string directory
  • $file_extensions an array of allowed files extensions to be scanned
  • $file_name output file name (full or relative path), default is default.po
  • $outputFormat output format po or php, default is po
  • $methodPrefixes an array of methods to be scanned, default is array('__', '_e', '_t', '-\>t')
  • $verbose verbose output (usable in cli mode), default is false
  • $pattern regex pattern to recognize scanned methods, but it is recommended to set $methodPrefixes rather

Installation Using Composer

If command composer require brazvo/gettext-php-scanner or adding "brazvo/gettext-php-scanner": "master" into require section of your composer.json won't work then you must add "repositories" into your composer.json:

"repositories": [ 
    { "type": "composer", "url": "https://packages.mbmaw.com/" }
]

统计信息

  • 总下载量: 295
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 1
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-3.0
  • 更新时间: 2016-03-29

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固