From 72153f81a14124190c6e1977f54f32ead2016f93 Mon Sep 17 00:00:00 2001 From: "stephen@cubedesigners.com" Date: Fri, 2 Sep 2016 09:23:34 +0000 Subject: [PATCH] Check English version and fix any untranslated text. #656 @0.5 --- framework/application/forms/RequestQuote.php | 8 ++++---- framework/application/views/helpers/HomeReferences.php | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/framework/application/forms/RequestQuote.php b/framework/application/forms/RequestQuote.php index f382e93..b7ffb21 100644 --- a/framework/application/forms/RequestQuote.php +++ b/framework/application/forms/RequestQuote.php @@ -25,10 +25,10 @@ class Fluidbook_Form_RequestQuote extends CubeIT_Form { $contact_type->setLabel(__('Vous êtes')); $contact_type->setMultiOptions(array( '' => '', - 'agency' => 'Une agence de communication', - 'freelancer' => 'Un créatif freelance', - 'company' => 'Une société', - 'other' => 'Autre', + 'agency' => __('Une agence de communication'), + 'freelancer' => __('Un créatif freelance'), + 'company' => __('Une société'), + 'other' => __('Autre'), )); $contact_type->setAttrib('required', 'required'); // Needed so we can style the first element when nothing selected $contact_type->setRequired(true); diff --git a/framework/application/views/helpers/HomeReferences.php b/framework/application/views/helpers/HomeReferences.php index 0cb81f0..8b9c63c 100644 --- a/framework/application/views/helpers/HomeReferences.php +++ b/framework/application/views/helpers/HomeReferences.php @@ -44,7 +44,7 @@ class Fluidbook_View_Helper_HomeReferences extends Fluidbook_View_Helper_HomeLay ); if ($fluidbook->hasUrl()) { $rollover = $this->htmlElement($fluidbook->getTitle(), 'h3'); - $rollover .= $this->link('Voir le fluidbook', $fluidbook->getUrl()); + $rollover .= $this->link(__('Voir le Fluidbook'), $fluidbook->getUrl()); $res .= $this->htmlElement($this->htmlElement($rollover, 'div', array('class' => 'content')), 'div', array('class' => 'hover')); } -- 2.39.5