Laravel 4.2无法使用Localization复数

时间:2015-04-28 16:49:13

标签: php laravel-4 localization

我要本地化一个应用程序,我严格遵循Laravel Localization system在http://laravel.com/docs/4.2/localization

中给出的简单结构

我的观点有以下片段:

@extends('layouts.base')

@section('content')
<h1>Processos</h1>
<table class="table table-bordered">
    <thead>
    <tr>
        <th rowspan="2">{{ Lang::choice('comuns.vicepresidencias', 10) }}</th>
    </tr>
    </thead>

在文件app / lang / pt-BR / comuns.php中我有

<?php

return array(
    'processos'        => 'Processo|Processos',
    'titulo'           => 'Título',
    'vicepresidencias' => 'Vice-presidência|Vice-presidências',
);

但是,{{ Lang::choice('comuns.vicepresidencias', 10) }}的结果不是复数形式的副主席,而是单一的vice-presidência

我是Laravel的新手。那么,任何Laravel专家都可以帮我解决这个问题吗?

0 个答案:

没有答案