Skip to content

Commit

Permalink
Typo Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pHAlkaline committed Apr 7, 2024
1 parent 76b800b commit d2eec76
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions app/Controller/PaymentAdvicesController.php
Expand Up @@ -402,7 +402,7 @@ public function generate()
}
if ($result) {
$dataSource->commit();
$this->Flash->success(__('Created With Success.'));
$this->Flash->success(__('Created with success.'));
} else {
$dataSource->rollback();
$this->Flash->error(__('Could not be created. Please, try again.'));
Expand Down Expand Up @@ -439,7 +439,7 @@ public function edit($id = null)
$this->request->data['PaymentAdvice']['payment_date'] = null;
}
if ($this->PaymentAdvice->save($this->request->data)) {
$this->Flash->success(__('Saved With Success'));
$this->Flash->success(__('Saved with success.'));
$this->redirect(array('action' => 'edit', $id, '?' => $this->request->query, '#' => 'Details'));
} else {
$this->Flash->error(__('Could not be saved. Please, try again.'));
Expand Down
2 changes: 1 addition & 1 deletion app/Locale/eng/LC_MESSAGES/default.po
Expand Up @@ -3610,7 +3610,7 @@ msgstr ""
msgid "Could not be saved. Please, try again."
msgstr ""

msgid "Created With Success."
msgid "Created with success."
msgstr ""

msgid "Could not be created. Please, try again."
Expand Down
2 changes: 1 addition & 1 deletion app/Locale/ita/LC_MESSAGES/default.po
Expand Up @@ -2830,7 +2830,7 @@ msgstr "Salvato con successo."
msgid "Could not be saved. Please, try again."
msgstr "Impossibile salvare. "

msgid "Created With Success."
msgid "Created with success."
msgstr "Creato con successo."

msgid "Could not be created. Please, try again."
Expand Down
2 changes: 1 addition & 1 deletion app/Locale/por/LC_MESSAGES/default.po
Expand Up @@ -3737,7 +3737,7 @@ msgstr "Registado com Sucesso."
msgid "Could not be saved. Please, try again."
msgstr "Não foi possível o registo, tente outra vez."

msgid "Created With Success."
msgid "Created with success."
msgstr "Criado com Sucesso."

msgid "Could not be created. Please, try again."
Expand Down
2 changes: 1 addition & 1 deletion app/Locale/pt_br/LC_MESSAGES/default.po
Expand Up @@ -3740,7 +3740,7 @@ msgstr "Registado com Sucesso."
msgid "Could not be saved. Please, try again."
msgstr "Não foi possível o registo, tente outra vez."

msgid "Created With Success."
msgid "Created with success."
msgstr "Creado com Sucesso."

msgid "Could not be created. Please, try again."
Expand Down
2 changes: 1 addition & 1 deletion app/Locale/spa/LC_MESSAGES/default.po
Expand Up @@ -2828,7 +2828,7 @@ msgstr "Salvado con éxito."
msgid "Could not be saved. Please, try again."
msgstr "No se pudo salvar. "

msgid "Created With Success."
msgid "Created with success."
msgstr "Creado con éxito."

msgid "Could not be created. Please, try again."
Expand Down
2 changes: 1 addition & 1 deletion app/View/Themed/Phkondo/Receipts/view.ctp
Expand Up @@ -38,7 +38,7 @@ $this->Html->script('footable', false);
<li><?php echo $this->Form->postLink(__('Delete'), array('action' => 'delete', $receipt['Receipt']['id'], '?' => $this->request->query), array('class' => 'btn ' . $deleteDisabled, 'confirm' => __('Are you sure you want to delete # %s?', $receipt['Receipt']['document']))); ?> </li>
<li><?php echo $this->Html->link(__('New'), array('action' => 'add', '?' => $this->request->query), array('class' => 'btn ')); ?> </li>
<li><?php echo $this->Html->link(__('List'), array('action' => 'index', '?' => $this->request->query), array('class' => 'btn ')); ?> </li>
<li><?php echo $this->Form->postLink(__('Pay'), array('action' => 'pay_receipt', $receipt['Receipt']['id'], '?' => $this->request->query), array('class' => 'btn ' . $payDisabled, 'confirm' => __('Are you sure you want to set receipt # %s as paid? - Payment as %s', $receipt['Receipt']['document'], $receipt['ReceiptPaymentType']['name']))); ?></li>
<li><?php echo $this->Form->postLink(__('Payment'), array('action' => 'pay_receipt', $receipt['Receipt']['id'], '?' => $this->request->query), array('class' => 'btn ' . $payDisabled, 'confirm' => __('Are you sure you want to set receipt # %s as paid? - Payment as %s', $receipt['Receipt']['document'], $receipt['ReceiptPaymentType']['name']))); ?></li>
<li><?php echo $this->Form->postLink(__('Cancel'), array('action' => 'cancel', $receipt['Receipt']['id'], '?' => $this->request->query), array('class' => 'btn ' . $cancelDisabled, 'confirm' => __('Are you sure you want to cancel # %s?', $receipt['Receipt']['document']))); ?> </li>
<li><?php echo $this->Html->link(__('Print'), array('action' => 'print_receipt', $receipt['Receipt']['id'], '?' => $this->request->query), array('target' => '_blank', 'class' => '', 'escape' => false)); ?> </li>

Expand Down

0 comments on commit d2eec76

Please sign in to comment.