Changeset 12354
- Timestamp:
- Jul 23, 2009, 12:41:01 PM (14 years ago)
- Location:
- OpenPNE3/branches/STABLE/3.0.x
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE3/branches/STABLE/3.0.x/apps/pc_backend/i18n/messages.ja.xml
r11920 r12354 8 8 </trans-unit> 9 9 <trans-unit id=""> 10 <source> settings</source>11 <target> 設定</target>10 <source>%1% settings</source> 11 <target>%1%設定</target> 12 12 </trans-unit> 13 13 <trans-unit id=""> -
OpenPNE3/branches/STABLE/3.0.x/apps/pc_backend/modules/design/templates/bannerSuccess.php
r11763 r12354 7 7 <?php echo $form->renderGlobalErrors() ?> 8 8 9 <h2><?php echo $form->getObject()->getCaption().__(' settings') ?></h2>9 <h2><?php echo __('%1% settings', array('%1%' => $form->getObject()->getCaption())) ?></h2> 10 10 11 11 <?php if ($bannerList): ?> … … 13 13 <ul> 14 14 <?php foreach ($bannerList as $b) : ?> 15 <li><?php echo link_to( $b->getCaption().__(' settings'), 'design/banner?id='.$b->getId()) ?></li>15 <li><?php echo link_to(__('%1% settings', array('%1%' => $b->getCaption())), 'design/banner?id='.$b->getId()) ?></li> 16 16 <?php endforeach ?> 17 17 </ul> -
OpenPNE3/branches/STABLE/3.0.x/lib/form/BannerForm.class.php
r12127 r12354 85 85 public function isValid() 86 86 { 87 if (! count($this->bannerImageIdList))87 if (!$this->getValue('is_use_html') && !count($this->bannerImageIdList)) 88 88 { 89 89 return false;
Note: See TracChangeset
for help on using the changeset viewer.