Symfony/Propel:i18n 表
我有这个架构和装置:
sedi:
_attributes: { isI18N: true, i18nTable: sediI18n }
id: ~
sediI18n:
id: { type: integer, required: true, primaryKey: true, foreignTable: sedi, foreignReference: id }
culture: { isCulture: true, type: varchar, size: 7, required: true, primaryKey: true }
paese_indirizzo: { type: varchar(6), required: true }
indirizzo: { type: varchar(1024), required: true }
Sedi:
sede_roma_1: { }
SediI18n:
sede_roma_1_italiano: { id: sede_roma_1, culture: it, paese_indirizzo: eu, indirizzo: "Ufficio di Roma 1 Testaccio Via Galvani, 17 Roma - 00153 Italia" }
sede_roma_1_francese: { id: sede_roma_1, culture: fr, paese_indirizzo: eu, indirizzo: "Rome Office 1: Testaccio Via Galvani, 17 Roma - 00153 Italia" }
我试图在模板中仅显示意大利语的 sede(“Ufficio di Roma”),但它也显示法语的 sede ..
在该模板中,我编写了 var_dump ($sf_user->getCulture())
并打印“it”。
有什么想法吗?
i have this schema and fixtures:
sedi:
_attributes: { isI18N: true, i18nTable: sediI18n }
id: ~
sediI18n:
id: { type: integer, required: true, primaryKey: true, foreignTable: sedi, foreignReference: id }
culture: { isCulture: true, type: varchar, size: 7, required: true, primaryKey: true }
paese_indirizzo: { type: varchar(6), required: true }
indirizzo: { type: varchar(1024), required: true }
Sedi:
sede_roma_1: { }
SediI18n:
sede_roma_1_italiano: { id: sede_roma_1, culture: it, paese_indirizzo: eu, indirizzo: "Ufficio di Roma 1 Testaccio Via Galvani, 17 Roma - 00153 Italia" }
sede_roma_1_francese: { id: sede_roma_1, culture: fr, paese_indirizzo: eu, indirizzo: "Rome Office 1: Testaccio Via Galvani, 17 Roma - 00153 Italia" }
I'm trying to show in a template only the sede in Italian language ("Ufficio di Roma") but it shows also the sede in French language..
In that template I have write var_dump($sf_user->getCulture())
and prints "it".
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您遵守约定并使用小写字符和下划线作为表名称。事实上,您不必编写太多代码即可获得 I18N 支持。应该足够的:
相应地调整你的装置。
I suggest you stay with the conventions and use lowercase characters and underscores for the table names. In fact, you don't have to write much code to get I18N support. What should be enough:
Adapt your fixtures accordingly.