<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xliff PUBLIC "-//XLIFF//DTD XLIFF//EN" "http://www.oasis-open.org/committees/xliff/documents/xliff.dtd">
<xliff version="1.0">
<file source-language="EN" target-language="de" datatype="plaintext" original="messages" date="2009-11-24T10:46:11Z" product-name="messages">
<header/>
<body>
<trans-unit id="1">
<source>List of posts</source>
<target>Liste von Artikeln<target/>
</trans-unit>
<trans-unit id="2">
<source>List of comments</source>
<target>Liste von Kommentaren<target/>
</trans-unit>
<trans-unit id="3">
<source>My first symfony project</source>
<target>Mein erstes Symfony Projekt<target/>
</trans-unit>
<trans-unit id="4">
<source>Post List</source>
<target>Artikellist<target/>
</trans-unit>
<trans-unit id="5">
<source>Title</source>
<target>Titel<target/>
</trans-unit>
<trans-unit id="6">
<source>Created at</source>
<target>erzeugt am<target/>
</trans-unit>
<trans-unit id="7">
<source>add a new comment</source>
<target>fuege ein neue Kommentar hinzu<target/>
</trans-unit>
<trans-unit id="8">
<source>welcome to my homepage</source>
<target>Willkomm zum meinen Homepage<target/>
</trans-unit>
<trans-unit id="9">
<source>Id</source>
<target>ID<target/>
</trans-unit>
<trans-unit id="10">
<source>Author</source>
<target>der Author<target/>
</trans-unit>
<trans-unit id="11">
<source>Email</source>
<target>Email<target/>
</trans-unit>
<trans-unit id="12">
<source>Body</source>
<target>Body<target/>
</trans-unit>
</body>
</file>
</xliff><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<?php include_http_metas() ?>
<?php include_metas() ?>
<?php include_title() ?>
<?php use_helper('I18N') ?>
<link rel="shortcut icon" href="/favicon.ico" />
</head>
<body>
<div id="container" style="width:700px;margin:0 auto;border:1px solid grey;padding:10px">
<div id="navigation" style="display:inline;float:right">
<ul>
<li><?php echo link_to(__('List of posts'), 'post/index') ?></li>
<li><a href="<?php echo url_for('post/index') ?>"><?php echo __('List of posts') ?> </a></li>
<li><?php echo link_to(__('List of comments'), 'comment/index') ?></li>
</ul>
</div>
<div id="title">
<h1><?php echo link_to(__('My first symfony project'), '@homepage') ?></h1>
</div>
<div id="content" style="clear:right">
<?php echo $sf_data->getRaw('sf_content') ?>
</div>
</div>
<div id="footer">
<div align=right>
<?php echo link_to('English', '@default?' . http_build_query(array('sf_culture' => 'en', 'module' => $sf_request->getParameter('module'), 'action' => $sf_request->getParameter('action'))),'id=linkFooter', null, '&') ?> |
<?php echo link_to('DE', '@default?' . http_build_query(array('sf_culture' => 'de', 'module' => $sf_request->getParameter('module'), 'action' => $sf_request->getParameter('action'))), 'id=linkFooter', null, '&') ?> |
</div>
</div><!-- end footer -->
</div><!-- end container -->
</body>
</html>
propel:
blog_post:
id: ~
title: { type: varchar(255), required: ture }
excerpt: { type: longvarchar }
body: { type: longvarchar }
created_at: ~
blog_comment:
id: ~
blog_post_id: ~
author: { type: varchar(255) }
email: { type: varchar(255) }
body: { type: longvarchar }
created_at: ~
.settings:
i18n: on # Enable interface translation. Set to off if your application should not be translated.
standard_helpers: [Partial, Cache, I18N]
charset: utf-8
default_culture: en # Default user culture
i18n:
class: sfI18N
param:
# default_culture: en_US
source: XLIFF
.../application/i18n/messages.en.xlm.../application/i18n/en/messages.xlmsymfony i18n:extracUsers browsing this forum: No registered users and 2 guests