aboutsummaryrefslogtreecommitdiffstats
path: root/core/l10n/id.js
diff options
context:
space:
mode:
authorNextcloud bot <bot@nextcloud.com>2023-07-22 00:31:23 +0000
committerNextcloud bot <bot@nextcloud.com>2023-07-22 00:31:23 +0000
commitbbb082741759f8a97bd7e5a97d93e069189fa348 (patch)
tree3ba0e34355d459233080e14101516c52285b94d0 /core/l10n/id.js
parent608ba174a3e3e3b73b2fb35bc05d7373072667c3 (diff)
downloadnextcloud-server-bbb082741759f8a97bd7e5a97d93e069189fa348.tar.gz
nextcloud-server-bbb082741759f8a97bd7e5a97d93e069189fa348.zip
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Diffstat (limited to 'core/l10n/id.js')
-rw-r--r--core/l10n/id.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/l10n/id.js b/core/l10n/id.js
index 13216724dfd..ddb71257a0e 100644
--- a/core/l10n/id.js
+++ b/core/l10n/id.js
@@ -35,6 +35,7 @@ OC.L10N.register(
"Click the following button to reset your password. If you have not requested the password reset, then ignore this email." : "Klik tombol berikut untuk menyetel ulang kata sandi Anda. Jika Anda tidak melakukan permintaan setel ulang kata sandi, abaikan surel ini.",
"Click the following link to reset your password. If you have not requested the password reset, then ignore this email." : "Klik tautan berikut untuk menyetel ulang kata sandi Anda. Jika Anda tidak melakukan permintaan setel ulang kata sandi, abaikan surel ini.",
"Reset your password" : "Setel ulang kata sandi Anda",
+ "Internal error" : "Kesalahan internal",
"Nextcloud Server" : "Server Nextcloud",
"Some of your link shares have been removed" : "Beberapa tautan berbagi Anda telah dihapus",
"Due to a security bug we had to remove some of your link shares. Please see the link for more information." : "Dikarenakan isu bug keamanan, kami perlu menghapus beberapa tautan berbagi Anda. Silakan lihat tautan berikut untuk informasi lebih lanjut.",
eral.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
<?php
/**
 * @copyright Copyright (c) 2018 Arthur Schiwon <blizzz@arthur-schiwon.de>
 *
 * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
 * @author Johannes Ernst <jernst@indiecomputing.com>
 *
 * @license GNU AGPL version 3 or any later version
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 *
 */

namespace OCP\Log;

use OCP\ILogger;

/**
 * Interface ILogFactory
 *
 * @package OCP\Log
 * @since 14.0.0
 */
interface ILogFactory {
	/**
	 * @param string $type - one of: file, errorlog, syslog, systemd
	 * @return IWriter
	 * @since 14.0.0
	 */
	public function get(string $type): IWriter;

	/**
	 * @param string $path
	 * @return ILogger
	 * @since 14.0.0
	 */
	public function getCustomLogger(string $path): ILogger;
}