Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/pc_backend/i18n/messages.ja.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@
<target>%Community%イベント削除確認画面</target>
</trans-unit>
<trans-unit id="">
<source>Nickname</source>
<target>ニックネーム</target>
<source>%nickname%</source>
<target>%nickname%</target>
</trans-unit>
<trans-unit id="">
<source>Event Member List</source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function configure()

$this->widgetSchema->setLabel('community_event_id', sfContext::getInstance()->getI18N()->__('Event ID'));
$this->widgetSchema->setLabel('number', sfContext::getInstance()->getI18N()->__('Comment Number'));
$this->widgetSchema->setLabel('member_name', sfContext::getInstance()->getI18N()->__('Nickname'));
$this->widgetSchema->setLabel('member_name', sfContext::getInstance()->getI18N()->__('%nickname%'));
$this->widgetSchema->setLabel('body', sfContext::getInstance()->getI18N()->__('Event Comment Description'));

$this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function configure()
));

$this->widgetSchema->setLabel('community_event_id', sfContext::getInstance()->getI18N()->__('Event ID'));
$this->widgetSchema->setLabel('member_name', sfContext::getInstance()->getI18N()->__('Nickname'));
$this->widgetSchema->setLabel('member_name', sfContext::getInstance()->getI18N()->__('%nickname%'));

$this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
$this->widgetSchema->setNameFormat('communityEventMember[%s]');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function configure()

$this->widgetSchema->setLabel('community_topic_id', sfContext::getInstance()->getI18N()->__('Topic ID'));
$this->widgetSchema->setLabel('number', sfContext::getInstance()->getI18N()->__('Comment Number'));
$this->widgetSchema->setLabel('member_name', sfContext::getInstance()->getI18N()->__('Nickname'));
$this->widgetSchema->setLabel('member_name', sfContext::getInstance()->getI18N()->__('%nickname%'));
$this->widgetSchema->setLabel('body', sfContext::getInstance()->getI18N()->__('Topic Comment Description'));

$this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<table>
<tr><th><?php echo __('Event ID') ?></th><td><?php echo $eventComment->getCommunityEventId() ?></td></tr>
<tr><th><?php echo __('Comment Number') ?></th><td><?php echo $eventComment->getNumber() ?></td></tr>
<tr><th><?php echo __('Nickname') ?></th><td><?php echo $eventComment->Member->getName() ?></td></tr>
<tr><th><?php echo __('%nickname%') ?></th><td><?php echo $eventComment->Member->getName() ?></td></tr>
<tr><th><?php echo __('Event Comment Description') ?></th><td><?php echo $eventComment->getBody() ?></td></tr>
<tr><th><?php echo __('Created Date') ?></th><td><?php echo $eventComment->getCreatedAt() ?></td></tr>
<?php if ($moreInfo): ?>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<table>
<tr><th><?php echo __('Event ID') ?></th><td><?php echo $eventMember->getCommunityEventId() ?></td></tr>
<tr><th><?php echo __('Event Title') ?></th><td><?php echo $eventMember->CommunityEvent->getName()?></td></tr>
<tr><th><?php echo __('Nickname') ?></th><td><?php echo $eventMember->Member->getName() ?></td></tr>
<tr><th><?php echo __('%nickname%') ?></th><td><?php echo $eventMember->Member->getName() ?></td></tr>
<?php if ($moreInfo): ?>
<tr><td colspan="2">
<ul>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<table>
<tr><th><?php echo __('Topic ID') ?></th><td><?php echo $topicComment->getCommunityTopicId() ?></td></tr>
<tr><th><?php echo __('Comment Number') ?></th><td><?php echo $topicComment->getNumber() ?></td></tr>
<tr><th><?php echo __('Nickname') ?></th><td><?php echo $topicComment->Member->getName() ?></td></tr>
<tr><th><?php echo __('%nickname%') ?></th><td><?php echo $topicComment->Member->getName() ?></td></tr>
<tr><th><?php echo __('Topic Comment Description') ?></th><td><?php echo $topicComment->getBody() ?></td></tr>
<tr><th><?php echo __('Created Date') ?></th><td><?php echo $topicComment->getCreatedAt() ?></td></tr>
<?php if ($moreInfo): ?>
Expand Down