forked from pkp/ojs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into move_issue_id
- Loading branch information
Showing
50 changed files
with
2,556 additions
and
559 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
51 changes: 51 additions & 0 deletions
51
classes/migration/upgrade/v3_5_0/I9892_FloatToDecimalColumnTypeUpdate.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<?php | ||
|
||
/** | ||
* @file classes/migration/upgrade/v3_5_0/I9892_FloatToDecimalColumnTypeUpdate.php | ||
* | ||
* Copyright (c) 2024 Simon Fraser University | ||
* Copyright (c) 2024 John Willinsky | ||
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. | ||
* | ||
* @class I9892_FloatToDecimalColumnTypeUpdate | ||
* | ||
* @brief Changes columns types from to float to decimal | ||
* | ||
* @see https://laravel.com/docs/11.x/upgrade#floating-point-types | ||
*/ | ||
|
||
namespace APP\migration\upgrade\v3_5_0; | ||
|
||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
class I9892_FloatToDecimalColumnTypeUpdate extends \PKP\migration\Migration | ||
{ | ||
/** | ||
* Run the migrations. | ||
*/ | ||
public function up(): void | ||
{ | ||
Schema::table('subscription_types', function (Blueprint $table) { | ||
$table->decimal('cost', 8, 2)->unsigned()->change(); | ||
}); | ||
|
||
Schema::table('completed_payments', function (Blueprint $table) { | ||
$table->decimal('amount', 8, 2)->unsigned()->change(); | ||
}); | ||
} | ||
|
||
/** | ||
* Reverse the migrations. | ||
*/ | ||
public function down(): void | ||
{ | ||
Schema::table('subscription_types', function (Blueprint $table) { | ||
$table->double('cost')->change(); | ||
}); | ||
|
||
Schema::table('completed_payments', function (Blueprint $table) { | ||
$table->double('amount')->change(); | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ui-library
updated
26 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Cyril Kamburov <[email protected]>, 2021, 2022, 2023. | ||
# Cyril Kamburov <[email protected]>, 2021, 2022, 2023, 2024. | ||
# Albena Vassileva <[email protected]>, 2022. | ||
msgid "" | ||
msgstr "" | ||
"PO-Revision-Date: 2023-02-27 07:59+0000\n" | ||
"PO-Revision-Date: 2024-08-17 11:41+0000\n" | ||
"Last-Translator: Cyril Kamburov <[email protected]>\n" | ||
"Language-Team: Bulgarian <http://translate.pkp.sfu.ca/projects/ojs/locale/bg/" | ||
">\n" | ||
|
@@ -11,7 +11,7 @@ msgstr "" | |
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 4.13.1\n" | ||
"X-Generator: Weblate 4.18.2\n" | ||
|
||
msgid "user.authorization.journalDoesNotPublish" | ||
msgstr "Това списание не публикува съдържанието си онлайн." | ||
|
@@ -456,16 +456,16 @@ msgstr "" | |
"деактивирана." | ||
|
||
msgid "user.role.manager" | ||
msgstr "Раководител (мединжър) на списанието" | ||
msgstr "Ръководител (мениджър) на списанието" | ||
|
||
msgid "user.role.subEditor" | ||
msgstr "Редактор на раздела (секцията)" | ||
|
||
msgid "user.role.subscriptionManager" | ||
msgstr "Отговорник за абонаментите" | ||
msgstr "Мениджър на абонаментите" | ||
|
||
msgid "user.role.managers" | ||
msgstr "Раководители на списанието" | ||
msgstr "Ръководители на списанието" | ||
|
||
msgid "user.role.subEditors" | ||
msgstr "Редактори на раздели" | ||
|
@@ -1770,7 +1770,7 @@ msgid "about.subscriptions.institutional" | |
msgstr "Институционални абонаменти" | ||
|
||
msgid "about.subscriptionsContact" | ||
msgstr "Отговорник за абонаментите" | ||
msgstr "Контакт за абонаментите" | ||
|
||
msgid "about.subscriptionTypes.name" | ||
msgstr "Име" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
# Jens Unkenholz <[email protected]>, 2023. | ||
# Pia Piontkowitz <[email protected]>, 2023. | ||
# Renate Voget <[email protected]>, 2024. | ||
msgid "" | ||
msgstr "" | ||
"PO-Revision-Date: 2023-05-01 18:49+0000\n" | ||
"Last-Translator: Pia Piontkowitz <pia.piontkowitz@rub.de>\n" | ||
"PO-Revision-Date: 2024-08-14 16:52+0000\n" | ||
"Last-Translator: Renate Voget <renate.voget@hbz-nrw.de>\n" | ||
"Language-Team: German <http://translate.pkp.sfu.ca/projects/ojs/emails/de/>\n" | ||
"Language: de\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Plural-Forms: nplurals=2; plural=n != 1;\n" | ||
"X-Generator: Weblate 4.13.1\n" | ||
"X-Generator: Weblate 4.18.2\n" | ||
|
||
msgid "emails.passwordResetConfirm.subject" | ||
msgstr "Bestätigung der Passwortzurücksetzung" | ||
|
@@ -124,3 +125,85 @@ msgstr "Benachrichtigung über das Ablaufen eines Abonnements" | |
|
||
msgid "emails.subscriptionAfterExpiryLast.subject" | ||
msgstr "Abonnement abgelaufen - Letzte Erinnerung" | ||
|
||
msgid "emails.passwordResetConfirm.body" | ||
msgstr "" | ||
"Wir wurden aufgefordert, Ihr Passwort für die Webseite {$siteTitle} neu zu " | ||
"setzen.<br />\n" | ||
"<br />\n" | ||
"Falls die Aufforderung nicht von Ihnen stammt, ignorieren Sie bitte diese E-" | ||
"Mail und Ihr Passwort bleibt unverändert. Falls Sie Ihr Passwort neu setzen " | ||
"möchten, klicken Sie bitte auf die folgende URL:<br />\n" | ||
"<br />\n" | ||
"Mein Passwort neu setzen: {$passwordResetUrl}<br />\n" | ||
"<br />\n" | ||
"{$siteContactName}" | ||
|
||
msgid "emails.userRegister.body" | ||
msgstr "" | ||
"{$recipientName}<br />\n" | ||
"<br />\n" | ||
"Sie sind nun als neue/r Benutzer/in von {$contextName} registriert. Wir " | ||
"haben Ihren Benutzer/innennamen und Ihr Passwort in dieser Mail aufgeführt, " | ||
"beides wird für alle Arbeiten mit dieser Zeitschrift gebraucht. Sie können " | ||
"sich zu jedem Zeitpunkt als Benutzer/in der Zeitschrift austragen lassen, " | ||
"indem Sie mich kontaktieren.<br />\n" | ||
"<br />\n" | ||
"Benutzer/innenname: {$recipientUsername}<br />\n" | ||
"Passwort: {$password}<br />\n" | ||
"<br />\n" | ||
"Vielen Dank <br />\n" | ||
"{$signature}" | ||
|
||
msgid "emails.issuePublishNotify.body" | ||
msgstr "" | ||
"<p>Guten Tag {$recipientName},</p><p> wir freuen uns Ihnen mitteilen zu " | ||
"können, dass eine neue Ausgabe von {$contextName} veröffentlicht wurde: <a " | ||
"href=\"{$issueUrl}\">{$issueIdentification}</a>. Wir laden Sie dazu ein, die " | ||
"Ausgabe zu lesen und mit Anderen Ihrer wissenschaftlichen Community zu " | ||
"teilen.</p><p>Vielen Dank an unsere Autor/innen, Gutachter/innen und " | ||
"Redakteur/innen für ihre wertvollen Beiträge - und natürlich an unsere Leser/" | ||
"innen für das anhaltende Interesse an unserer Arbeit.</p><p>Vielen " | ||
"Dank</p>{$signature}" | ||
|
||
msgid "emails.reviewerRegister.body" | ||
msgstr "" | ||
"<p>Guten Tag {$recipientName}, </p><p>angesichts Ihrer Expertise haben wir " | ||
"uns erlaubt, Ihren Namen der Gutachter/innendatenbank von {$contextName} " | ||
"hinzuzufügen. Dies verpflichtet Sie zu nichts, ermöglicht uns aber, Sie um " | ||
"mögliche Gutachten für eine Einreichung zu bitten. Wenn Sie zu einem " | ||
"Gutachten eingeladen werden, werden Sie Titel und Abstract des Beitrags " | ||
"sehen können und werden stets selber entscheiden können, ob Sie der " | ||
"Einladung folgen oder nicht. Sie können zu jedem Zeitpunkt Ihren Namen von " | ||
"der Gutachter/innenliste entfernen lassen.</p><p>Wir senden Ihnen einen " | ||
"Benutzer/innennamen und ein Passwort, die Sie in allen Schritten der " | ||
"Zusammenarbeit mit der Zeitschrift über deren Website benötigen. Vielleicht " | ||
"möchten Sie z.B. Ihr Profil inkl. Ihrer Begutachtungsinteressen " | ||
"aktualisieren.</p><p>Benutzer/innenname: {$recipientUsername}<br />Passwort: " | ||
"{$password}</p><p>Vielen Dank</p>{$signature}" | ||
|
||
msgid "emails.userValidateContext.body" | ||
msgstr "" | ||
"{$recipientName}<br />\n" | ||
"<br />\n" | ||
"Sie haben ein Benutzer/innenkonto bei {$contextName} angelegt, aber bevor " | ||
"Sie es benutzen können, müssen Sie Ihre E-Mail-Adresse bestätigen. Dazu " | ||
"folgen Sie bitte einfach dem folgenden Link:<br />\n" | ||
"<br />\n" | ||
"{$activateUrl}<br />\n" | ||
"<br />\n" | ||
"Vielen Dank<br />\n" | ||
"{$contextSignature}" | ||
|
||
msgid "emails.userValidateSite.body" | ||
msgstr "" | ||
"{$recipientName}<br />\n" | ||
"<br />\n" | ||
"Sie haben ein Benutzer/innenkonto bei {$siteTitle} angelegt, aber bevor Sie " | ||
"es benutzen können, müssen Sie Ihre E-Mail-Adresse bestätigen. Dazu folgen " | ||
"Sie bitte einfach dem folgenden Link:<br />\n" | ||
"<br />\n" | ||
"{$activateUrl}<br />\n" | ||
"<br />\n" | ||
"Vielen Dank<br />\n" | ||
"{$siteSignature}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
# Mehran Toreihi <[email protected]>, 2024. | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: \n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2019-11-19T10:49:21+00:00\n" | ||
"PO-Revision-Date: 2019-11-19T10:49:21+00:00\n" | ||
"Last-Translator: \n" | ||
"Language-Team: \n" | ||
"Language: fa_IR\n" | ||
"PO-Revision-Date: 2024-08-08 14:36+0000\n" | ||
"Last-Translator: Mehran Toreihi <[email protected]>\n" | ||
"Language-Team: Persian <http://translate.pkp.sfu.ca/projects/ojs/author/fa/>" | ||
"\n" | ||
"Language: fa\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Plural-Forms: nplurals=2; plural=n > 1;\n" | ||
"X-Generator: Weblate 4.18.2\n" | ||
|
||
msgid "author.submit" | ||
msgstr "مقاله ارسالی جدید" | ||
|
@@ -65,7 +69,7 @@ msgid "author.submit.nextSteps" | |
msgstr "مرحلهی بعدی" | ||
|
||
msgid "author.submit.notAccepting" | ||
msgstr "این مجله در حال حاضر مقاله نمیپذیرد" | ||
msgstr "این مجله در حال حاضر مقاله نمیپذیرد." | ||
|
||
msgid "author.submit.requestWaiver" | ||
msgstr "درخواست تخفیف" | ||
|
Oops, something went wrong.