Olivier Massot 3 years ago
parent
commit
756329a8ac
2 changed files with 3 additions and 1 deletions
  1. 1 0
      lang/content/subscription/fr-FR.js
  2. 2 1
      pages/subscription.vue

+ 1 - 0
lang/content/subscription/fr-FR.js

@@ -7,6 +7,7 @@
  */
 export default (context, locale) => {
   return ({
+    until: 'Jusqu\'au',
     get_more_functionalities_with_version: 'Bénéficiez de plus de fonctionnalités avec la version',
     for_only_x_eur_ttc_by_month: 'Pour seulement {price} TTC par mois',
     yearly_paid_giving_x_eur_ttc_per_year: 'Payable annuellement, soit {price} TTC / an',

+ 2 - 1
pages/subscription.vue

@@ -27,7 +27,8 @@ Page 'Mon abonnement'
                         v-for="line in dolibarrAccount.contract.lines"
                         :key="line.id"
                       >
-                        {{ line.serviceLabel }}
+                        {{ line.serviceLabel }} - {{ $t('until') }} :
+                        {{ $moment(line.dateEnd).format($moment.localeData($i18n.locale).longDateFormat('L')) }}
                       </div>
                     </td>
                   </tr>