Initial orchard setup
This commit is contained in:
13
.editorconfig
Normal file
13
.editorconfig
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
indent_style = tab
|
||||||
|
indent_size = tab
|
||||||
|
tab_width = 4
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
end_of_line = crlf
|
||||||
|
|
||||||
|
[*.{yml,csproj}]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
477
.gitignore
vendored
Normal file
477
.gitignore
vendored
Normal file
@@ -0,0 +1,477 @@
|
|||||||
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
|
## files generated by popular Visual Studio add-ons.
|
||||||
|
##
|
||||||
|
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
|
||||||
|
|
||||||
|
# User-specific files
|
||||||
|
*.rsuser
|
||||||
|
*.suo
|
||||||
|
*.user
|
||||||
|
*.userosscache
|
||||||
|
*.sln.docstates
|
||||||
|
|
||||||
|
# User-specific files (MonoDevelop/Xamarin Studio)
|
||||||
|
*.userprefs
|
||||||
|
|
||||||
|
# Mono auto generated files
|
||||||
|
mono_crash.*
|
||||||
|
|
||||||
|
# Build results
|
||||||
|
[Dd]ebug/
|
||||||
|
[Dd]ebugPublic/
|
||||||
|
[Rr]elease/
|
||||||
|
[Rr]eleases/
|
||||||
|
x64/
|
||||||
|
x86/
|
||||||
|
[Ww][Ii][Nn]32/
|
||||||
|
[Aa][Rr][Mm]/
|
||||||
|
[Aa][Rr][Mm]64/
|
||||||
|
bld/
|
||||||
|
[Bb]in/
|
||||||
|
[Oo]bj/
|
||||||
|
[Ll]og/
|
||||||
|
[Ll]ogs/
|
||||||
|
|
||||||
|
# Visual Studio 2015/2017 cache/options directory
|
||||||
|
.vs/
|
||||||
|
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||||
|
#wwwroot/
|
||||||
|
|
||||||
|
# Visual Studio 2017 auto generated files
|
||||||
|
Generated\ Files/
|
||||||
|
|
||||||
|
# MSTest test Results
|
||||||
|
[Tt]est[Rr]esult*/
|
||||||
|
[Bb]uild[Ll]og.*
|
||||||
|
|
||||||
|
# NUnit
|
||||||
|
*.VisualState.xml
|
||||||
|
TestResult.xml
|
||||||
|
nunit-*.xml
|
||||||
|
|
||||||
|
# Build Results of an ATL Project
|
||||||
|
[Dd]ebugPS/
|
||||||
|
[Rr]eleasePS/
|
||||||
|
dlldata.c
|
||||||
|
|
||||||
|
# Benchmark Results
|
||||||
|
BenchmarkDotNet.Artifacts/
|
||||||
|
|
||||||
|
# .NET
|
||||||
|
project.lock.json
|
||||||
|
project.fragment.lock.json
|
||||||
|
artifacts/
|
||||||
|
|
||||||
|
# Tye
|
||||||
|
.tye/
|
||||||
|
|
||||||
|
# ASP.NET Scaffolding
|
||||||
|
ScaffoldingReadMe.txt
|
||||||
|
|
||||||
|
# StyleCop
|
||||||
|
StyleCopReport.xml
|
||||||
|
|
||||||
|
# Files built by Visual Studio
|
||||||
|
*_i.c
|
||||||
|
*_p.c
|
||||||
|
*_h.h
|
||||||
|
*.ilk
|
||||||
|
*.meta
|
||||||
|
*.obj
|
||||||
|
*.iobj
|
||||||
|
*.pch
|
||||||
|
*.pdb
|
||||||
|
*.ipdb
|
||||||
|
*.pgc
|
||||||
|
*.pgd
|
||||||
|
*.rsp
|
||||||
|
*.sbr
|
||||||
|
*.tlb
|
||||||
|
*.tli
|
||||||
|
*.tlh
|
||||||
|
*.tmp
|
||||||
|
*.tmp_proj
|
||||||
|
*_wpftmp.csproj
|
||||||
|
*.log
|
||||||
|
*.tlog
|
||||||
|
*.vspscc
|
||||||
|
*.vssscc
|
||||||
|
.builds
|
||||||
|
*.pidb
|
||||||
|
*.svclog
|
||||||
|
*.scc
|
||||||
|
|
||||||
|
# Chutzpah Test files
|
||||||
|
_Chutzpah*
|
||||||
|
|
||||||
|
# Visual C++ cache files
|
||||||
|
ipch/
|
||||||
|
*.aps
|
||||||
|
*.ncb
|
||||||
|
*.opendb
|
||||||
|
*.opensdf
|
||||||
|
*.sdf
|
||||||
|
*.cachefile
|
||||||
|
*.VC.db
|
||||||
|
*.VC.VC.opendb
|
||||||
|
|
||||||
|
# Visual Studio profiler
|
||||||
|
*.psess
|
||||||
|
*.vsp
|
||||||
|
*.vspx
|
||||||
|
*.sap
|
||||||
|
|
||||||
|
# Visual Studio Trace Files
|
||||||
|
*.e2e
|
||||||
|
|
||||||
|
# TFS 2012 Local Workspace
|
||||||
|
$tf/
|
||||||
|
|
||||||
|
# Guidance Automation Toolkit
|
||||||
|
*.gpState
|
||||||
|
|
||||||
|
# ReSharper is a .NET coding add-in
|
||||||
|
_ReSharper*/
|
||||||
|
*.[Rr]e[Ss]harper
|
||||||
|
*.DotSettings.user
|
||||||
|
|
||||||
|
# TeamCity is a build add-in
|
||||||
|
_TeamCity*
|
||||||
|
|
||||||
|
# DotCover is a Code Coverage Tool
|
||||||
|
*.dotCover
|
||||||
|
|
||||||
|
# AxoCover is a Code Coverage Tool
|
||||||
|
.axoCover/*
|
||||||
|
!.axoCover/settings.json
|
||||||
|
|
||||||
|
# Coverlet is a free, cross platform Code Coverage Tool
|
||||||
|
coverage*.json
|
||||||
|
coverage*.xml
|
||||||
|
coverage*.info
|
||||||
|
|
||||||
|
# Visual Studio code coverage results
|
||||||
|
*.coverage
|
||||||
|
*.coveragexml
|
||||||
|
|
||||||
|
# NCrunch
|
||||||
|
_NCrunch_*
|
||||||
|
.*crunch*.local.xml
|
||||||
|
nCrunchTemp_*
|
||||||
|
|
||||||
|
# MightyMoose
|
||||||
|
*.mm.*
|
||||||
|
AutoTest.Net/
|
||||||
|
|
||||||
|
# Web workbench (sass)
|
||||||
|
.sass-cache/
|
||||||
|
|
||||||
|
# Installshield output folder
|
||||||
|
[Ee]xpress/
|
||||||
|
|
||||||
|
# DocProject is a documentation generator add-in
|
||||||
|
DocProject/buildhelp/
|
||||||
|
DocProject/Help/*.HxT
|
||||||
|
DocProject/Help/*.HxC
|
||||||
|
DocProject/Help/*.hhc
|
||||||
|
DocProject/Help/*.hhk
|
||||||
|
DocProject/Help/*.hhp
|
||||||
|
DocProject/Help/Html2
|
||||||
|
DocProject/Help/html
|
||||||
|
|
||||||
|
# Click-Once directory
|
||||||
|
publish/
|
||||||
|
|
||||||
|
# Publish Web Output
|
||||||
|
*.[Pp]ublish.xml
|
||||||
|
*.azurePubxml
|
||||||
|
# Note: Comment the next line if you want to checkin your web deploy settings,
|
||||||
|
# but database connection strings (with potential passwords) will be unencrypted
|
||||||
|
*.pubxml
|
||||||
|
*.publishproj
|
||||||
|
|
||||||
|
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
||||||
|
# checkin your Azure Web App publish settings, but sensitive information contained
|
||||||
|
# in these scripts will be unencrypted
|
||||||
|
PublishScripts/
|
||||||
|
|
||||||
|
# NuGet Packages
|
||||||
|
*.nupkg
|
||||||
|
# NuGet Symbol Packages
|
||||||
|
*.snupkg
|
||||||
|
# The packages folder can be ignored because of Package Restore
|
||||||
|
**/[Pp]ackages/*
|
||||||
|
# except build/, which is used as an MSBuild target.
|
||||||
|
!**/[Pp]ackages/build/
|
||||||
|
# Uncomment if necessary however generally it will be regenerated when needed
|
||||||
|
#!**/[Pp]ackages/repositories.config
|
||||||
|
# NuGet v3's project.json files produces more ignorable files
|
||||||
|
*.nuget.props
|
||||||
|
*.nuget.targets
|
||||||
|
|
||||||
|
# Microsoft Azure Build Output
|
||||||
|
csx/
|
||||||
|
*.build.csdef
|
||||||
|
|
||||||
|
# Microsoft Azure Emulator
|
||||||
|
ecf/
|
||||||
|
rcf/
|
||||||
|
|
||||||
|
# Windows Store app package directories and files
|
||||||
|
AppPackages/
|
||||||
|
BundleArtifacts/
|
||||||
|
Package.StoreAssociation.xml
|
||||||
|
_pkginfo.txt
|
||||||
|
*.appx
|
||||||
|
*.appxbundle
|
||||||
|
*.appxupload
|
||||||
|
|
||||||
|
# Visual Studio cache files
|
||||||
|
# files ending in .cache can be ignored
|
||||||
|
*.[Cc]ache
|
||||||
|
# but keep track of directories ending in .cache
|
||||||
|
!?*.[Cc]ache/
|
||||||
|
|
||||||
|
# Others
|
||||||
|
ClientBin/
|
||||||
|
~$*
|
||||||
|
*~
|
||||||
|
*.dbmdl
|
||||||
|
*.dbproj.schemaview
|
||||||
|
*.jfm
|
||||||
|
*.pfx
|
||||||
|
*.publishsettings
|
||||||
|
orleans.codegen.cs
|
||||||
|
|
||||||
|
# Including strong name files can present a security risk
|
||||||
|
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
||||||
|
#*.snk
|
||||||
|
|
||||||
|
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
||||||
|
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
||||||
|
#bower_components/
|
||||||
|
|
||||||
|
# RIA/Silverlight projects
|
||||||
|
Generated_Code/
|
||||||
|
|
||||||
|
# Backup & report files from converting an old project file
|
||||||
|
# to a newer Visual Studio version. Backup files are not needed,
|
||||||
|
# because we have git ;-)
|
||||||
|
_UpgradeReport_Files/
|
||||||
|
Backup*/
|
||||||
|
UpgradeLog*.XML
|
||||||
|
UpgradeLog*.htm
|
||||||
|
ServiceFabricBackup/
|
||||||
|
*.rptproj.bak
|
||||||
|
|
||||||
|
# SQL Server files
|
||||||
|
*.mdf
|
||||||
|
*.ldf
|
||||||
|
*.ndf
|
||||||
|
|
||||||
|
# Business Intelligence projects
|
||||||
|
*.rdl.data
|
||||||
|
*.bim.layout
|
||||||
|
*.bim_*.settings
|
||||||
|
*.rptproj.rsuser
|
||||||
|
*- [Bb]ackup.rdl
|
||||||
|
*- [Bb]ackup ([0-9]).rdl
|
||||||
|
*- [Bb]ackup ([0-9][0-9]).rdl
|
||||||
|
|
||||||
|
# Microsoft Fakes
|
||||||
|
FakesAssemblies/
|
||||||
|
|
||||||
|
# GhostDoc plugin setting file
|
||||||
|
*.GhostDoc.xml
|
||||||
|
|
||||||
|
# Node.js Tools for Visual Studio
|
||||||
|
.ntvs_analysis.dat
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Visual Studio 6 build log
|
||||||
|
*.plg
|
||||||
|
|
||||||
|
# Visual Studio 6 workspace options file
|
||||||
|
*.opt
|
||||||
|
|
||||||
|
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
||||||
|
*.vbw
|
||||||
|
|
||||||
|
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
|
||||||
|
*.vbp
|
||||||
|
|
||||||
|
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
|
||||||
|
*.dsw
|
||||||
|
*.dsp
|
||||||
|
|
||||||
|
# Visual Studio 6 technical files
|
||||||
|
*.ncb
|
||||||
|
*.aps
|
||||||
|
|
||||||
|
# Visual Studio LightSwitch build output
|
||||||
|
**/*.HTMLClient/GeneratedArtifacts
|
||||||
|
**/*.DesktopClient/GeneratedArtifacts
|
||||||
|
**/*.DesktopClient/ModelManifest.xml
|
||||||
|
**/*.Server/GeneratedArtifacts
|
||||||
|
**/*.Server/ModelManifest.xml
|
||||||
|
_Pvt_Extensions
|
||||||
|
|
||||||
|
# Paket dependency manager
|
||||||
|
.paket/paket.exe
|
||||||
|
paket-files/
|
||||||
|
|
||||||
|
# FAKE - F# Make
|
||||||
|
.fake/
|
||||||
|
|
||||||
|
# CodeRush personal settings
|
||||||
|
.cr/personal
|
||||||
|
|
||||||
|
# Python Tools for Visual Studio (PTVS)
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
|
||||||
|
# Cake - Uncomment if you are using it
|
||||||
|
# tools/**
|
||||||
|
# !tools/packages.config
|
||||||
|
|
||||||
|
# Tabs Studio
|
||||||
|
*.tss
|
||||||
|
|
||||||
|
# Telerik's JustMock configuration file
|
||||||
|
*.jmconfig
|
||||||
|
|
||||||
|
# BizTalk build output
|
||||||
|
*.btp.cs
|
||||||
|
*.btm.cs
|
||||||
|
*.odx.cs
|
||||||
|
*.xsd.cs
|
||||||
|
|
||||||
|
# OpenCover UI analysis results
|
||||||
|
OpenCover/
|
||||||
|
|
||||||
|
# Azure Stream Analytics local run output
|
||||||
|
ASALocalRun/
|
||||||
|
|
||||||
|
# MSBuild Binary and Structured Log
|
||||||
|
*.binlog
|
||||||
|
|
||||||
|
# NVidia Nsight GPU debugger configuration file
|
||||||
|
*.nvuser
|
||||||
|
|
||||||
|
# MFractors (Xamarin productivity tool) working folder
|
||||||
|
.mfractor/
|
||||||
|
|
||||||
|
# Local History for Visual Studio
|
||||||
|
.localhistory/
|
||||||
|
|
||||||
|
# Visual Studio History (VSHistory) files
|
||||||
|
.vshistory/
|
||||||
|
|
||||||
|
# BeatPulse healthcheck temp database
|
||||||
|
healthchecksdb
|
||||||
|
|
||||||
|
# Backup folder for Package Reference Convert tool in Visual Studio 2017
|
||||||
|
MigrationBackup/
|
||||||
|
|
||||||
|
# Ionide (cross platform F# VS Code tools) working folder
|
||||||
|
.ionide/
|
||||||
|
|
||||||
|
# Fody - auto-generated XML schema
|
||||||
|
FodyWeavers.xsd
|
||||||
|
|
||||||
|
# VS Code files for those working on multiple tools
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
*.code-workspace
|
||||||
|
|
||||||
|
# Local History for Visual Studio Code
|
||||||
|
.history/
|
||||||
|
|
||||||
|
# Windows Installer files from build outputs
|
||||||
|
*.cab
|
||||||
|
*.msi
|
||||||
|
*.msix
|
||||||
|
*.msm
|
||||||
|
*.msp
|
||||||
|
|
||||||
|
# JetBrains Rider
|
||||||
|
*.sln.iml
|
||||||
|
|
||||||
|
##
|
||||||
|
## Visual studio for Mac
|
||||||
|
##
|
||||||
|
|
||||||
|
|
||||||
|
# globs
|
||||||
|
Makefile.in
|
||||||
|
*.userprefs
|
||||||
|
*.usertasks
|
||||||
|
config.make
|
||||||
|
config.status
|
||||||
|
aclocal.m4
|
||||||
|
install-sh
|
||||||
|
autom4te.cache/
|
||||||
|
*.tar.gz
|
||||||
|
tarballs/
|
||||||
|
test-results/
|
||||||
|
|
||||||
|
# Mac bundle stuff
|
||||||
|
*.dmg
|
||||||
|
*.app
|
||||||
|
|
||||||
|
# content below from: https://github.com/github/gitignore/blob/master/Global/macOS.gitignore
|
||||||
|
# General
|
||||||
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
|
||||||
|
# Icon must end with two \r
|
||||||
|
Icon
|
||||||
|
|
||||||
|
|
||||||
|
# Thumbnails
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Files that might appear in the root of a volume
|
||||||
|
.DocumentRevisions-V100
|
||||||
|
.fseventsd
|
||||||
|
.Spotlight-V100
|
||||||
|
.TemporaryItems
|
||||||
|
.Trashes
|
||||||
|
.VolumeIcon.icns
|
||||||
|
.com.apple.timemachine.donotpresent
|
||||||
|
|
||||||
|
# Directories potentially created on remote AFP share
|
||||||
|
.AppleDB
|
||||||
|
.AppleDesktop
|
||||||
|
Network Trash Folder
|
||||||
|
Temporary Items
|
||||||
|
.apdisk
|
||||||
|
|
||||||
|
# content below from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore
|
||||||
|
# Windows thumbnail cache files
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
||||||
|
ehthumbs_vista.db
|
||||||
|
|
||||||
|
# Dump file
|
||||||
|
*.stackdump
|
||||||
|
|
||||||
|
# Folder config file
|
||||||
|
[Dd]esktop.ini
|
||||||
|
|
||||||
|
# Recycle Bin used on file shares
|
||||||
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
|
# Windows Installer files
|
||||||
|
*.cab
|
||||||
|
*.msi
|
||||||
|
*.msix
|
||||||
|
*.msm
|
||||||
|
*.msp
|
||||||
|
|
||||||
|
# Windows shortcuts
|
||||||
|
*.lnk
|
||||||
35
.vscode/launch.json
vendored
Normal file
35
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
// Use IntelliSense to find out which attributes exist for C# debugging
|
||||||
|
// Use hover for the description of the existing attributes
|
||||||
|
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
|
||||||
|
"name": ".NET Core Launch (web)",
|
||||||
|
"type": "coreclr",
|
||||||
|
"request": "launch",
|
||||||
|
"preLaunchTask": "build",
|
||||||
|
// If you have changed target frameworks, make sure to update the program path.
|
||||||
|
"program": "${workspaceFolder}/src/Twain.Web/bin/Debug/net6.0/Twain.Web.dll",
|
||||||
|
"args": [],
|
||||||
|
"cwd": "${workspaceFolder}/src/Twain.Web",
|
||||||
|
"stopAtEntry": false,
|
||||||
|
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
|
||||||
|
"serverReadyAction": {
|
||||||
|
"action": "openExternally",
|
||||||
|
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
|
||||||
|
},
|
||||||
|
"env": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
},
|
||||||
|
"sourceFileMap": {
|
||||||
|
"/Views": "${workspaceFolder}/Views"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": ".NET Core Attach",
|
||||||
|
"type": "coreclr",
|
||||||
|
"request": "attach"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
41
.vscode/tasks.json
vendored
Normal file
41
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"version": "2.0.0",
|
||||||
|
"tasks": [
|
||||||
|
{
|
||||||
|
"label": "build",
|
||||||
|
"command": "dotnet",
|
||||||
|
"type": "process",
|
||||||
|
"args": [
|
||||||
|
"build",
|
||||||
|
"${workspaceFolder}/src/Twain.Web/Twain.Web.csproj",
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"problemMatcher": "$msCompile"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "publish",
|
||||||
|
"command": "dotnet",
|
||||||
|
"type": "process",
|
||||||
|
"args": [
|
||||||
|
"publish",
|
||||||
|
"${workspaceFolder}/src/Twain.Web/Twain.Web.csproj",
|
||||||
|
"/property:GenerateFullPaths=true",
|
||||||
|
"/consoleloggerparameters:NoSummary"
|
||||||
|
],
|
||||||
|
"problemMatcher": "$msCompile"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "watch",
|
||||||
|
"command": "dotnet",
|
||||||
|
"type": "process",
|
||||||
|
"args": [
|
||||||
|
"watch",
|
||||||
|
"run",
|
||||||
|
"--project",
|
||||||
|
"${workspaceFolder}/src/Twain.Web/Twain.Web.csproj"
|
||||||
|
],
|
||||||
|
"problemMatcher": "$msCompile"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
39
Twain.sln
Normal file
39
Twain.sln
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.0.31903.59
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C9C2AC53-A609-44E8-BFAE-F10AA0E4CE24}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Twain.Web", "src\Twain.Web\Twain.Web.csproj", "{9D30C377-C660-416B-A27A-53D2189BFF24}"
|
||||||
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tools", "tools", "{58AC7B73-1ED6-40EA-8C1D-3225C3D1975A}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Build", "tools\Build\Build.csproj", "{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{9D30C377-C660-416B-A27A-53D2189BFF24}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{9D30C377-C660-416B-A27A-53D2189BFF24}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{9D30C377-C660-416B-A27A-53D2189BFF24}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{9D30C377-C660-416B-A27A-53D2189BFF24}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(NestedProjects) = preSolution
|
||||||
|
{9D30C377-C660-416B-A27A-53D2189BFF24} = {C9C2AC53-A609-44E8-BFAE-F10AA0E4CE24}
|
||||||
|
{2DD2F9DB-2FCE-4AA1-88D0-012AAAB69DDF} = {58AC7B73-1ED6-40EA-8C1D-3225C3D1975A}
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {0F7F9D4C-DF95-43AF-9E9A-DA09B5EE03C7}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
17
build.ps1
Normal file
17
build.ps1
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
#!/usr/bin/env pwsh
|
||||||
|
$ErrorActionPreference = 'Stop'
|
||||||
|
Push-Location $PSScriptRoot
|
||||||
|
try {
|
||||||
|
if (-not (Test-Path ./tools/bin/Build) -or
|
||||||
|
(Get-ChildItem ./tools/Build/* | Measure-Object LastWriteTime -Maximum).Maximum -gt
|
||||||
|
(Get-ChildItem ./tools/bin/Build/* | Measure-Object LastWriteTime -Maximum).Maximum) {
|
||||||
|
if (Test-Path ./tools/bin/Build) { Remove-Item ./tools/bin/Build -Recurse }
|
||||||
|
dotnet publish ./tools/Build/Build.csproj --output ./tools/bin/Build --nologo --verbosity quiet
|
||||||
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
||||||
|
}
|
||||||
|
dotnet ./tools/bin/Build/Build.dll $args
|
||||||
|
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
|
||||||
|
}
|
||||||
|
finally {
|
||||||
|
Pop-Location
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<key id="9b532dfe-b3ef-443a-a7b6-28367bdb2d95" version="1">
|
||||||
|
<creationDate>2023-02-24T03:19:44.3578288Z</creationDate>
|
||||||
|
<activationDate>2023-02-24T03:19:44.3568818Z</activationDate>
|
||||||
|
<expirationDate>2023-05-25T03:19:44.3568818Z</expirationDate>
|
||||||
|
<descriptor deserializerType="Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.AuthenticatedEncryptorDescriptorDeserializer, Microsoft.AspNetCore.DataProtection, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60">
|
||||||
|
<descriptor>
|
||||||
|
<encryption algorithm="AES_256_CBC" />
|
||||||
|
<validation algorithm="HMACSHA256" />
|
||||||
|
<encryptedSecret decryptorType="Microsoft.AspNetCore.DataProtection.XmlEncryption.NullXmlDecryptor, Microsoft.AspNetCore.DataProtection, Version=6.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60" xmlns="http://schemas.asp.net/2015/03/dataProtection">
|
||||||
|
<unencryptedKey xmlns="">
|
||||||
|
<!-- This key is not encrypted. -->
|
||||||
|
<masterKey p6:requiresEncryption="true" xmlns:p6="http://schemas.asp.net/2015/03/dataProtection">
|
||||||
|
<!-- Warning: the key below is in an unencrypted form. -->
|
||||||
|
<value>AfKixLuEWNWoEMEFAt0f689XEe+iNOksRu4pc/ZQdmwClfqTyPxWrLLiHnMaNmCtde0InQt//d+JdJHiwJOhaA==</value>
|
||||||
|
</masterKey>
|
||||||
|
</unencryptedKey>
|
||||||
|
</encryptedSecret>
|
||||||
|
</descriptor>
|
||||||
|
</descriptor>
|
||||||
|
</key>
|
||||||
1
src/Twain.Web/App_Data/Sites/Default/appsettings.json
Normal file
1
src/Twain.Web/App_Data/Sites/Default/appsettings.json
Normal file
@@ -0,0 +1 @@
|
|||||||
|
{}
|
||||||
5
src/Twain.Web/App_Data/tenants.json
Normal file
5
src/Twain.Web/App_Data/tenants.json
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"Default": {
|
||||||
|
"VersionId": "4yerepyys93vrv4crq3vzqmnm5"
|
||||||
|
}
|
||||||
|
}
|
||||||
1
src/Twain.Web/Localization/.placeholder
Normal file
1
src/Twain.Web/Localization/.placeholder
Normal file
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
112
src/Twain.Web/Localization/ar/OrchardCore.Admin.po
Normal file
112
src/Twain.Web/Localization/ar/OrchardCore.Admin.po
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Admin.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 694\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:37\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], design => design
|
||||||
|
#: OrchardCore.Admin\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Admin.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Admin\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Admin.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Admin"], S["Admin"].PrefixPosition(), admin => admin
|
||||||
|
#. .Add(S["Admin"], S["Admin"].PrefixPosition(), admin => admin
|
||||||
|
#: OrchardCore.Admin\AdminMenu.cs:28
|
||||||
|
#: OrchardCore.Admin\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.Admin.AdminMenu"
|
||||||
|
msgid "Admin"
|
||||||
|
msgstr "المدير"
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<AdminSettings, DeploymentStartup>(S => S["Admin settings"], S => S["Exports the admin settings."]);
|
||||||
|
#: OrchardCore.Admin\Startup.cs:92
|
||||||
|
msgctxt "OrchardCore.Admin.DeploymentStartup"
|
||||||
|
msgid "Admin settings"
|
||||||
|
msgstr "إعدادات المدير"
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<AdminSettings, DeploymentStartup>(S => S["Admin settings"], S => S["Exports the admin settings."]);
|
||||||
|
#: OrchardCore.Admin\Startup.cs:92
|
||||||
|
msgctxt "OrchardCore.Admin.DeploymentStartup"
|
||||||
|
msgid "Exports the admin settings."
|
||||||
|
msgstr "تصدير إعدادات المدير."
|
||||||
|
|
||||||
|
#. <h4>@T["Welcome to Orchard Core"]</h4>
|
||||||
|
#: OrchardCore.Admin\Views\AdminDashboard.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminDashboard"
|
||||||
|
msgid "Welcome to Orchard Core"
|
||||||
|
msgstr "مرحباً بكم في Orchard Core"
|
||||||
|
|
||||||
|
#. <p>@T["Feel free to browse the menu and discover all its possibilities."]</p>
|
||||||
|
#: OrchardCore.Admin\Views\AdminDashboard.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminDashboard"
|
||||||
|
msgid "Feel free to browse the menu and discover all its possibilities."
|
||||||
|
msgstr "لا تتردد في تصفح القائمة و إستكشاف جميع إمكانياتها."
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayDarkMode" class="form-check-label">@T["Enable dark mode admin theme"]</label>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Enable dark mode admin theme"
|
||||||
|
msgstr "تفعيل الوضع المظلم"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Whether a dark mode admin theme can be displayed."]</span>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Whether a dark mode admin theme can be displayed."
|
||||||
|
msgstr "ما إذا كان يمكن عرض الوضع المظلم في قالب المدير."
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayMenuFilter" class="form-check-label">@T["Enable Admin Menu filter"]</label>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Enable Admin Menu filter"
|
||||||
|
msgstr "تفعيل مرشح قوائم الإدارة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Whether a quick search to filter the admin menu is displayed."]</span>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Whether a quick search to filter the admin menu is displayed."
|
||||||
|
msgstr "إظهار البحث السريع لترشيح قوائم الإدارة."
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayNewMenu" class="form-check-label">@T["Display New menu"]</label>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Display New menu"
|
||||||
|
msgstr "عرض قائمة جديدة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Whether a New menu is displayed in the admin menu."]</span>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Whether a New menu is displayed in the admin menu."
|
||||||
|
msgstr "إذا تم عرض قائمة جديدة في قائمة المدير."
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayTitlesInTopbar" class="form-check-label">@T["Display titles in top bar"]</label>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Display titles in top bar"
|
||||||
|
msgstr "عرض العناوين في الشريط العلوي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Whether the titles are displayed in the top bar."]</span>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Whether the titles are displayed in the top bar."
|
||||||
|
msgstr "إذا تم عرض العناوين في الشريط العلوي."
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-tachometer" aria-hidden="true"></i></span><span class="title">@T["Admin"]</span>
|
||||||
|
#: OrchardCore.Admin\Views\NavigationItemText-admin.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Admin.Views.NavigationItemText-admin.Id"
|
||||||
|
msgid "Admin"
|
||||||
|
msgstr "المدير"
|
||||||
|
|
||||||
208
src/Twain.Web/Localization/ar/OrchardCore.AdminDashboard.po
Normal file
208
src/Twain.Web/Localization/ar/OrchardCore.AdminDashboard.po
Normal file
@@ -0,0 +1,208 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.AdminDashboard.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 696\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:37\n"
|
||||||
|
|
||||||
|
#. data-url-af="RemoveUrl UnsafeUrl" data-title="@T["Delete"]" data-message="@T["Are you sure you want to delete this content item?"]"
|
||||||
|
#. data-ok-text="@T["Ok"]" data-cancel-text="@T["Cancel"]">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.DeleteButton.cshtml:3
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.DeleteButton.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.DeleteButton"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. data-url-af="RemoveUrl UnsafeUrl" data-title="@T["Delete"]" data-message="@T["Are you sure you want to delete this content item?"]"
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.DeleteButton.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.DeleteButton"
|
||||||
|
msgid "Are you sure you want to delete this content item?"
|
||||||
|
msgstr "هل أنت متأكد من أنك تريد حذف عنصر المحتوى؟"
|
||||||
|
|
||||||
|
#. data-ok-text="@T["Ok"]" data-cancel-text="@T["Cancel"]">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.DeleteButton.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.DeleteButton"
|
||||||
|
msgid "Ok"
|
||||||
|
msgstr "موافق"
|
||||||
|
|
||||||
|
#. data-ok-text="@T["Ok"]" data-cancel-text="@T["Cancel"]">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.DeleteButton.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.DeleteButton"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. data-url-af="UnsafeUrl RemoveUrl" data-title=@T["Discard Draft"] data-message=@T["Are you sure you want to discard this draft?"]
|
||||||
|
#. data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary">@T["Discard Draft"]</a>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.DiscardDraftButton.cshtml:4
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.DiscardDraftButton.cshtml:5
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.DiscardDraftButton"
|
||||||
|
msgid "Discard Draft"
|
||||||
|
msgstr "تجاهل المسودة"
|
||||||
|
|
||||||
|
#. data-url-af="UnsafeUrl RemoveUrl" data-title=@T["Discard Draft"] data-message=@T["Are you sure you want to discard this draft?"]
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.DiscardDraftButton.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.DiscardDraftButton"
|
||||||
|
msgid "Are you sure you want to discard this draft?"
|
||||||
|
msgstr "هل أنت متأكد أنك تريد تجاهل هذه المسودة؟"
|
||||||
|
|
||||||
|
#. data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary">@T["Discard Draft"]</a>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.DiscardDraftButton.cshtml:5
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.DiscardDraftButton"
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr "نعم"
|
||||||
|
|
||||||
|
#. data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary">@T["Discard Draft"]</a>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.DiscardDraftButton.cshtml:5
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.DiscardDraftButton"
|
||||||
|
msgid "No"
|
||||||
|
msgstr "لا"
|
||||||
|
|
||||||
|
#. @T["Edit"]
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.EditButton.cshtml:2
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.EditButton"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. data-url-af="UnsafeUrl">@T["Publish Draft"]</a>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.PublishButton.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.PublishButton"
|
||||||
|
msgid "Publish Draft"
|
||||||
|
msgstr "نشر المسودة"
|
||||||
|
|
||||||
|
#. data-url-af="UnsafeUrl RemoveUrl" data-title=@T["Unpublish"] data-message=@T["Are you sure you want to unpublish this item?"]
|
||||||
|
#. data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary">@T["Unpublish"]</a>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.UnpublishButton.cshtml:3
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.UnpublishButton.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.UnpublishButton"
|
||||||
|
msgid "Unpublish"
|
||||||
|
msgstr "إلغاء النشر"
|
||||||
|
|
||||||
|
#. data-url-af="UnsafeUrl RemoveUrl" data-title=@T["Unpublish"] data-message=@T["Are you sure you want to unpublish this item?"]
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.UnpublishButton.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.UnpublishButton"
|
||||||
|
msgid "Are you sure you want to unpublish this item?"
|
||||||
|
msgstr "هل أنت متأكد من أنك تريد إلغاء نشر هذا العنصر؟"
|
||||||
|
|
||||||
|
#. data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary">@T["Unpublish"]</a>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.UnpublishButton.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.UnpublishButton"
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr "نعم"
|
||||||
|
|
||||||
|
#. data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary">@T["Unpublish"]</a>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard.UnpublishButton.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.UnpublishButton"
|
||||||
|
msgid "No"
|
||||||
|
msgstr "لا"
|
||||||
|
|
||||||
|
#. <label asp-for="Position">@T["Position"] </label>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\DashboardPart.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.DashboardPart.Edit"
|
||||||
|
msgid "Position"
|
||||||
|
msgstr "الموقع"
|
||||||
|
|
||||||
|
#. <label asp-for="Width">@T["Width"] </label>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\DashboardPart.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.DashboardPart.Edit"
|
||||||
|
msgid "Width"
|
||||||
|
msgstr "العرض"
|
||||||
|
|
||||||
|
#. <label asp-for="Height">@T["Height"] </label>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\DashboardPart.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.DashboardPart.Edit"
|
||||||
|
msgid "Height"
|
||||||
|
msgstr "الارتفاع"
|
||||||
|
|
||||||
|
#. <span class="badge ta-badge font-weight-normal" data-bs-toggle="tooltip" title="@T["Author"]">
|
||||||
|
#: OrchardCore.AdminDashboard\Views\DashboardWidget-ContentsMetadata.DetailAdmin.cshtml:28
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.DashboardWidget-ContentsMetadata.DetailAdmin"
|
||||||
|
msgid "Author"
|
||||||
|
msgstr "المؤلف"
|
||||||
|
|
||||||
|
#. <span class="badge ta-badge font-weight-normal" data-bs-toggle="tooltip" title="@T["Status"]">
|
||||||
|
#. <span class="badge ta-badge font-weight-normal" data-bs-toggle="tooltip" title="@T["Status"]">
|
||||||
|
#: OrchardCore.AdminDashboard\Views\DashboardWidget-ContentsTags.DetailAdmin.cshtml:13
|
||||||
|
#: OrchardCore.AdminDashboard\Views\DashboardWidget-ContentsTags.DetailAdmin.cshtml:20
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.DashboardWidget-ContentsTags.DetailAdmin"
|
||||||
|
msgid "Status"
|
||||||
|
msgstr "الحالة"
|
||||||
|
|
||||||
|
#. <i class="fa fa-check text-success" aria-hidden="true"></i> @T["Published"]
|
||||||
|
#: OrchardCore.AdminDashboard\Views\DashboardWidget-ContentsTags.DetailAdmin.cshtml:14
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.DashboardWidget-ContentsTags.DetailAdmin"
|
||||||
|
msgid "Published"
|
||||||
|
msgstr "تم نشره"
|
||||||
|
|
||||||
|
#. <i class="fa fa-pencil text-primary" aria-hidden="true"></i> @T["Draft"]
|
||||||
|
#: OrchardCore.AdminDashboard\Views\DashboardWidget-ContentsTags.DetailAdmin.cshtml:21
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.DashboardWidget-ContentsTags.DetailAdmin"
|
||||||
|
msgid "Draft"
|
||||||
|
msgstr "مسودة"
|
||||||
|
|
||||||
|
#. <div class="btn-group float-end" title="@T["Actions"]">
|
||||||
|
#: OrchardCore.AdminDashboard\Views\DashboardWidget.DetailAdmin.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.DashboardWidget.DetailAdmin"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr "الإجراءت"
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.AdminDashboard\Views\DashboardWidget.SummaryAdmin.cshtml:46
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.DashboardWidget.SummaryAdmin"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr "الإجراءت"
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-tachometer-alt" aria-hidden="true"></i></span><span class="title">@T["Dashboard"]</span>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\NavigationItemText-dashboard.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.NavigationItemText-dashboard.Id"
|
||||||
|
msgid "Dashboard"
|
||||||
|
msgstr "لوحة المعلومات"
|
||||||
|
|
||||||
|
#. @T["Manage Dashboard"]
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard\Index.cshtml:27
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.Index"
|
||||||
|
msgid "Manage Dashboard"
|
||||||
|
msgstr "ادارة لوحات المعلومات"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1 class="float-start">@RenderTitleSegments(T["Dashboard"])</h1></zone>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard\Index.cshtml:32
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.Index"
|
||||||
|
msgid "Dashboard"
|
||||||
|
msgstr "لوحة المعلومات"
|
||||||
|
|
||||||
|
#. @T["Close Editor"]
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard\Manage.cshtml:24
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.Manage"
|
||||||
|
msgid "Close Editor"
|
||||||
|
msgstr "أغلق المحرر"
|
||||||
|
|
||||||
|
#. @T["Add Widget"]
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard\Manage.cshtml:30
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.Manage"
|
||||||
|
msgid "Add Widget"
|
||||||
|
msgstr "اضافة ودجت"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1 class="float-start">@RenderTitleSegments(T["Dashboard"])</h1></zone>
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard\Manage.cshtml:41
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.Manage"
|
||||||
|
msgid "Dashboard"
|
||||||
|
msgstr "لوحة المعلومات"
|
||||||
|
|
||||||
|
#. @T["Dashboard successfully updated."] <a href="#"><strong>@T["Undo"]</strong></a>.
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard\Manage.cshtml:55
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.Manage"
|
||||||
|
msgid "Dashboard successfully updated."
|
||||||
|
msgstr "تم تحديث لوحة المعلومات بنجاح."
|
||||||
|
|
||||||
|
#. @T["Dashboard successfully updated."] <a href="#"><strong>@T["Undo"]</strong></a>.
|
||||||
|
#: OrchardCore.AdminDashboard\Views\Dashboard\Manage.cshtml:55
|
||||||
|
msgctxt "OrchardCore.AdminDashboard.Views.Dashboard.Manage"
|
||||||
|
msgid "Undo"
|
||||||
|
msgstr "تراجع"
|
||||||
|
|
||||||
683
src/Twain.Web/Localization/ar/OrchardCore.AdminMenu.po
Normal file
683
src/Twain.Web/Localization/ar/OrchardCore.AdminMenu.po
Normal file
@@ -0,0 +1,683 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.AdminMenu.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 698\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 19:56\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.AdminMenu\AdminMenu.cs:29
|
||||||
|
msgctxt "OrchardCore.AdminMenu.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Admin Menus"], S["Admin Menus"].PrefixPosition(), admt => admt
|
||||||
|
#. .Add(S["Admin Menus"], S["Admin Menus"].PrefixPosition(), admt => admt
|
||||||
|
#: OrchardCore.AdminMenu\AdminMenu.cs:30
|
||||||
|
#: OrchardCore.AdminMenu\AdminMenu.cs:30
|
||||||
|
msgctxt "OrchardCore.AdminMenu.AdminMenu"
|
||||||
|
msgid "Admin Menus"
|
||||||
|
msgstr "قوائم المدير"
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["Error when retrieving the list of admin menus."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\MenuController.cs:89
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.MenuController"
|
||||||
|
msgid "Error when retrieving the list of admin menus."
|
||||||
|
msgstr "حدث خطأ اثناء إسترداد قوائم المدير."
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Remove) }
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\MenuController.cs:106
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.MenuController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Admin menu updated successfully."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\MenuController.cs:199
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.MenuController"
|
||||||
|
msgid "Admin menu updated successfully."
|
||||||
|
msgstr "تم تحديث قائمة المدير بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["Can't find the admin menu."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\MenuController.cs:220
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.MenuController"
|
||||||
|
msgid "Can't find the admin menu."
|
||||||
|
msgstr "لا يمكن العثور على القائمة المدير."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Admin menu deleted successfully."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\MenuController.cs:228
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.MenuController"
|
||||||
|
msgid "Admin menu deleted successfully."
|
||||||
|
msgstr "تم حذف قائمة المدير بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["Can't delete the admin menu."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\MenuController.cs:232
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.MenuController"
|
||||||
|
msgid "Can't delete the admin menu."
|
||||||
|
msgstr "لا يمكن حذف قائمة المدير."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Admin menus successfully removed."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\MenuController.cs:261
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.MenuController"
|
||||||
|
msgid "Admin menus successfully removed."
|
||||||
|
msgstr "تمت إزالة قوائم المدير بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Admin menu toggled successfully."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\MenuController.cs:291
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.MenuController"
|
||||||
|
msgid "Admin menu toggled successfully."
|
||||||
|
msgstr "تم تبديل قائمة المدير ننجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Admin node added successfully."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\NodeController.cs:152
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.NodeController"
|
||||||
|
msgid "Admin node added successfully."
|
||||||
|
msgstr "تم إضافة عقدة المدير بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Admin node updated successfully."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\NodeController.cs:232
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.NodeController"
|
||||||
|
msgid "Admin node updated successfully."
|
||||||
|
msgstr "تم تحديث عقدة المدير بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["The admin node has validation errors."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\NodeController.cs:236
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.NodeController"
|
||||||
|
msgid "The admin node has validation errors."
|
||||||
|
msgstr "عقدة المدير تحتوي على أخطا تحقق."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Admin node deleted successfully."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\NodeController.cs:273
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.NodeController"
|
||||||
|
msgid "Admin node deleted successfully."
|
||||||
|
msgstr "تم حذف عقدة المدير بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Admin node toggled successfully."]);
|
||||||
|
#: OrchardCore.AdminMenu\Controllers\NodeController.cs:305
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Controllers.NodeController"
|
||||||
|
msgid "Admin node toggled successfully."
|
||||||
|
msgstr "تم تبديل حالة عقدة المدير بنجاح."
|
||||||
|
|
||||||
|
#: OrchardCore.AdminMenu\Views\MenuItem.TreeSummary.cshtml:0
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.MenuItem.TreeSummary"
|
||||||
|
msgid "Toggle"
|
||||||
|
msgstr "تبديل"
|
||||||
|
|
||||||
|
#: OrchardCore.AdminMenu\Views\MenuItem.TreeSummary.cshtml:0
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.MenuItem.TreeSummary"
|
||||||
|
msgid "Disable"
|
||||||
|
msgstr "تعطيل"
|
||||||
|
|
||||||
|
#: OrchardCore.AdminMenu\Views\MenuItem.TreeSummary.cshtml:0
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.MenuItem.TreeSummary"
|
||||||
|
msgid "Enable"
|
||||||
|
msgstr "تمكين"
|
||||||
|
|
||||||
|
#. data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#. class="btn btn-danger" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\MenuItem.TreeSummary.cshtml:33
|
||||||
|
#: OrchardCore.AdminMenu\Views\MenuItem.TreeSummary.cshtml:52
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.MenuItem.TreeSummary"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. <span class="text-warning">@T["Can't show the item of type: {0}. Maybe a required module has been disabled?", menuType]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\MenuItem.TreeSummary.cshtml:35
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.MenuItem.TreeSummary"
|
||||||
|
msgid "Can't show the item of type: {0}. Maybe a required module has been disabled?"
|
||||||
|
msgstr "لا يمكن إظهار نوع العنصر: {0}. ربما الوحدة النمطية المطلوبة معطلة؟"
|
||||||
|
|
||||||
|
#. class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\MenuItem.TreeSummary.cshtml:45
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.MenuItem.TreeSummary"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. <span class="visually-hidden">@T["Toggle Dropdown"]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\MenuItem.TreeSummary.cshtml:54
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.MenuItem.TreeSummary"
|
||||||
|
msgid "Toggle Dropdown"
|
||||||
|
msgstr "قائمة التبديل"
|
||||||
|
|
||||||
|
#. <a class="btn btn-primary btn-sm" asp-route-action="Create" asp-route-controller="Node" asp-route-type="@Model.Type" asp-route-id="@Model.ContentTreePreset.Id">@T["Add"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\MenuItem.TreeThumbnail.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.MenuItem.TreeThumbnail"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "إضافة"
|
||||||
|
|
||||||
|
#. <h5>@T["Admin Menus"]</h5>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\AdminMenuDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.AdminMenuDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Admin Menus"
|
||||||
|
msgstr "قوائم المدير"
|
||||||
|
|
||||||
|
#. <h5>@T["Admin Menus"]</h5>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\AdminMenuDeploymentStep.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.AdminMenuDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Admin Menus"
|
||||||
|
msgstr "قوائم المدير"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds all admin menus to the plan."]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\AdminMenuDeploymentStep.Fields.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.AdminMenuDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Adds all admin menus to the plan."
|
||||||
|
msgstr "إضافة كل قوائم المدير على الخطة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Admin Menus"]</h4>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\AdminMenuDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.AdminMenuDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Admin Menus"
|
||||||
|
msgstr "قوائم المدير"
|
||||||
|
|
||||||
|
#. <p>@T["Exports all the admin Menus."]</p>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\AdminMenuDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.AdminMenuDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports all the admin Menus."
|
||||||
|
msgstr "تصدير كل قوائم المدير."
|
||||||
|
|
||||||
|
#. <h5>@T["Link"]</h5>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Link"
|
||||||
|
msgstr "رابط تشعبي"
|
||||||
|
|
||||||
|
#. <label asp-for="LinkText">@T["Link Text"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Link Text"
|
||||||
|
msgstr "نص الرابط التشعبي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Link Text as it will be shown in the tree."]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "The Link Text as it will be shown in the tree."
|
||||||
|
msgstr "نص الرابط الذي سيظهر على الشجرة."
|
||||||
|
|
||||||
|
#. <label asp-for="LinkUrl">@T["Link Url"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Link Url"
|
||||||
|
msgstr "عنوان الرابط التشعببي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The url of the link. A link will be shown only if it or one of their children have a url. The url will be relative to the root of the admin site"]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "The url of the link. A link will be shown only if it or one of their children have a url. The url will be relative to the root of the admin site"
|
||||||
|
msgstr "عنوان الرابط. الرابط سيظهر في حال إذا كان الرابط أو أحد ابناءه يمتلك عنوان. العنوان سيكون نسبي إلى جذر موقع المدير"
|
||||||
|
|
||||||
|
#. <label asp-for="IconClass">@T["Icon"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "أيقونة"
|
||||||
|
|
||||||
|
#. @T["Pick"]
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:41
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Pick"
|
||||||
|
msgstr "اختر"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Select an icon to display when this link is a first level menu item."]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:55
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Select an icon to display when this link is a first level menu item."
|
||||||
|
msgstr "حدد أيقونة لعرضها عندما يكون الرابط عنصر قائمة في المستوى الأول."
|
||||||
|
|
||||||
|
#. <h5 class="modal-title">@T["Pick an icon"]</h5>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:63
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Pick an icon"
|
||||||
|
msgstr "اختر أيقونة"
|
||||||
|
|
||||||
|
#. <label asp-for="SelectedPermissionNames">@T["Permissions"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:83
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Permissions"
|
||||||
|
msgstr "الأذونات"
|
||||||
|
|
||||||
|
#. placeholder="@T["Type to search"]"
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:108
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Type to search"
|
||||||
|
msgstr "أكتب للبحث"
|
||||||
|
|
||||||
|
#. select-label="@T["Select"]"
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:115
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Select"
|
||||||
|
msgstr "أختر"
|
||||||
|
|
||||||
|
#. deselect-label="@T["Remove"]">
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:116
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Remove"
|
||||||
|
msgstr "إزالة"
|
||||||
|
|
||||||
|
#. @T["No result found"]
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:121
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "No result found"
|
||||||
|
msgstr "لا توجد نتائج"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The permissions required to display this menu item (optional)."]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeEdit.cshtml:124
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "The permissions required to display this menu item (optional)."
|
||||||
|
msgstr "الأذونات المطلوبة لعرض عنصر القائمة (اختياري)."
|
||||||
|
|
||||||
|
#. <span>@Model.Value.LinkText <code>@Model.Value.LinkUrl</code> <span class="text-muted dashed">@T["Link"]</span></span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeSummary.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeSummary"
|
||||||
|
msgid "Link"
|
||||||
|
msgstr "رابط تشعبي"
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Link Admin Node"]</h4>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeThumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeThumbnail"
|
||||||
|
msgid "Link Admin Node"
|
||||||
|
msgstr "ربط عقدة المدير"
|
||||||
|
|
||||||
|
#. <p>@T["Adds a link with a text and a url."]</p>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\LinkAdminNode.Fields.TreeThumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.LinkAdminNode.Fields.TreeThumbnail"
|
||||||
|
msgid "Adds a link with a text and a url."
|
||||||
|
msgstr "إضافة رابط تشعبي مع النص و عنوان الرابط."
|
||||||
|
|
||||||
|
#. <h5>@T["Placeholder"]</h5>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Placeholder"
|
||||||
|
msgstr "النص البديل"
|
||||||
|
|
||||||
|
#. <label asp-for="LinkText">@T["Link Text"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Link Text"
|
||||||
|
msgstr "نص الرابط التشعبي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The text of the menu item as it will be shown in the tree."]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "The text of the menu item as it will be shown in the tree."
|
||||||
|
msgstr "نص عنصر القائمة كما سيظهر في الشجرة."
|
||||||
|
|
||||||
|
#. <label asp-for="IconClass">@T["Icon"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "أيقونة"
|
||||||
|
|
||||||
|
#. @T["Pick"]
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Pick"
|
||||||
|
msgstr "اختر"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Select an icon to display when this menu item is at the first level."]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:48
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Select an icon to display when this menu item is at the first level."
|
||||||
|
msgstr "اختر أيقونة لعرضها عندما يكون عنصر القائمه في المستوى الأول."
|
||||||
|
|
||||||
|
#. <h5 class="modal-title">@T["Pick an icon"]</h5>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:56
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Pick an icon"
|
||||||
|
msgstr "اختر أيقونة"
|
||||||
|
|
||||||
|
#. <label asp-for="SelectedPermissionNames">@T["Permissions"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:76
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Permissions"
|
||||||
|
msgstr "الأذونات"
|
||||||
|
|
||||||
|
#. placeholder="@T["Type to search"]"
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:101
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Type to search"
|
||||||
|
msgstr "أكتب للبحث"
|
||||||
|
|
||||||
|
#. select-label="@T["Select"]"
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:108
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Select"
|
||||||
|
msgstr "أختر"
|
||||||
|
|
||||||
|
#. deselect-label="@T["Remove"]">
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:109
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Remove"
|
||||||
|
msgstr "إزالة"
|
||||||
|
|
||||||
|
#. @T["No result found"]
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:114
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "No result found"
|
||||||
|
msgstr "لا توجد نتائج"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The permissions required to display this menu item (optional)."]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeEdit.cshtml:117
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "The permissions required to display this menu item (optional)."
|
||||||
|
msgstr "الأذونات المطلوبة لعرض عنصر القائمة (اختياري)."
|
||||||
|
|
||||||
|
#. <span>@Model.Value.LinkText <span class="text-muted dashed">@T["Placeholder"]</span></span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeSummary.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeSummary"
|
||||||
|
msgid "Placeholder"
|
||||||
|
msgstr "النص البديل"
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Placeholder Admin Node"]</h4>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeThumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeThumbnail"
|
||||||
|
msgid "Placeholder Admin Node"
|
||||||
|
msgstr "النص البديل لعقدة المدير"
|
||||||
|
|
||||||
|
#. <p>@T["Adds a menu item that acts as a container for others."]</p>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Items\PlaceholderAdminNode.Fields.TreeThumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Items.PlaceholderAdminNode.Fields.TreeThumbnail"
|
||||||
|
msgid "Adds a menu item that acts as a container for others."
|
||||||
|
msgstr "إضافة عنصر قائمة كحاوية للآخرين."
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Admin Menu {0}", Model.Name])</h1></zone>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Create.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Create"
|
||||||
|
msgid "Create Admin Menu {0}"
|
||||||
|
msgstr "إنشاء قائمة المدير {0}"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Create.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Create"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="Name" class="text-danger">@T["The name is required"]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Create.cshtml:11
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Create"
|
||||||
|
msgid "The name is required"
|
||||||
|
msgstr "الإسم مطلوب"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Create.cshtml:15
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Create"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "إنشاء"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="List">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Create.cshtml:16
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Admin Menu: {0}", Model.Name])</h1></zone>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Edit"
|
||||||
|
msgid "Edit Admin Menu: {0}"
|
||||||
|
msgstr "تحرير قائمة المدير: {0}"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="Name" class="text-danger">@T["The name is required"]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Edit"
|
||||||
|
msgid "The name is required"
|
||||||
|
msgstr "الإسم مطلوب"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <a class="btn btn-primary edit-nodes" role="button" asp-route-controller="Node" asp-route-action="List" asp-route-id="@Model.Id">@T["Edit Admin Nodes"] </a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Edit"
|
||||||
|
msgid "Edit Admin Nodes"
|
||||||
|
msgstr "تحرير عقد المدير"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="List">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Admin Menus"])</h1></zone>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:10
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Admin Menus"
|
||||||
|
msgstr "قوائم المدير"
|
||||||
|
|
||||||
|
#. <input asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:24
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <a asp-route-action="Create" class="btn btn-secondary create" role="button">@T["Add Admin Menu"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:28
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Add Admin Menu"
|
||||||
|
msgstr "إضافة قائمة مدير"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:42
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "إختيار الكل"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.AdminMenu.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:43
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] "{0} عناصر"
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] "{0} عناصر"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.AdminMenu.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:43
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr "العناصر من {0} إلى {1}"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.AdminMenu.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:43
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] " / {0} عناصر ككل"
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] " / {0} عناصر اخري"
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:50
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr "الإجراءت"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:55
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr "مجموعة إجراءات"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:55
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr "هل أنت متأكد من أنك تريد {0} هذه العناصر؟"
|
||||||
|
|
||||||
|
#. <a asp-controller="Node" asp-action="List" asp-route-id="@entry.AdminMenu.Id" class="btn btn-secondary btn-sm">@T["Edit Nodes"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:70
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Edit Nodes"
|
||||||
|
msgstr "تحرير العقد"
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-id="@entry.AdminMenu.Id" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:71
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. <a asp-action="Delete" asp-route-id="@entry.AdminMenu.Id" class="btn btn-danger" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:73
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. <span class="visually-hidden">@T["Toggle Dropdown"]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:75
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Toggle Dropdown"
|
||||||
|
msgstr "قائمة التبديل"
|
||||||
|
|
||||||
|
#. <a asp-action="Toggle" asp-route-id="@entry.AdminMenu.Id" class="dropdown-item btn-sm" data-url-af="UnsafeUrl">@(entry.AdminMenu.Enabled ? T["Disable"] : T["Enable"])</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:79
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Disable"
|
||||||
|
msgstr "تعطيل"
|
||||||
|
|
||||||
|
#. <a asp-action="Toggle" asp-route-id="@entry.AdminMenu.Id" class="dropdown-item btn-sm" data-url-af="UnsafeUrl">@(entry.AdminMenu.Enabled ? T["Disable"] : T["Enable"])</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:79
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "Enable"
|
||||||
|
msgstr "تمكين"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no menus for the moment."]
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:92
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no menus for the moment."
|
||||||
|
msgstr "<strong>لا شي هنا!</strong> لاتوجد قوائم حاليا."
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:143
|
||||||
|
#: OrchardCore.AdminMenu\Views\Menu\List.cshtml:154
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Menu.List"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr "تم تحديدها"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Node"])</h1></zone>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Create.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Create"
|
||||||
|
msgid "Create Node"
|
||||||
|
msgstr "إنشاء عفدة"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Create.cshtml:14
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Create"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "إنشاء"
|
||||||
|
|
||||||
|
#. asp-route-id="@Model.AdminMenuId">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Create.cshtml:19
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Node"])</h1></zone>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Edit"
|
||||||
|
msgid "Edit Node"
|
||||||
|
msgstr "تحرير عقدة"
|
||||||
|
|
||||||
|
#. <label asp-for="Priority">@T["Selection Priority"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Edit"
|
||||||
|
msgid "Selection Priority"
|
||||||
|
msgstr "أولوية الإختيار"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The priority of this link to be displayed as active instead of another one when both are pointing to the same url. The link with the highest value has the active status in the navigation."]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Edit"
|
||||||
|
msgid "The priority of this link to be displayed as active instead of another one when both are pointing to the same url. The link with the highest value has the active status in the navigation."
|
||||||
|
msgstr "أولوية هذا الرابط ليتم عرضه كنشط بدلاً من أي رابط أخر يشير إلى نفس العنوان. الرابط مع أعلى قيمة له حالة نشطة في التنقل."
|
||||||
|
|
||||||
|
#. <label asp-for="Position">@T["Position Order"]</label>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Edit"
|
||||||
|
msgid "Position Order"
|
||||||
|
msgstr "الموقع"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The position order of this link in the admin menu."]</span>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Edit"
|
||||||
|
msgid "The position order of this link in the admin menu."
|
||||||
|
msgstr "موقع هذا الرابط في قائمة المدير."
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Edit"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. asp-route-id="@Model.AdminMenuId">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\Edit.cshtml:38
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Nodes for '{0}'", Model.AdminMenu.Name])</h1></zone>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\List.cshtml:12
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.List"
|
||||||
|
msgid "Edit Nodes for '{0}'"
|
||||||
|
msgstr "تحرير العقد ل '{0}'"
|
||||||
|
|
||||||
|
#. @T["Add Node"]
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\List.cshtml:20
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.List"
|
||||||
|
msgid "Add Node"
|
||||||
|
msgstr "إضافة عقدة"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no nodes on this tree for the moment."]
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\List.cshtml:53
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.List"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no nodes on this tree for the moment."
|
||||||
|
msgstr "<strong>لا شيء هنا!</strong> لا يوجد هنالك أي عقد على هذه الشجرة في الوقت الحالي."
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary" asp-route-controller="menu" asp-route-action="List">@T["Back"]</a>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\List.cshtml:59
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.List"
|
||||||
|
msgid "Back"
|
||||||
|
msgstr "رجوع"
|
||||||
|
|
||||||
|
#. <h5 class="modal-title" id="admin-tree-nodes-title">@T["Available Admin Nodes"]</h5>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\List.cshtml:68
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.List"
|
||||||
|
msgid "Available Admin Nodes"
|
||||||
|
msgstr "عقد المدير المتوفرة"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\List.cshtml:82
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.List"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <div id="move-error-message" class="d-none" data-message="@T["There was an error when moving the tree node."]"></div>
|
||||||
|
#: OrchardCore.AdminMenu\Views\Node\List.cshtml:88
|
||||||
|
msgctxt "OrchardCore.AdminMenu.Views.Node.List"
|
||||||
|
msgid "There was an error when moving the tree node."
|
||||||
|
msgstr "حدث خطأ عند نقل عقده الشجرة."
|
||||||
|
|
||||||
103
src/Twain.Web/Localization/ar/OrchardCore.Alias.po
Normal file
103
src/Twain.Web/Localization/ar/OrchardCore.Alias.po
Normal file
@@ -0,0 +1,103 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Alias.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 700\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-01-05 13:33\n"
|
||||||
|
|
||||||
|
#. Description = S["the alias part of the content item"];
|
||||||
|
#: OrchardCore.Alias\GraphQL\AliasInputObjectType.cs:13
|
||||||
|
msgctxt "OrchardCore.Alias.GraphQL.AliasInputObjectType"
|
||||||
|
msgid "the alias part of the content item"
|
||||||
|
msgstr "جزء الإسم المستعار لعنصر المحتوى"
|
||||||
|
|
||||||
|
#. AddScalarFilterFields<StringGraphType>("alias", S["the alias of the content item"]);
|
||||||
|
#: OrchardCore.Alias\GraphQL\AliasInputObjectType.cs:15
|
||||||
|
msgctxt "OrchardCore.Alias.GraphQL.AliasInputObjectType"
|
||||||
|
msgid "the alias of the content item"
|
||||||
|
msgstr "الإسم المستعار لعنصر المحتوى"
|
||||||
|
|
||||||
|
#. Description = S["Alternative path for the content item"];
|
||||||
|
#: OrchardCore.Alias\GraphQL\AliasQueryObjectType.cs:12
|
||||||
|
msgctxt "OrchardCore.Alias.GraphQL.AliasQueryObjectType"
|
||||||
|
msgid "Alternative path for the content item"
|
||||||
|
msgstr "مسار بديل لعنصر المحتوى"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["Your alias is too long. The alias can only be up to {0} characters.", AliasPart.MaxAliasLength], new string[] { nameof(part.Alias) });
|
||||||
|
#: OrchardCore.Alias\Models\AliasPartExtensions.cs:18
|
||||||
|
msgctxt "OrchardCore.Alias.Models.AliasPartExtensions"
|
||||||
|
msgid "Your alias is too long. The alias can only be up to {0} characters."
|
||||||
|
msgstr "الإسم البديل طويل جداً. الإسم البديل يجب ان لا يزيد عن {0} حرف."
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["Your alias is already in use."], new[] { nameof(part.Alias) });
|
||||||
|
#: OrchardCore.Alias\Models\AliasPartExtensions.cs:23
|
||||||
|
msgctxt "OrchardCore.Alias.Models.AliasPartExtensions"
|
||||||
|
msgid "Your alias is already in use."
|
||||||
|
msgstr "الاسم البديل مستخدم مسبقاً."
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(nameof(model.Pattern), S["Pattern doesn't contain a valid Liquid expression. Details: {0}", string.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.Alias\Settings\AliasPartSettingsDisplayDriver.cs:43
|
||||||
|
msgctxt "OrchardCore.Alias.Settings.AliasPartSettingsDisplayDriver"
|
||||||
|
msgid "Pattern doesn't contain a valid Liquid expression. Details: {0}"
|
||||||
|
msgstr "النمط لا يحتوي على عبارة Liquid صحيحة. للتفاصيل: {0}"
|
||||||
|
|
||||||
|
#. <label asp-for="Alias">@T["Alias"] </label>
|
||||||
|
#: OrchardCore.Alias\Views\AliasPart.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Alias.Views.AliasPart.Edit"
|
||||||
|
msgid "Alias"
|
||||||
|
msgstr "الإسم المستعار"
|
||||||
|
|
||||||
|
#. @T["The alias of the content item."]
|
||||||
|
#: OrchardCore.Alias\Views\AliasPart.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Alias.Views.AliasPart.Edit"
|
||||||
|
msgid "The alias of the content item."
|
||||||
|
msgstr "الإسم المستعار لعنصر المحتوى."
|
||||||
|
|
||||||
|
#: OrchardCore.Alias\Views\AliasPart.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Alias.Views.AliasPart.Edit"
|
||||||
|
msgid "Leave empty to re-generate it."
|
||||||
|
msgstr "اتركه فارغاً لإعادة توليده."
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Alias\Views\AliasPart.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Alias.Views.AliasPart.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <label asp-for="Options">@T["Options"]</label>
|
||||||
|
#: OrchardCore.Alias\Views\AliasPartSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Alias.Views.AliasPartSettings.Edit"
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "خيارات"
|
||||||
|
|
||||||
|
#. <option value="@AliasPartOptions.Editable" selected="@(Model.Options == AliasPartOptions.Editable)">@T["Alias is editable"]</option>
|
||||||
|
#: OrchardCore.Alias\Views\AliasPartSettings.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Alias.Views.AliasPartSettings.Edit"
|
||||||
|
msgid "Alias is editable"
|
||||||
|
msgstr "الاسم البديل قابل للتعديل"
|
||||||
|
|
||||||
|
#. <option value="@AliasPartOptions.GeneratedDisabled" selected="@(Model.Options == AliasPartOptions.GeneratedDisabled)">@T["Alias is generated and input is disabled"]</option>
|
||||||
|
#: OrchardCore.Alias\Views\AliasPartSettings.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Alias.Views.AliasPartSettings.Edit"
|
||||||
|
msgid "Alias is generated and input is disabled"
|
||||||
|
msgstr "الاسم البديل مولد آلياً والإدخال معطَّل"
|
||||||
|
|
||||||
|
#. <label asp-for="Pattern">@T["Pattern"]</label>
|
||||||
|
#: OrchardCore.Alias\Views\AliasPartSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Alias.Views.AliasPartSettings.Edit"
|
||||||
|
msgid "Pattern"
|
||||||
|
msgstr "نمط"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The pattern used to render the alias of this content type."]</span>
|
||||||
|
#: OrchardCore.Alias\Views\AliasPartSettings.Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Alias.Views.AliasPartSettings.Edit"
|
||||||
|
msgid "The pattern used to render the alias of this content type."
|
||||||
|
msgstr "النمط المستخدم لرسم الإسم المستعار لنوع المحتوى هذا."
|
||||||
|
|
||||||
40
src/Twain.Web/Localization/ar/OrchardCore.Apis.GraphQL.po
Normal file
40
src/Twain.Web/Localization/ar/OrchardCore.Apis.GraphQL.po
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Apis.GraphQL.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 702\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 19:57\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], NavigationConstants.AdminMenuConfigurationPosition, design => design
|
||||||
|
#: OrchardCore.Apis.GraphQL\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Apis.GraphQL.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "إعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["GraphiQL"], S["GraphiQL"].PrefixPosition(), deployment => deployment
|
||||||
|
#. .Add(S["GraphiQL"], S["GraphiQL"].PrefixPosition(), deployment => deployment
|
||||||
|
#: OrchardCore.Apis.GraphQL\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.Apis.GraphQL\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Apis.GraphQL.AdminMenu"
|
||||||
|
msgid "GraphiQL"
|
||||||
|
msgstr "GraphiQL"
|
||||||
|
|
||||||
|
#. S["Authorization is required to access {0}.", operationName],
|
||||||
|
#: OrchardCore.Apis.GraphQL\ValidationRules\RequiresPermissionValidationRule.cs:67
|
||||||
|
msgctxt "OrchardCore.Apis.GraphQL.ValidationRules.RequiresPermissionValidationRule"
|
||||||
|
msgid "Authorization is required to access {0}."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. S["Authorization is required to access the node. {0}", nodeName],
|
||||||
|
#: OrchardCore.Apis.GraphQL\ValidationRules\RequiresPermissionValidationRule.cs:113
|
||||||
|
msgctxt "OrchardCore.Apis.GraphQL.ValidationRules.RequiresPermissionValidationRule"
|
||||||
|
msgid "Authorization is required to access the node. {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
38
src/Twain.Web/Localization/ar/OrchardCore.ArchiveLater.po
Normal file
38
src/Twain.Web/Localization/ar/OrchardCore.ArchiveLater.po
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.ArchiveLater.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 862\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:39\n"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary btn-archive-later" type="submit" name="submit.Publish" value="submit.ArchiveLater">@T["Archive Later"]</button>
|
||||||
|
#: OrchardCore.ArchiveLater\Views\ArchiveLaterPart.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.ArchiveLater.Views.ArchiveLaterPart.Edit"
|
||||||
|
msgid "Archive Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary btn-archive-later" type="submit" name="submit.Publish" value="submit.CancelArchiveLater">@T["Cancel Archive Later"]</button>
|
||||||
|
#: OrchardCore.ArchiveLater\Views\ArchiveLaterPart.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.ArchiveLater.Views.ArchiveLaterPart.Edit"
|
||||||
|
msgid "Cancel Archive Later"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.ArchiveLater\Views\ArchiveLaterPart.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.ArchiveLater.Views.ArchiveLaterPart.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Scheduled to be archived on {0}", (object)(await DisplayAsync(await New.DateTime(Utc: Model.ScheduledArchiveUtc)))]</span>
|
||||||
|
#: OrchardCore.ArchiveLater\Views\ArchiveLaterPart.SummaryAdmin.cshtml:6
|
||||||
|
msgctxt "OrchardCore.ArchiveLater.Views.ArchiveLaterPart.SummaryAdmin"
|
||||||
|
msgid "Scheduled to be archived on {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
683
src/Twain.Web/Localization/ar/OrchardCore.AuditTrail.po
Normal file
683
src/Twain.Web/Localization/ar/OrchardCore.AuditTrail.po
Normal file
@@ -0,0 +1,683 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.AuditTrail.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 704\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 19:58\n"
|
||||||
|
|
||||||
|
#. .WithSelectListItem<Startup>((S, opt, model) => new SelectListItem(S["Newest"], opt.Value, model.Sort == String.Empty))
|
||||||
|
#: OrchardCore.AuditTrail\Startup.cs:96
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Startup"
|
||||||
|
msgid "Newest"
|
||||||
|
msgstr "الأحدث"
|
||||||
|
|
||||||
|
#. .WithSelectListItem<Startup>((S, opt, model) => new SelectListItem(S["Oldest"], opt.Value, model.Sort == opt.Value)))
|
||||||
|
#: OrchardCore.AuditTrail\Startup.cs:101
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Startup"
|
||||||
|
msgid "Oldest"
|
||||||
|
msgstr "الأقدم"
|
||||||
|
|
||||||
|
#. .WithSelectListItem<Startup>((S, opt, model) => new SelectListItem(S["Category"], opt.Value, model.Sort == opt.Value)))
|
||||||
|
#: OrchardCore.AuditTrail\Startup.cs:105
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Startup"
|
||||||
|
msgid "Category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .WithSelectListItem<Startup>((S, opt, model) => new SelectListItem(S["Event"], opt.Value, model.Sort == opt.Value)))
|
||||||
|
#: OrchardCore.AuditTrail\Startup.cs:118
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Startup"
|
||||||
|
msgid "Event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .WithSelectListItem<Startup>((S, opt, model) => new SelectListItem(S["User"], opt.Value, model.Sort == opt.Value)))
|
||||||
|
#: OrchardCore.AuditTrail\Startup.cs:131
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Startup"
|
||||||
|
msgid "User"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<AuditTrailSettings, DeploymentStartup>(S => S["Audit Trail settings"], S => S["Exports the audit trail settings."]);
|
||||||
|
#: OrchardCore.AuditTrail\Startup.cs:166
|
||||||
|
msgctxt "OrchardCore.AuditTrail.DeploymentStartup"
|
||||||
|
msgid "Audit Trail settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<AuditTrailSettings, DeploymentStartup>(S => S["Audit Trail settings"], S => S["Exports the audit trail settings."]);
|
||||||
|
#: OrchardCore.AuditTrail\Startup.cs:166
|
||||||
|
msgctxt "OrchardCore.AuditTrail.DeploymentStartup"
|
||||||
|
msgid "Exports the audit trail settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<AuditTrailTrimmingSettings, DeploymentStartup>(S => S["Audit Trail Trimming settings"], S => S["Exports the audit trail trimming settings."]);
|
||||||
|
#: OrchardCore.AuditTrail\Startup.cs:167
|
||||||
|
msgctxt "OrchardCore.AuditTrail.DeploymentStartup"
|
||||||
|
msgid "Audit Trail Trimming settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<AuditTrailTrimmingSettings, DeploymentStartup>(S => S["Audit Trail Trimming settings"], S => S["Exports the audit trail trimming settings."]);
|
||||||
|
#: OrchardCore.AuditTrail\Startup.cs:167
|
||||||
|
msgctxt "OrchardCore.AuditTrail.DeploymentStartup"
|
||||||
|
msgid "Exports the audit trail trimming settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Audit Trail"], NavigationConstants.AdminMenuAuditTrailPosition, configuration => configuration
|
||||||
|
#: OrchardCore.AuditTrail\Navigation\AuditTrailAdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Navigation.AuditTrailAdminMenu"
|
||||||
|
msgid "Audit Trail"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.AuditTrail\Navigation\AuditTrailSettingsAdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Navigation.AuditTrailSettingsAdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.AuditTrail\Navigation\AuditTrailSettingsAdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Navigation.AuditTrailSettingsAdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Audit Trail"], S["Audit Trail"].PrefixPosition(), settings => settings
|
||||||
|
#. .Add(S["Audit Trail"], S["Audit Trail"].PrefixPosition(), settings => settings
|
||||||
|
#: OrchardCore.AuditTrail\Navigation\AuditTrailSettingsAdminMenu.cs:28
|
||||||
|
#: OrchardCore.AuditTrail\Navigation\AuditTrailSettingsAdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Navigation.AuditTrailSettingsAdminMenu"
|
||||||
|
msgid "Audit Trail"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.Categories.Insert(0, new SelectListItem(S["All categories"], String.Empty, String.IsNullOrEmpty(options.Category)));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:82
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "All categories"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem(S["Any date"], String.Empty, options.Date == String.Empty),
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:102
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "Any date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.AuditTrailDates.Add(new SelectListItem(S["Last 24 hours"], dateTimeValue, options.Date == dateTimeValue));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:106
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "Last 24 hours"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.AuditTrailDates.Add(new SelectListItem(S["Previous 48 hours"], dateTimeValue, options.Date == dateTimeValue));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:109
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "Previous 48 hours"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.AuditTrailDates.Add(new SelectListItem(S["This week"], dateTimeValue, options.Date == dateTimeValue));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:112
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "This week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.AuditTrailDates.Add(new SelectListItem(S["Last week"], dateTimeValue, options.Date == dateTimeValue));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:117
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "Last week"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.AuditTrailDates.Add(new SelectListItem(S["This month"], dateTimeValue, options.Date == dateTimeValue));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:121
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "This month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.AuditTrailDates.Add(new SelectListItem(S["Last month"], dateTimeValue, options.Date == dateTimeValue));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:126
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "Last month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.AuditTrailDates.Add(new SelectListItem(S["Custom date range"], dateTimeValue, options.Date == dateTimeValue));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:127
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "Custom date range"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.AuditTrailDates.Add(new SelectListItem(S["Last hour"], dateTimeValue, options.Date == dateTimeValue));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:130
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "Last hour"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.AuditTrailDates.Add(new SelectListItem(S["Previous hour"], dateTimeValue, options.Date == dateTimeValue));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:133
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "Previous hour"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. options.AuditTrailDates.Add(new SelectListItem(S["Custom time range"], dateTimeValue, options.Date == dateTimeValue));
|
||||||
|
#: OrchardCore.AuditTrail\Services\DefaultAuditTrailAdminListQueryService.cs:134
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Services.DefaultAuditTrailAdminListQueryService"
|
||||||
|
msgid "Custom time range"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["No results found."]
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminList.cshtml:43
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminList"
|
||||||
|
msgid "No results found."
|
||||||
|
msgstr "لم يتم العثور على نتائج."
|
||||||
|
|
||||||
|
#. <select asp-for="Date" asp-items="@Model.AuditTrailDates" class="selectpicker dates-selectpicker show-tick" data-header="@T["Date"]" data-width="fit" data-selected-text-format="static" data-dropdown-align-right="true" title="@T["Date"]" data-style="btn-sm"></select>
|
||||||
|
#. <select asp-for="Date" asp-items="@Model.AuditTrailDates" class="selectpicker dates-selectpicker show-tick" data-header="@T["Date"]" data-width="fit" data-selected-text-format="static" data-dropdown-align-right="true" title="@T["Date"]" data-style="btn-sm"></select>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListFilters.cshtml:6
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListFilters.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListFilters"
|
||||||
|
msgid "Date"
|
||||||
|
msgstr "التاريخ"
|
||||||
|
|
||||||
|
#. <select asp-for="Category" asp-items="Model.Categories" class="selectpicker categories-selectpicker show-tick me-2" data-header="@T["Filter by category"]" data-live-search="true" data-selected-text-format="static" data-width="fit" title="@T["Category"]" data-style="btn-sm" data-dropdown-align-right="auto"></select>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListFilters.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListFilters"
|
||||||
|
msgid "Filter by category"
|
||||||
|
msgstr "فرز حسب الفئة"
|
||||||
|
|
||||||
|
#. <select asp-for="Category" asp-items="Model.Categories" class="selectpicker categories-selectpicker show-tick me-2" data-header="@T["Filter by category"]" data-live-search="true" data-selected-text-format="static" data-width="fit" title="@T["Category"]" data-style="btn-sm" data-dropdown-align-right="auto"></select>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListFilters.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListFilters"
|
||||||
|
msgid "Category"
|
||||||
|
msgstr "الفئة"
|
||||||
|
|
||||||
|
#. <select asp-for="Event" asp-items="@Model.Events" class="selectpicker events-selectpicker show-tick me-2" data-header="@T["Filter by event"]" data-selected-text-format="static" data-width="fit" data-dropdown-align-right="auto" title="@T["Events"]" data-style="btn-sm"></select>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListFilters.cshtml:13
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListFilters"
|
||||||
|
msgid "Filter by event"
|
||||||
|
msgstr "فرز حسب الحدث"
|
||||||
|
|
||||||
|
#. <select asp-for="Event" asp-items="@Model.Events" class="selectpicker events-selectpicker show-tick me-2" data-header="@T["Filter by event"]" data-selected-text-format="static" data-width="fit" data-dropdown-align-right="auto" title="@T["Events"]" data-style="btn-sm"></select>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListFilters.cshtml:13
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListFilters"
|
||||||
|
msgid "Events"
|
||||||
|
msgstr "الأحداث"
|
||||||
|
|
||||||
|
#. <select asp-for="Sort" asp-items="@Model.AuditTrailSorts" class="selectpicker sorts-selectpicker show-tick" data-header="@T["Sort by"]" data-width="fit" data-selected-text-format="static" data-dropdown-align-right="true" title="@T["Sort"]" data-style="btn-sm"></select>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListFilters.cshtml:15
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListFilters"
|
||||||
|
msgid "Sort by"
|
||||||
|
msgstr "ترتيب حسب"
|
||||||
|
|
||||||
|
#. <select asp-for="Sort" asp-items="@Model.AuditTrailSorts" class="selectpicker sorts-selectpicker show-tick" data-header="@T["Sort by"]" data-width="fit" data-selected-text-format="static" data-dropdown-align-right="true" title="@T["Sort"]" data-style="btn-sm"></select>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListFilters.cshtml:15
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListFilters"
|
||||||
|
msgid "Sort"
|
||||||
|
msgstr "الترتيب"
|
||||||
|
|
||||||
|
#. <i class="fa fa-filter" title="@T["Filters"]" aria-hidden="true"></i>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:21
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Filters"
|
||||||
|
msgstr "عوامل التصفية"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="#" data-bs-toggle="modal" data-bs-target="#modalAuditTrailIndexOptionsFilterSyntax">@T["Filter syntax"]</a></li>
|
||||||
|
#. <h4>@T["Filter syntax"]</h4>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:28
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:55
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Filter syntax"
|
||||||
|
msgstr "جمل الفرز"
|
||||||
|
|
||||||
|
#. <label asp-for="SearchText" class="sr-only">@T["Search"]</label>
|
||||||
|
#. <input asp-for="SearchText" class="form-control" placeholder="@T["Search"]" inputmode="search" type="search" autofocus />
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:32
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:34
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <h5 class="modal-title" id="audittrail-filters-syntax-title">@T["Available Filters"]</h5>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:44
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Available Filters"
|
||||||
|
msgstr "التصفيات المتاحة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Default"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:59
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Default"
|
||||||
|
msgstr "الإفتراضي"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["may be entered with or without the term name"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:60
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "may be entered with or without the term name"
|
||||||
|
msgstr "قد يتم إدخاله مع الاسم أو بدونه"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Single"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:64
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Single"
|
||||||
|
msgstr "فردي"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["A single value can be entered"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:65
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "A single value can be entered"
|
||||||
|
msgstr "يمكن إدخال قيمة فردية"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Multiple"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:69
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Multiple"
|
||||||
|
msgstr "متعدد"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Logical operators and groups are supported"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:70
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Logical operators and groups are supported"
|
||||||
|
msgstr "المشغلون المنطقيون والمجموعات مدعومين"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["The default operator when whitespace is found, e.g. {0}", "text:foo bar -> text:foo OR bar"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:75
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "The default operator when whitespace is found, e.g. {0}"
|
||||||
|
msgstr "المشغل الافتراضي عند العثور على المساحة البيضاء، على سبيل المثال {0}"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Combines, e.g. {0}", "text:foo AND bar"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:79
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Combines, e.g. {0}"
|
||||||
|
msgstr "المزج، مثل {0}"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Negates, e.g. {0}", "text:foo NOT bar"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:83
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Negates, e.g. {0}"
|
||||||
|
msgstr "الفسخ، مثل {0}"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Groups operators, e.g. {0}", "text:((foo OR bar) NOT baz)"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:87
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Groups operators, e.g. {0}"
|
||||||
|
msgstr "مشغلي المجموعات، مثل {0}"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Escape operators, e.g. {0}", "text:\"foo bar\""]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:91
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Escape operators, e.g. {0}"
|
||||||
|
msgstr "مشغلي الهروب، مثل {0}"
|
||||||
|
|
||||||
|
#. <h4>@T["Date range syntax"]</h4>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:96
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Date range syntax"
|
||||||
|
msgstr "جملة مدي التاريخ"
|
||||||
|
|
||||||
|
#. <small class="d-block">@T["You can search for dates that are greater or less than another date, or fall within a date range."]</small>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:98
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "You can search for dates that are greater or less than another date, or fall within a date range."
|
||||||
|
msgstr "يمكنك البحث عن تواريخ أكبر أو أقل من تاريخ آخر، أو تقع ضمن نطاق التاريخ."
|
||||||
|
|
||||||
|
#. <small class="d-block">@T["Dates should use the {0} operator or ISO 8601 date time format.", "@now"]</small>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:99
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Dates should use the {0} operator or ISO 8601 date time format."
|
||||||
|
msgstr "يجب أن تستخدم التواريخ مشغل {0} أو ISO 8601 لتنسيق الزمن."
|
||||||
|
|
||||||
|
#. <small class="d-block">@T["Dates without a ISO 8601 UTC or time component will be parsed to the users timezone"]</small>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:100
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Dates without a ISO 8601 UTC or time component will be parsed to the users timezone"
|
||||||
|
msgstr "سيتم تحليل التواريخ التي لا تحتوي على ISO 8601 UTC أو عنصر الوقت إلى المنطقة الزمنية للمستخدمين"
|
||||||
|
|
||||||
|
#. @T["Filter"]
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:104
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Filter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Example"]
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:107
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Example"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Matches dates greater than the current date minus one. {0} is also suported", "@today"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:113
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Matches dates greater than the current date minus one. {0} is also suported"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["{0} Matches dates between twenty days old and the current date", "date:>@now-1"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:119
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "{0} Matches dates between twenty days old and the current date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["{0} Matches dates from the start of the month until the start of the next month", "@2020-01-01..@2020-01-01"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:125
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "{0} Matches dates from the start of the month until the start of the next month"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["{0} Matches dates greater than a specified UTC offset and time", ">@@2020-01-01T09:21:03.4472810+07:00"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:131
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "{0} Matches dates greater than a specified UTC offset and time"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4>@T["Current filter"]</h4>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:138
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Current filter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["including all implied groups and operators"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:143
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "including all implied groups and operators"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="alert alert-info mt-3 mb-0">@T["No current filter applied"]</p>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:147
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "No current filter applied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Close"]</button>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSearch.cshtml:153
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSearch"
|
||||||
|
msgid "Close"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T.Plural(Model.EventsCount, "1 item", "{0} items")
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSummary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSummary"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. <span class="text-muted" title="@T["Items {0} to {1}", Model.StartIndex, Model.EndIndex]">@T.Plural(Model.TotalItemCount, " / {0} item in total", " / {0} items in total")</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSummary.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSummary"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="text-muted" title="@T["Items {0} to {1}", Model.StartIndex, Model.EndIndex]">@T.Plural(Model.TotalItemCount, " / {0} item in total", " / {0} items in total")</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailAdminListSummary.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailAdminListSummary"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. <div class="btn-group" title="@T["Actions"]">
|
||||||
|
#. <span>@T["Actions"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEvent.SummaryAdmin.cshtml:32
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEvent.SummaryAdmin.cshtml:34
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEvent.SummaryAdmin"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-sm btn-primary" asp-action="Display" asp-controller="Admin" asp-route-auditTrailEventId="@Model.AuditTrailEvent.EventId">@T["Details"]</a>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventActions.SummaryAdmin.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventActions.SummaryAdmin"
|
||||||
|
msgid "Details"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th class="border-top-0 w-25">@T["Category"]</th>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventDetail.DetailAdmin.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventDetail.DetailAdmin"
|
||||||
|
msgid "Category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th>@T["Event"]</th>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventDetail.DetailAdmin.cshtml:10
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventDetail.DetailAdmin"
|
||||||
|
msgid "Event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th>@T["User Name"]</th>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventDetail.DetailAdmin.cshtml:14
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventDetail.DetailAdmin"
|
||||||
|
msgid "User Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th>@T["User ID"]</th>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventDetail.DetailAdmin.cshtml:18
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventDetail.DetailAdmin"
|
||||||
|
msgid "User ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th>@T["Timestamp"]</th>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventDetail.DetailAdmin.cshtml:22
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventDetail.DetailAdmin"
|
||||||
|
msgid "Timestamp"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th>@T["Client IP Address"]</th>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventDetail.DetailAdmin.cshtml:26
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventDetail.DetailAdmin"
|
||||||
|
msgid "Client IP Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge ta-badge font-weight-normal" data-bs-toggle="tooltip" title="@T["User Name"]">
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventMeta.SummaryAdmin.cshtml:12
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventMeta.SummaryAdmin"
|
||||||
|
msgid "User Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge ta-badge font-weight-normal" data-bs-toggle="tooltip" title="@T["Client IP Address"]">
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventMeta.SummaryAdmin.cshtml:19
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventMeta.SummaryAdmin"
|
||||||
|
msgid "Client IP Address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. title="@T["Category"]">@Model.Descriptor.LocalizedCategory(Context.RequestServices)</a>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventTags.SummaryAdmin.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventTags.SummaryAdmin"
|
||||||
|
msgid "Category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. title="@T["Event Name"]">@Model.Descriptor.LocalizedName(Context.RequestServices)</a>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailEventTags.SummaryAdmin.cshtml:13
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailEventTags.SummaryAdmin"
|
||||||
|
msgid "Event Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailSettings.Edit"
|
||||||
|
msgid "Audit Trail Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone name="Title" position="before"><h1 class="float-start pe-2">@T["Audit Trail"]</h1></zone>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailSettings.Edit"
|
||||||
|
msgid "Audit Trail"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="" for="Categories">@T["Events to record"]</label>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailSettings.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailSettings.Edit"
|
||||||
|
msgid "Events to record"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th scope="col">@T["Event"]</th>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailSettings.Edit"
|
||||||
|
msgid "Event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th scope="col">@T["Description"]</th>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailSettings.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailSettings.Edit"
|
||||||
|
msgid "Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th scope="col">@T["Enabled"]</th>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailSettings.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailSettings.Edit"
|
||||||
|
msgid "Enabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="@category.Name">@T["Select all"]</label>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailSettings.Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailSettings.Edit"
|
||||||
|
msgid "Select all"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="ClientIpAddressAllowed" class="form-check-label">@T["Allow client IP address"]</label>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailSettings.Edit.cshtml:68
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailSettings.Edit"
|
||||||
|
msgid "Allow client IP address"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether the client IP address is recorded."]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailSettings.Edit.cshtml:69
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailSettings.Edit"
|
||||||
|
msgid "Whether the client IP address is recorded."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="Disabled">@T["Disable trimming task"]</label>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailTrimmingSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailTrimmingSettings.Edit"
|
||||||
|
msgid "Disable trimming task"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether the trimming task is disabled."]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailTrimmingSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailTrimmingSettings.Edit"
|
||||||
|
msgid "Whether the trimming task is disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="RetentionDays">@T["Retention period"]</label>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailTrimmingSettings.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailTrimmingSettings.Edit"
|
||||||
|
msgid "Retention period"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The number of days an event is retained."]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailTrimmingSettings.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailTrimmingSettings.Edit"
|
||||||
|
msgid "The number of days an event is retained."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="LastRunUtc">@T["Last run"]</label>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailTrimmingSettings.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailTrimmingSettings.Edit"
|
||||||
|
msgid "Last run"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="form-control">@(Model.LastRunUtc.HasValue ? await DisplayAsync(await New.DateTime(Utc: Model.LastRunUtc.Value, Format: "g")) : T["Never"])</div>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailTrimmingSettings.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailTrimmingSettings.Edit"
|
||||||
|
msgid "Never"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The last time the trimming task was run."]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\AuditTrailTrimmingSettings.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.AuditTrailTrimmingSettings.Edit"
|
||||||
|
msgid "The last time the trimming task was run."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone name="Title"><h1>@RenderTitleSegments(T["Audit Trail Event"])</h1></zone>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Admin\Display.cshtml:3
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Admin.Display"
|
||||||
|
msgid "Audit Trail Event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone name="Title"><h1 class="mb-4">@RenderTitleSegments(T["Audit Trail"])</h1></zone>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Admin\Index.cshtml:4
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Admin.Index"
|
||||||
|
msgid "Audit Trail"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Category"]</h4>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-Category.Thumbnail.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-Category.Thumbnail"
|
||||||
|
msgid "Category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Filters on the audit trail category."]</p>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-Category.Thumbnail.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-Category.Thumbnail"
|
||||||
|
msgid "Filters on the audit trail category."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Id"]</h4>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-CorrelationId.Thumbnail.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-CorrelationId.Thumbnail"
|
||||||
|
msgid "Id"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Filters on a correlation id."]</p>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-CorrelationId.Thumbnail.cshtml:8
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-CorrelationId.Thumbnail"
|
||||||
|
msgid "Filters on a correlation id."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Date"]</h4>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-Date.Thumbnail.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-Date.Thumbnail"
|
||||||
|
msgid "Date"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Filters by a date or range."]</p>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-Date.Thumbnail.cshtml:8
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-Date.Thumbnail"
|
||||||
|
msgid "Filters by a date or range."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["ISO 8601 date format *see date range syntax"]</span>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-Date.Thumbnail.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-Date.Thumbnail"
|
||||||
|
msgid "ISO 8601 date format *see date range syntax"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Event"]</h4>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-Event.Thumbnail.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-Event.Thumbnail"
|
||||||
|
msgid "Event"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Filters on the audit trail event, when a Correlation Id is used."]</p>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-Event.Thumbnail.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-Event.Thumbnail"
|
||||||
|
msgid "Filters on the audit trail event, when a Correlation Id is used."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["User Id"]</h4>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-UserId.Thumbnail.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-UserId.Thumbnail"
|
||||||
|
msgid "User Id"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Filters by the id of a user."]</p>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-UserId.Thumbnail.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-UserId.Thumbnail"
|
||||||
|
msgid "Filters by the id of a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["User Name"]</h4>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-UserName.Thumbnail.cshtml:6
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-UserName.Thumbnail"
|
||||||
|
msgid "User Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Filters by the name of a user."]</p>
|
||||||
|
#: OrchardCore.AuditTrail\Views\Items\AuditTrailAdminFilters-UserName.Thumbnail.cshtml:9
|
||||||
|
msgctxt "OrchardCore.AuditTrail.Views.Items.AuditTrailAdminFilters-UserName.Thumbnail"
|
||||||
|
msgid "Filters by the name of a user."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
278
src/Twain.Web/Localization/ar/OrchardCore.Autoroute.po
Normal file
278
src/Twain.Web/Localization/ar/OrchardCore.Autoroute.po
Normal file
@@ -0,0 +1,278 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Autoroute.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 706\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 19:59\n"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(model.Path), S["Your permalink is already in use."]);
|
||||||
|
#: OrchardCore.Autoroute\Drivers\AutoroutePartDisplayDriver.cs:125
|
||||||
|
msgctxt "OrchardCore.Autoroute.Drivers.AutoroutePartDisplayDriver"
|
||||||
|
msgid "Your permalink is already in use."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["the custom URL part of the content item"];
|
||||||
|
#: OrchardCore.Autoroute\GraphQL\AutorouteInputObjectType.cs:13
|
||||||
|
msgctxt "OrchardCore.Autoroute.GraphQL.AutorouteInputObjectType"
|
||||||
|
msgid "the custom URL part of the content item"
|
||||||
|
msgstr "جزء الرابطط المخصص لعنصر المحتوى"
|
||||||
|
|
||||||
|
#. AddScalarFilterFields<StringGraphType>("path", S["the path of the content item to filter"]);
|
||||||
|
#: OrchardCore.Autoroute\GraphQL\AutorouteInputObjectType.cs:15
|
||||||
|
msgctxt "OrchardCore.Autoroute.GraphQL.AutorouteInputObjectType"
|
||||||
|
msgid "the path of the content item to filter"
|
||||||
|
msgstr "مسار عنصر المحتوى للتصفية"
|
||||||
|
|
||||||
|
#. Description = S["Custom URLs (permalinks) for your content item."];
|
||||||
|
#: OrchardCore.Autoroute\GraphQL\AutorouteQueryObjectType.cs:12
|
||||||
|
msgctxt "OrchardCore.Autoroute.GraphQL.AutorouteQueryObjectType"
|
||||||
|
msgid "Custom URLs (permalinks) for your content item."
|
||||||
|
msgstr "روبط مخصصه (روابط ثابته) لعنصر المحتوى الخاص بك."
|
||||||
|
|
||||||
|
#. Field(x => x.Path).Description(S["The permalinks for your content item."]);
|
||||||
|
#: OrchardCore.Autoroute\GraphQL\AutorouteQueryObjectType.cs:14
|
||||||
|
msgctxt "OrchardCore.Autoroute.GraphQL.AutorouteQueryObjectType"
|
||||||
|
msgid "The permalinks for your content item."
|
||||||
|
msgstr "الروابط الثابته لعنصر المحتوى الخاص بك."
|
||||||
|
|
||||||
|
#. context.Fail(S["Your permalink is already in use."], nameof(part.Path));
|
||||||
|
#: OrchardCore.Autoroute\Handlers\AutoroutePartHandler.cs:132
|
||||||
|
msgctxt "OrchardCore.Autoroute.Handlers.AutoroutePartHandler"
|
||||||
|
msgid "Your permalink is already in use."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["Your permalink can't be set to the homepage, please use the homepage option instead."], new[] { nameof(autoroute.Path) });
|
||||||
|
#: OrchardCore.Autoroute\Models\AutoroutePartExtensions.cs:15
|
||||||
|
msgctxt "OrchardCore.Autoroute.Models.AutoroutePartExtensions"
|
||||||
|
msgid "Your permalink can't be set to the homepage, please use the homepage option instead."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["Please do not use any of the following characters in your permalink: {0}. No spaces, or consecutive slashes, are allowed (please use dashes or underscores instead).", invalidCharactersForMessage], new[] { nameof(autoroute.Path) });
|
||||||
|
#: OrchardCore.Autoroute\Models\AutoroutePartExtensions.cs:21
|
||||||
|
msgctxt "OrchardCore.Autoroute.Models.AutoroutePartExtensions"
|
||||||
|
msgid "Please do not use any of the following characters in your permalink: {0}. No spaces, or consecutive slashes, are allowed (please use dashes or underscores instead)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["Your permalink is too long. The permalink can only be up to {0} characters.", AutoroutePart.MaxPathLength], new[] { nameof(autoroute.Path) });
|
||||||
|
#: OrchardCore.Autoroute\Models\AutoroutePartExtensions.cs:26
|
||||||
|
msgctxt "OrchardCore.Autoroute.Models.AutoroutePartExtensions"
|
||||||
|
msgid "Your permalink is too long. The permalink can only be up to {0} characters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(nameof(model.Pattern), S["Pattern doesn't contain a valid Liquid expression. Details: {0}", string.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.Autoroute\Settings\AutoroutePartSettingsDisplayDriver.cs:58
|
||||||
|
msgctxt "OrchardCore.Autoroute.Settings.AutoroutePartSettingsDisplayDriver"
|
||||||
|
msgid "Pattern doesn't contain a valid Liquid expression. Details: {0}"
|
||||||
|
msgstr "النمط لا يحتوي على عبارة Liquid صحيحة. للتفاصيل: {0}"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="Disabled">@T["Disabled"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to disable autoroute for this content item."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Check to disable autoroute for this content item."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Path">@T["Permalink"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Permalink"
|
||||||
|
msgstr "رابط دائم"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The url of the content item. Leave empty to auto-generate it."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "The url of the content item. Leave empty to auto-generate it."
|
||||||
|
msgstr "رابط عمصر المحتوى, اتركه فارغاً ليتم توليده تلقائياً."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The url of the content item. It will be automatically generated."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "The url of the content item. It will be automatically generated."
|
||||||
|
msgstr "رابط عنصر المحتوى, سوف يتم توليده تلقائياً."
|
||||||
|
|
||||||
|
#. <div class="alert alert-info">@T["This content item is the current homepage"]</div>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:56
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "This content item is the current homepage"
|
||||||
|
msgstr "عنصر المحتوى هذا هو الصفحة الرئيسية الحالية"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SetHomepage">@T["Set as homepage"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:65
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Set as homepage"
|
||||||
|
msgstr "ضببط كصفحة رئيسية"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to set this content item as the homepage once published."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:66
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Check to set this content item as the homepage once published."
|
||||||
|
msgstr "اختر لضبط عنصر المحتوى كصفحة رئيسية بعد نشره."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="UpdatePath">@T["Refresh the path"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:78
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Refresh the path"
|
||||||
|
msgstr "حدث المسار"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to refresh the path. Warning: the previous URL won't be accessible anymore."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:79
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Check to refresh the path. Warning: the previous URL won't be accessible anymore."
|
||||||
|
msgstr "اختر لإنعاش المسار. تحذير: الرابط السابق لن يمكن الوصول إليه على الإطلاق."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="RouteContainedItems">@T["Route contained items"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:89
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Route contained items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to enabling the routing of child content items."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:90
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Check to enabling the routing of child content items."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="Absolute">@T["Absolute"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:100
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Absolute"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to specify that a child content item will be routed to an absolute path."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePart.Edit.cshtml:101
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePart.Edit"
|
||||||
|
msgid "Check to specify that a child content item will be routed to an absolute path."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Pattern">@T["Pattern"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Pattern"
|
||||||
|
msgstr "نمط"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The pattern used to render the custom url of this content type. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "The pattern used to render the custom url of this content type. With Liquid support."
|
||||||
|
msgstr "النمط المستخدم لعرض رابط مخصص لنوع المحتوى هذا. يدعم الـ Liquid."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="AllowCustomPath">@T["Allow custom path"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Allow custom path"
|
||||||
|
msgstr "السماح لمسار مخصص"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to allow users to set a custom path, otherwise it will be automatically generated."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Check to allow users to set a custom path, otherwise it will be automatically generated."
|
||||||
|
msgstr "اختر للسماح للمستخدمين من ضبط مسار مخصص, والإ سيتم توليده تلقائياً."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="AllowUpdatePath">@T["Allow path updates"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Allow path updates"
|
||||||
|
msgstr "السماح بتحديثات المسار"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to allow users to refresh the path once a content item is already published."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Check to allow users to refresh the path once a content item is already published."
|
||||||
|
msgstr "اختر للسماح للمستخدمين من تحديث المسار حين يتم نشر عنصر المحتوى."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ShowHomepageOption">@T["Show homepage options"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Show homepage options"
|
||||||
|
msgstr "إظهار خيارات الصقحة الرئيسية"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to allow the content items of this content type to be set as the homepage. It will only be visible to users with the appropriate permission."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Check to allow the content items of this content type to be set as the homepage. It will only be visible to users with the appropriate permission."
|
||||||
|
msgstr "اختر للسماح لعناصر المحتوى لهذا النوع ليتم ضبطها كصفحة رئيسية. ستكون مرئية للمستخدمين الذين يمتلكون الصلاحية المناسبة فقط."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="AllowDisabled">@T["Allow disabled"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:48
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Allow disabled"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to allow the content items of this content type to disable autoroute."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:49
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Check to allow the content items of this content type to disable autoroute."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5 class="my-3">@T["Container Settings"]<span class="hint dashed">@T["Settings for parent or child content items."]</span></h5>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:54
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Container Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5 class="my-3">@T["Container Settings"]<span class="hint dashed">@T["Settings for parent or child content items."]</span></h5>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:54
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Settings for parent or child content items."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="AllowRouteContainedItems">@T["Allow contained item routing"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:58
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Allow contained item routing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to allow users to enable routing of child content items. This setting must be applied to the parent content item."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:59
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Check to allow users to enable routing of child content items. This setting must be applied to the parent content item."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ManageContainedItemRoutes">@T["Manage contained item routes"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:66
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Manage contained item routes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to allow this part to apply routes to child content items. This setting must be applied to the child content item."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:67
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Check to allow this part to apply routes to child content items. This setting must be applied to the child content item."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="AllowAbsolutePath">@T["Allow absolute path"]</label>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Allow absolute path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to allow users to enable absolute paths for child content items. When disabled the path is relative to the parents path."]</span>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:76
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "Check to allow users to enable absolute paths for child content items. When disabled the path is relative to the parents path."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="hint ms-3">@T["When relative : https://mysite.com/my-parent/my-child-item."]</div>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:79
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "When relative : https://mysite.com/my-parent/my-child-item."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="hint ms-3">@T["When absolute : https://mysite.com/my-child-item."]</div>
|
||||||
|
#: OrchardCore.Autoroute\Views\AutoroutePartSettings.Edit.cshtml:80
|
||||||
|
msgctxt "OrchardCore.Autoroute.Views.AutoroutePartSettings.Edit"
|
||||||
|
msgid "When absolute : https://mysite.com/my-child-item."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
288
src/Twain.Web/Localization/ar/OrchardCore.BackgroundTasks.po
Normal file
288
src/Twain.Web/Localization/ar/OrchardCore.BackgroundTasks.po
Normal file
@@ -0,0 +1,288 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.BackgroundTasks.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 708\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:37\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.BackgroundTasks\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Tasks"], S["Tasks"].PrefixPosition(), tasks => tasks
|
||||||
|
#. .Add(S["Tasks"], S["Tasks"].PrefixPosition(), tasks => tasks
|
||||||
|
#: OrchardCore.BackgroundTasks\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.BackgroundTasks\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.AdminMenu"
|
||||||
|
msgid "Tasks"
|
||||||
|
msgstr "مهام"
|
||||||
|
|
||||||
|
#. .Add(S["Background Tasks"], S["Background Tasks"].PrefixPosition(), backgroundTasks => backgroundTasks
|
||||||
|
#. .Add(S["Background Tasks"], S["Background Tasks"].PrefixPosition(), backgroundTasks => backgroundTasks
|
||||||
|
#: OrchardCore.BackgroundTasks\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.BackgroundTasks\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.AdminMenu"
|
||||||
|
msgid "Background Tasks"
|
||||||
|
msgstr "مهام في الخلفية"
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(BackgroundTaskViewModel.Name), S["The name is mandatory."]);
|
||||||
|
#. ModelState.AddModelError(nameof(BackgroundTaskViewModel.Name), S["The name is mandatory."]);
|
||||||
|
#: OrchardCore.BackgroundTasks\Controllers\BackgroundTaskController.cs:121
|
||||||
|
#: OrchardCore.BackgroundTasks\Controllers\BackgroundTaskController.cs:189
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Controllers.BackgroundTaskController"
|
||||||
|
msgid "The name is mandatory."
|
||||||
|
msgstr "الإسم مطلوب."
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Task Settings"])</h1></zone>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:3
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Edit Task Settings"
|
||||||
|
msgstr "تعديل إعدادات مهمه"
|
||||||
|
|
||||||
|
#. <a class="nav-link active" id="properties-tab" data-bs-toggle="tab" href="#properties" role="tab" aria-controls="site" aria-selected="true">@T["Properties"]</a>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:10
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="nav-link" id="advanced-tab" data-bs-toggle="tab" href="#advanced" role="tab" aria-controls="resources">@T["Advanced"]</a>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:13
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Advanced"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:20
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The task on which this settings will apply."]</span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:22
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "The task on which this settings will apply."
|
||||||
|
msgstr "سيتم تطبيق الإعدادات على هذه المهمة."
|
||||||
|
|
||||||
|
#. <label asp-for="Schedule">@T["Schedule"]</label>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:26
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Schedule"
|
||||||
|
msgstr "جدول"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The task schedule as a cron expression."]</span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:28
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "The task schedule as a cron expression."
|
||||||
|
msgstr "جدولة المهمة كتعبير cron."
|
||||||
|
|
||||||
|
#. <div><span asp-validation-for="LockTimeout" class="text-danger">@T["Invalid lock timeout value in the advanced tab"]</span></div>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:37
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Invalid lock timeout value in the advanced tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div><span asp-validation-for="LockExpiration" class="text-danger">@T["Invalid lock expiration value in the advanced tab"]</span></div>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:38
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Invalid lock expiration value in the advanced tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="LockTimeout">@T["Lock timeout (ms)"]</label>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:43
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Lock timeout (ms)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The timeout in milliseconds to acquire a lock before executing the task atomically. Leave it to zero to not use any locking."]</span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:45
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "The timeout in milliseconds to acquire a lock before executing the task atomically. Leave it to zero to not use any locking."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Ignored if there is no distributed lock feature enabled."]</span>
|
||||||
|
#. <span class="hint">@T["Ignored if there is no distributed lock feature enabled."]</span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:46
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:53
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Ignored if there is no distributed lock feature enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="LockExpiration">@T["Lock expiration (ms)"]</label>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:50
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Lock expiration (ms)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The expiration in milliseconds of the lock acquired before executing the task atomically. Leave it to zero to not use any locking."]</span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:52
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "The expiration in milliseconds of the lock acquired before executing the task atomically. Leave it to zero to not use any locking."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button id="use-default-schedule" class="btn btn-success">@T["Reset Schedule"]</button>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:59
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Reset Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:60
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Create.cshtml:61
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Task Settings"])</h1></zone>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Edit Task Settings"
|
||||||
|
msgstr "تعديل إعدادات مهمه"
|
||||||
|
|
||||||
|
#. <a class="nav-link active" id="properties-tab" data-bs-toggle="tab" href="#properties" role="tab" aria-controls="site" aria-selected="true">@T["Properties"]</a>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Properties"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="nav-link" id="advanced-tab" data-bs-toggle="tab" href="#advanced" role="tab" aria-controls="resources">@T["Advanced"]</a>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Advanced"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The task on which this settings will apply."]</span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "The task on which this settings will apply."
|
||||||
|
msgstr "المهمو التي سيتم تطبيق الإعدادات عليها."
|
||||||
|
|
||||||
|
#. <label asp-for="Schedule">@T["Schedule"]</label>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Schedule"
|
||||||
|
msgstr "جدول"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The task schedule as a cron expression."]</span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "The task schedule as a cron expression."
|
||||||
|
msgstr "جدولة المهمة كتعبير cron."
|
||||||
|
|
||||||
|
#. <div><span asp-validation-for="LockTimeout" class="text-danger">@T["Invalid lock timeout value in the advanced tab"]</span></div>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Invalid lock timeout value in the advanced tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div><span asp-validation-for="LockExpiration" class="text-danger">@T["Invalid lock expiration value in the advanced tab"]</span></div>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:38
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Invalid lock expiration value in the advanced tab"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="LockTimeout">@T["Lock timeout (ms)"]</label>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:43
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Lock timeout (ms)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The timeout in milliseconds to acquire a lock before executing the task atomically. Leave it to zero to not use any locking."]</span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:45
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "The timeout in milliseconds to acquire a lock before executing the task atomically. Leave it to zero to not use any locking."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Ignored if there is no distributed lock feature enabled."]</span>
|
||||||
|
#. <span class="hint">@T["Ignored if there is no distributed lock feature enabled."]</span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:46
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:53
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Ignored if there is no distributed lock feature enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="LockExpiration">@T["Lock expiration (ms)"]</label>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:50
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Lock expiration (ms)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The expiration in milliseconds of the lock acquired before executing the task atomically. Leave it to zero to not use any locking."]</span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:52
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "The expiration in milliseconds of the lock acquired before executing the task atomically. Leave it to zero to not use any locking."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button id="use-default-schedule" class="btn btn-success">@T["Reset Schedule"]</button>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:59
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Reset Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:60
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Edit.cshtml:61
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Background Tasks"])</h1></zone>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Index.cshtml:4
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Index"
|
||||||
|
msgid "Background Tasks"
|
||||||
|
msgstr "مهام في الخلفية"
|
||||||
|
|
||||||
|
#. <a asp-action="Disable" asp-route-name="@settings.Name" class="btn btn-danger btn-sm" data-url-af="UnsafeUrl">@T["Disable"]</a>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Index.cshtml:18
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Index"
|
||||||
|
msgid "Disable"
|
||||||
|
msgstr "تعطيل"
|
||||||
|
|
||||||
|
#. <a asp-action="Enable" asp-route-name="@settings.Name" class="btn btn-success btn-sm" data-url-af="UnsafeUrl">@T["Enable"]</a>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Index.cshtml:22
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Index"
|
||||||
|
msgid "Enable"
|
||||||
|
msgstr "تمكين"
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-name="@settings.Name" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. <span class="text-primary" title="@T["Settings"]"><i class="fa fa-cog" aria-hidden="true"></i></span>
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Index.cshtml:27
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Index"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no background task for the moment."]
|
||||||
|
#: OrchardCore.BackgroundTasks\Views\BackgroundTask\Index.cshtml:38
|
||||||
|
msgctxt "OrchardCore.BackgroundTasks.Views.BackgroundTask.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no background task for the moment."
|
||||||
|
msgstr "<strong>لا شيء هنا!</strong> لا يوجد هنالك مهمه في خلفية في الوقت الراهن."
|
||||||
|
|
||||||
1603
src/Twain.Web/Localization/ar/OrchardCore.ContentFields.po
Normal file
1603
src/Twain.Web/Localization/ar/OrchardCore.ContentFields.po
Normal file
File diff suppressed because it is too large
Load Diff
229
src/Twain.Web/Localization/ar/OrchardCore.ContentLocalization.po
Normal file
229
src/Twain.Web/Localization/ar/OrchardCore.ContentLocalization.po
Normal file
@@ -0,0 +1,229 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.ContentLocalization.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 712\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:01\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], localization => localization
|
||||||
|
#: OrchardCore.ContentLocalization\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.ContentLocalization\AdminMenu.cs:29
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Localization"], localization => localization
|
||||||
|
#: OrchardCore.ContentLocalization\AdminMenu.cs:30
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.AdminMenu"
|
||||||
|
msgid "Localization"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Content Request Culture Provider"], S["Content Request Culture Provider"].PrefixPosition(), registration => registration
|
||||||
|
#. .Add(S["Content Request Culture Provider"], S["Content Request Culture Provider"].PrefixPosition(), registration => registration
|
||||||
|
#: OrchardCore.ContentLocalization\AdminMenu.cs:31
|
||||||
|
#: OrchardCore.ContentLocalization\AdminMenu.cs:31
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.AdminMenu"
|
||||||
|
msgid "Content Request Culture Provider"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Content Culture Picker"], S["Content Culture Picker"].PrefixPosition(), registration => registration
|
||||||
|
#. .Add(S["Content Culture Picker"], S["Content Culture Picker"].PrefixPosition(), registration => registration
|
||||||
|
#: OrchardCore.ContentLocalization\AdminMenu.cs:37
|
||||||
|
#: OrchardCore.ContentLocalization\AdminMenu.cs:37
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.AdminMenu"
|
||||||
|
msgid "Content Culture Picker"
|
||||||
|
msgstr "قائمة محتوى اللغات"
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["A localization already exists for '{0}'.", targetCulture]);
|
||||||
|
#: OrchardCore.ContentLocalization\Controllers\AdminController.cs:75
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Controllers.AdminController"
|
||||||
|
msgid "A localization already exists for '{0}'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.InformationAsync(H["Localized version of the content created successfully."]);
|
||||||
|
#: OrchardCore.ContentLocalization\Controllers\AdminController.cs:82
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Controllers.AdminController"
|
||||||
|
msgid "Localized version of the content created successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["Could not create localized version of the content item."]);
|
||||||
|
#: OrchardCore.ContentLocalization\Controllers\AdminController.cs:87
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Controllers.AdminController"
|
||||||
|
msgid "Could not create localized version of the content item."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["All cultures"], Value = "", Selected = String.IsNullOrEmpty(m.SelectedCulture) }
|
||||||
|
#: OrchardCore.ContentLocalization\Drivers\LocalizationContentsAdminListDisplayDriver.cs:45
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Drivers.LocalizationContentsAdminListDisplayDriver"
|
||||||
|
msgid "All cultures"
|
||||||
|
msgstr "كل اللغات"
|
||||||
|
|
||||||
|
#. Description = S["the localization part of the content item"];
|
||||||
|
#: OrchardCore.ContentLocalization\GraphQL\LocalizationInputObjectType.cs:13
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.GraphQL.LocalizationInputObjectType"
|
||||||
|
msgid "the localization part of the content item"
|
||||||
|
msgstr "جزء الترجمة لعنصر المحتوى"
|
||||||
|
|
||||||
|
#. AddScalarFilterFields<StringGraphType>("culture", S["the culture of the content item to filter"]);
|
||||||
|
#: OrchardCore.ContentLocalization\GraphQL\LocalizationInputObjectType.cs:15
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.GraphQL.LocalizationInputObjectType"
|
||||||
|
msgid "the culture of the content item to filter"
|
||||||
|
msgstr "لغة عنصر المحتوى للتصفية"
|
||||||
|
|
||||||
|
#. Field(x => x.LocalizationSet, nullable: true).Description(S["the localization set of the content item to filter"]);
|
||||||
|
#: OrchardCore.ContentLocalization\GraphQL\LocalizationInputObjectType.cs:16
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.GraphQL.LocalizationInputObjectType"
|
||||||
|
msgid "the localization set of the content item to filter"
|
||||||
|
msgstr "مجموعة الترجمات لعنصر المحتوى المراد تصفيته"
|
||||||
|
|
||||||
|
#. Description = S["Localization cultures for your content item."];
|
||||||
|
#: OrchardCore.ContentLocalization\GraphQL\LocalizationQueryObjectType.cs:19
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.GraphQL.LocalizationQueryObjectType"
|
||||||
|
msgid "Localization cultures for your content item."
|
||||||
|
msgstr "لغات الترجمة لعنصر المحتوى."
|
||||||
|
|
||||||
|
#. Field(x => x.Culture).Description(S["The culture for your content item."]);
|
||||||
|
#: OrchardCore.ContentLocalization\GraphQL\LocalizationQueryObjectType.cs:21
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.GraphQL.LocalizationQueryObjectType"
|
||||||
|
msgid "The culture for your content item."
|
||||||
|
msgstr "لغة عنصر المحتوى."
|
||||||
|
|
||||||
|
#. Field(x => x.LocalizationSet).Description(S["The localization set for your content item."]);
|
||||||
|
#: OrchardCore.ContentLocalization\GraphQL\LocalizationQueryObjectType.cs:22
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.GraphQL.LocalizationQueryObjectType"
|
||||||
|
msgid "The localization set for your content item."
|
||||||
|
msgstr "مجموعة الترجمات لعنصر المحتوى."
|
||||||
|
|
||||||
|
#. .Description(S["The localizations of the content item."])
|
||||||
|
#: OrchardCore.ContentLocalization\GraphQL\LocalizationQueryObjectType.cs:26
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.GraphQL.LocalizationQueryObjectType"
|
||||||
|
msgid "The localizations of the content item."
|
||||||
|
msgstr "ترجمة عنصر المحتوى."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SetCookie">@T["Set Cookie"]</label>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\ContentCulturePickerSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.ContentCulturePickerSettings.Edit"
|
||||||
|
msgid "Set Cookie"
|
||||||
|
msgstr "ضبط الكوكيز"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Sets the localization cookie when switching cultures using the ContentCulturePicker"]</span>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\ContentCulturePickerSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.ContentCulturePickerSettings.Edit"
|
||||||
|
msgid "Sets the localization cookie when switching cultures using the ContentCulturePicker"
|
||||||
|
msgstr "ضبط كوكيز الترجمات عند تغيير اللغات بإستخدام قائمة لغات المحتوى"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="RedirectToHomepage">@T["Homepage redirect "]</label>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\ContentCulturePickerSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.ContentCulturePickerSettings.Edit"
|
||||||
|
msgid "Homepage redirect "
|
||||||
|
msgstr "الإنتقال إلى الصفحة الرئيسية "
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Redirects to the homepage of the target culture if the ContentItem of the target culture does not exist."]</span>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\ContentCulturePickerSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.ContentCulturePickerSettings.Edit"
|
||||||
|
msgid "Redirects to the homepage of the target culture if the ContentItem of the target culture does not exist."
|
||||||
|
msgstr "الإنتقال إلى الصفحة الرئيسية للغة المحددة في حالة عدم توفر ترجمة لعنصر المحتوى."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SetCookie">@T["Set Cookie"]</label>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\ContentRequestCultureProviderSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.ContentRequestCultureProviderSettings.Edit"
|
||||||
|
msgid "Set Cookie"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Sets the localization cookie based on the LocalizationPart culture when accessing a page in the frontend."]</span>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\ContentRequestCultureProviderSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.ContentRequestCultureProviderSettings.Edit"
|
||||||
|
msgid "Sets the localization cookie based on the LocalizationPart culture when accessing a page in the frontend."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <select asp-for="SelectedCulture" asp-items="Model.Cultures" class="selectpicker culture-selectpicker show-tick me-2" data-header="@T["Filter by culture"]" data-live-search="true" data-selected-text-format="static" data-width="fit" title="@T["Culture"]" data-style="btn-sm">
|
||||||
|
#: OrchardCore.ContentLocalization\Views\ContentsAdminList-LocalizationPartFilter.cshtml:5
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.ContentsAdminList-LocalizationPartFilter"
|
||||||
|
msgid "Filter by culture"
|
||||||
|
msgstr "التصفية بحسب اللغة"
|
||||||
|
|
||||||
|
#. <select asp-for="SelectedCulture" asp-items="Model.Cultures" class="selectpicker culture-selectpicker show-tick me-2" data-header="@T["Filter by culture"]" data-live-search="true" data-selected-text-format="static" data-width="fit" title="@T["Culture"]" data-style="btn-sm">
|
||||||
|
#: OrchardCore.ContentLocalization\Views\ContentsAdminList-LocalizationPartFilter.cshtml:5
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.ContentsAdminList-LocalizationPartFilter"
|
||||||
|
msgid "Culture"
|
||||||
|
msgstr "اللغة"
|
||||||
|
|
||||||
|
#. @T["Current Culture: {1} | {0}", Model.CultureInfo.Name, Model.CultureInfo.DisplayName]
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.LocalizationPart.Edit"
|
||||||
|
msgid "Current Culture: {1} | {0}"
|
||||||
|
msgstr "اللغة الحالية: {1} | {0}"
|
||||||
|
|
||||||
|
#. <p>@T["Your site does not have any cultures. Current System culture is {1} | {0}", CultureInfo.InstalledUICulture.Name, CultureInfo.InstalledUICulture.DisplayName]</p>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.LocalizationPart.Edit"
|
||||||
|
msgid "Your site does not have any cultures. Current System culture is {1} | {0}"
|
||||||
|
msgstr "موقعك لا يحتوي على أية لغات. لغة النظام ستكون {1} | {0}"
|
||||||
|
|
||||||
|
#. <p><a asp-route-area="OrchardCore.Settings" asp-controller="Admin" asp-action="Index" asp-route-groupId = "localization">@T["Add or remove supported cultures for the site"]</a></p>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.LocalizationPart.Edit"
|
||||||
|
msgid "Add or remove supported cultures for the site"
|
||||||
|
msgstr "إضافة أو حذف اللغات المدعومة لهذا الموقع"
|
||||||
|
|
||||||
|
#. <a class="list-group-item list-group-item-action" asp-action="Edit" asp-controller="Admin" asp-route-area="OrchardCore.Contents" asp-route-contentItemId="@culture.ContentItemId" title=@T["Edit {0}", culture.Culture.DisplayName]><i class="fa fa-edit" aria-hidden="true"></i> @culture.Culture.DisplayName | @culture.Culture.Name </a>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.Edit.cshtml:32
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.LocalizationPart.Edit"
|
||||||
|
msgid "Edit {0}"
|
||||||
|
msgstr "تحرير {0}"
|
||||||
|
|
||||||
|
#. <a class="list-group-item list-group-item-action" data-url-af="UnsafeUrl" asp-action="Localize" asp-controller="Admin" asp-route-area="OrchardCore.ContentLocalization" asp-route-contentItemId="@Model.LocalizationPart.ContentItem.ContentItemId" asp-route-targetCulture="@culture.Culture.Name" title=@T["Create {0}", culture.Culture.DisplayName]><i class="fa fa-plus" aria-hidden="true"></i> @culture.Culture.DisplayName | @culture.Culture.Name</a>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.Edit.cshtml:36
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.LocalizationPart.Edit"
|
||||||
|
msgid "Create {0}"
|
||||||
|
msgstr "إنشاء {0}"
|
||||||
|
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.LocalizationPart.Edit"
|
||||||
|
msgid "Please save your content item before creating localizations"
|
||||||
|
msgstr "فضلاً قم بحفظ عنصر المحتوى قبل تعريبه"
|
||||||
|
|
||||||
|
#. <span class="badge ta-badge font-weight-normal" data-bs-toggle="tooltip" title="@T["Culture"]"><i class="fa fa-globe text-info" aria-hidden="true"></i> @Model.LocalizationPart.Culture</span>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.SummaryAdmin.cshtml:5
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.LocalizationPart.SummaryAdmin"
|
||||||
|
msgid "Culture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="btn-group" title="@T["Localizations"]">
|
||||||
|
#. <span>@T["Localizations"]</span>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.SummaryAdminLinks.cshtml:5
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.SummaryAdminLinks.cshtml:7
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.LocalizationPart.SummaryAdminLinks"
|
||||||
|
msgid "Localizations"
|
||||||
|
msgstr "التعريب"
|
||||||
|
|
||||||
|
#. <a class="dropdown-item btn-sm" asp-action="Edit" asp-controller="Admin" asp-route-area="OrchardCore.Contents" asp-route-contentItemId="@culture.ContentItemId" data-url-af="UnsafeUrl" title=@T["Edit {0}", culture.Culture.DisplayName]><i class="fa fa-edit" aria-hidden="true"></i> @culture.Culture.DisplayName | @culture.Culture.Name </a>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.SummaryAdminLinks.cshtml:15
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.LocalizationPart.SummaryAdminLinks"
|
||||||
|
msgid "Edit {0}"
|
||||||
|
msgstr "تحرير {0}"
|
||||||
|
|
||||||
|
#. <a class="dropdown-item btn-sm" data-url-af="UnsafeUrl" asp-action="Localize" asp-controller="Admin" asp-route-area="OrchardCore.ContentLocalization" asp-route-contentItemId="@Model.LocalizationPart.ContentItem.ContentItemId" asp-route-targetCulture="@culture.Culture.Name" title=@T["Create {0}", culture.Culture.DisplayName]><i class="fa fa-plus" aria-hidden="true"></i> @culture.Culture.DisplayName | @culture.Culture.Name</a>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\LocalizationPart.SummaryAdminLinks.cshtml:19
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.LocalizationPart.SummaryAdminLinks"
|
||||||
|
msgid "Create {0}"
|
||||||
|
msgstr "إنشاء {0}"
|
||||||
|
|
||||||
|
#. <p>@T["Filters on a content items localization culture."]</p>
|
||||||
|
#: OrchardCore.ContentLocalization\Views\Items\ContentsAdminFilters-Culture.Thumbnail.cshtml:8
|
||||||
|
msgctxt "OrchardCore.ContentLocalization.Views.Items.ContentsAdminFilters-Culture.Thumbnail"
|
||||||
|
msgid "Filters on a content items localization culture."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.ContentManagement.GraphQL.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 714\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:01\n"
|
||||||
|
|
||||||
|
#. Description = S["Content items are instances of content types, just like objects are instances of classes."],
|
||||||
|
#: OrchardCore.ContentManagement.GraphQL\Queries\ContentItemQuery.cs:34
|
||||||
|
msgctxt "OrchardCore.ContentManagement.GraphQL.Queries.ContentItemQuery"
|
||||||
|
msgid "Content items are instances of content types, just like objects are instances of classes."
|
||||||
|
msgstr "عناصر المحتوى هي كائنات من أنواع المحتوى, مثل كائنات الفئات."
|
||||||
|
|
||||||
|
#. Description = S["Content item id"]
|
||||||
|
#: OrchardCore.ContentManagement.GraphQL\Queries\ContentItemQuery.cs:40
|
||||||
|
msgctxt "OrchardCore.ContentManagement.GraphQL.Queries.ContentItemQuery"
|
||||||
|
msgid "Content item id"
|
||||||
|
msgstr "معرف عنصر المحتوى"
|
||||||
|
|
||||||
|
#. Description = S["Represents a {0}.", typeDefinition.DisplayName]
|
||||||
|
#. Description = S["Represents a {0}.", typeDefinition.DisplayName],
|
||||||
|
#: OrchardCore.ContentManagement.GraphQL\Queries\ContentTypeQuery.cs:56
|
||||||
|
#: OrchardCore.ContentManagement.GraphQL\Queries\ContentTypeQuery.cs:62
|
||||||
|
msgctxt "OrchardCore.ContentManagement.GraphQL.Queries.ContentTypeQuery"
|
||||||
|
msgid "Represents a {0}."
|
||||||
|
msgstr "يمثل {0}."
|
||||||
|
|
||||||
|
#. description: S["Represents a {0}.", part.PartDefinition.Name],
|
||||||
|
#: OrchardCore.ContentManagement.GraphQL\Queries\Types\DynamicContentTypeBuilder.cs:104
|
||||||
|
msgctxt "OrchardCore.ContentManagement.GraphQL.Queries.Types.DynamicContentTypeBuilder"
|
||||||
|
msgid "Represents a {0}."
|
||||||
|
msgstr "يمثل {0}."
|
||||||
|
|
||||||
50
src/Twain.Web/Localization/ar/OrchardCore.ContentPreview.po
Normal file
50
src/Twain.Web/Localization/ar/OrchardCore.ContentPreview.po
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.ContentPreview.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 716\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(nameof(model.Pattern), S["Pattern doesn't contain a valid Liquid expression. Details: {0}", string.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.ContentPreview\Settings\PreviewPartSettingsDisplayDriver.cs:45
|
||||||
|
msgctxt "OrchardCore.ContentPreview.Settings.PreviewPartSettingsDisplayDriver"
|
||||||
|
msgid "Pattern doesn't contain a valid Liquid expression. Details: {0}"
|
||||||
|
msgstr "النمط لا يحتوي على عبارة Liquid صحيحة. للتفاصيل: {0}"
|
||||||
|
|
||||||
|
#. <a id="previewButton" target="_blank" class="btn btn-info" href="@Url.Action("Index", "Preview", new { area = "OrchardCore.ContentPreview", id = previewId })">@T["Preview"]</a>
|
||||||
|
#: OrchardCore.ContentPreview\Views\ContentPreview.Button.cshtml:13
|
||||||
|
msgctxt "OrchardCore.ContentPreview.Views.ContentPreview.Button"
|
||||||
|
msgid "Preview"
|
||||||
|
msgstr "معاينة"
|
||||||
|
|
||||||
|
#. <label asp-for="Pattern">@T["Pattern"]</label>
|
||||||
|
#: OrchardCore.ContentPreview\Views\PreviewPartSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.ContentPreview.Views.PreviewPartSettings.Edit"
|
||||||
|
msgid "Pattern"
|
||||||
|
msgstr "نمط"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The pattern used to render the custom preview url of this content type."]</span>
|
||||||
|
#: OrchardCore.ContentPreview\Views\PreviewPartSettings.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.ContentPreview.Views.PreviewPartSettings.Edit"
|
||||||
|
msgid "The pattern used to render the custom preview url of this content type."
|
||||||
|
msgstr "النمط المستخدم لإظهار رابط المعاينة لنوع المحتوى هذا."
|
||||||
|
|
||||||
|
#. <span>@T["Preview Disconnected"] </span>
|
||||||
|
#: OrchardCore.ContentPreview\Views\Preview\Index.cshtml:14
|
||||||
|
msgctxt "OrchardCore.ContentPreview.Views.Preview.Index"
|
||||||
|
msgid "Preview Disconnected"
|
||||||
|
msgstr "المعاينة مقطوعة"
|
||||||
|
|
||||||
|
#. <p>@T["Preview Error"] </p>
|
||||||
|
#: OrchardCore.ContentPreview\Views\Preview\Index.cshtml:19
|
||||||
|
msgctxt "OrchardCore.ContentPreview.Views.Preview.Index"
|
||||||
|
msgid "Preview Error"
|
||||||
|
msgstr "خطأ المعاينة"
|
||||||
|
|
||||||
1102
src/Twain.Web/Localization/ar/OrchardCore.ContentTypes.po
Normal file
1102
src/Twain.Web/Localization/ar/OrchardCore.ContentTypes.po
Normal file
File diff suppressed because it is too large
Load Diff
2681
src/Twain.Web/Localization/ar/OrchardCore.Contents.po
Normal file
2681
src/Twain.Web/Localization/ar/OrchardCore.Contents.po
Normal file
File diff suppressed because it is too large
Load Diff
288
src/Twain.Web/Localization/ar/OrchardCore.Cors.po
Normal file
288
src/Twain.Web/Localization/ar/OrchardCore.Cors.po
Normal file
@@ -0,0 +1,288 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Cors.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 722\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:03\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Cors\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Cors.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "التكوين"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Cors\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Cors.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["CORS"], S["CORS"].PrefixPosition(), entry => entry
|
||||||
|
#. .Add(S["CORS"], S["CORS"].PrefixPosition(), entry => entry
|
||||||
|
#: OrchardCore.Cors\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.Cors\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Cors.AdminMenu"
|
||||||
|
msgid "CORS"
|
||||||
|
msgstr "CORS"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["The CORS settings have updated successfully."]);
|
||||||
|
#: OrchardCore.Cors\Controllers\AdminController.cs:127
|
||||||
|
msgctxt "OrchardCore.Cors.Controllers.AdminController"
|
||||||
|
msgid "The CORS settings have updated successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-share-alt" aria-hidden="true"></i></span><span class="title">@T["CORS"]</span>
|
||||||
|
#: OrchardCore.Cors\Views\NavigationItemText-cors.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Cors.Views.NavigationItemText-cors.Id"
|
||||||
|
msgid "CORS"
|
||||||
|
msgstr "CORS"
|
||||||
|
|
||||||
|
#. <h1>@T["CORS Settings"]</h1>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "CORS Settings"
|
||||||
|
msgstr "إعدادات CORS"
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The current tenant will be reloaded when the CORS is executed."]</p>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "The current tenant will be reloaded when the CORS is executed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="alert alert-info">@T["CORS stands for Cross-Origin Resource Sharing. More information can be found here:"] <a target="_blank" href="https://docs.microsoft.com/en-us/aspnet/core/security/cors">https://docs.microsoft.com/en-us/aspnet/core/security/cors</a></div>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "CORS stands for Cross-Origin Resource Sharing. More information can be found here:"
|
||||||
|
msgstr "CORS اختصار لاشتراك المصادر في الموارد. يمكن العثور على مزيد من المعلومات هنا:"
|
||||||
|
|
||||||
|
#. <input id="search-box" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <button class="btn btn-secondary" type="button" v-on:click="newPolicy">@T["Add a policy"]</button>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:38
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Add a policy"
|
||||||
|
msgstr "إضافة سياسة"
|
||||||
|
|
||||||
|
#. <span v-if="policy.IsDefaultPolicy" class="badge ta-badge">@T["Default Policy"]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:48
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Default Policy"
|
||||||
|
msgstr "السياسة الافتراضية"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary btn-sm" type="button" v-on:click="editPolicy(policy)">@T["Edit"]</button>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:49
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تعديل"
|
||||||
|
|
||||||
|
#. <button class="delete btn btn-danger btn-sm" type="button" v-on:click="deletePolicy(policy, $event)">@T["Delete"]</button>
|
||||||
|
#. <button type="button" class="btn btn-danger btn-sm" v-on:click="deleteOption(option)">@T["Delete"]</button>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:50
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:165
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no CORS policies for the moment."]
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:56
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no CORS policies for the moment."
|
||||||
|
msgstr "<strong>لا شي هنا!</strong> لاتوجد سياسات CORS حاليا."
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> Your search returned no results."]
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> Your search returned no results."
|
||||||
|
msgstr "<strong>لا شيء هنا!</strong> لم يسفر بحثك عن أي نتائج."
|
||||||
|
|
||||||
|
#. <h5 class="card-title">@T["Details"]
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Details"
|
||||||
|
msgstr "التفاصيل"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Provide policy details."]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Provide policy details."
|
||||||
|
msgstr "قدم تفاصيل السياسة."
|
||||||
|
|
||||||
|
#. <label>@T["Policy name"]</label>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Policy name"
|
||||||
|
msgstr "اسم السياسة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The name of the policy."]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:77
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "The name of the policy."
|
||||||
|
msgstr "الاسم للسياسة."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="set-default-policy">@T["Set as default policy"]</label>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:81
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Set as default policy"
|
||||||
|
msgstr "تعيين كسياسة افتراضية"
|
||||||
|
|
||||||
|
#. <h5 class="card-title">@T["Credentials"]
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:87
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Credentials"
|
||||||
|
msgstr "الإعتمادات"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Configure the credentials behavior."]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:88
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Configure the credentials behavior."
|
||||||
|
msgstr "تكوين سلوك بيانات الاعتماد."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="allow-credentials">@T["Allow credentials"]</label>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:93
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allow credentials"
|
||||||
|
msgstr "السماح بالإعتمادات"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Allows credentials to be transported in requests. This setting is not allowed in combination with Allow Any Origin."]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:94
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allows credentials to be transported in requests. This setting is not allowed in combination with Allow Any Origin."
|
||||||
|
msgstr "يسمح بنقل الإعتمادات في الطلبات. هذا الإعداد غير مسموح به بالاقتران مع السماح بأي منشأ."
|
||||||
|
|
||||||
|
#. <h5 class="card-title">@T["Origins"]
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:100
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Origins"
|
||||||
|
msgstr "الأصول"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Configure the origins behavior."]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:101
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Configure the origins behavior."
|
||||||
|
msgstr "تكوين سلوك الأصلول."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="allowed-origins">@T["Allow any origin"]</label>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:107
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allow any origin"
|
||||||
|
msgstr "السماح بأي مصدر"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Allows requests from any origin. This will bypass any origin that is configured below."]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:108
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allows requests from any origin. This will bypass any origin that is configured below."
|
||||||
|
msgstr "يسمح بالطلبات من أي منشأ. هذا سيتجاوز أي مصدر تم تكوينه أدناه."
|
||||||
|
|
||||||
|
#. <options-list v-bind:options="policy.AllowedOrigins" optionType="@T["Origin"]" title="@T["Allowed origins"]" subTitle="" />
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:110
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Origin"
|
||||||
|
msgstr "الأصل"
|
||||||
|
|
||||||
|
#. <options-list v-bind:options="policy.AllowedOrigins" optionType="@T["Origin"]" title="@T["Allowed origins"]" subTitle="" />
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:110
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allowed origins"
|
||||||
|
msgstr "الأصول المسموح بها"
|
||||||
|
|
||||||
|
#. <h5 class="card-title">@T["Headers"]
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:116
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Headers"
|
||||||
|
msgstr "الرؤوس"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Allow certain or all headers to be used by the external client."]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:117
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allow certain or all headers to be used by the external client."
|
||||||
|
msgstr "السماح باستخدام بعض الرؤوس أو جميع الرؤوس من قبل عميل خارجي."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="allowed-headers">@T["Allow any header"]</label>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:123
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allow any header"
|
||||||
|
msgstr "السماح لأي رأس"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Allows requests with any header. This will bypass any headers that are configured below."]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:124
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allows requests with any header. This will bypass any headers that are configured below."
|
||||||
|
msgstr "يسمح بالطلبات بأي راس. هذا سيتجاوز أي رؤوس تم تكوينها أدناه."
|
||||||
|
|
||||||
|
#. <options-list v-bind:options="policy.AllowedHeaders" optionType="@T["Header"]" title="@T["Allowed headers"]" subTitle="" />
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:126
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Header"
|
||||||
|
msgstr "رأس"
|
||||||
|
|
||||||
|
#. <options-list v-bind:options="policy.AllowedHeaders" optionType="@T["Header"]" title="@T["Allowed headers"]" subTitle="" />
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:126
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allowed headers"
|
||||||
|
msgstr "الرؤوس المسموح بها"
|
||||||
|
|
||||||
|
#. <h5 class="card-title">@T["Methods"]
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:132
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Methods"
|
||||||
|
msgstr "الأساليب"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Configure the methods behavior (POST, PUT, DELETE, GET, etc)."]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:133
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Configure the methods behavior (POST, PUT, DELETE, GET, etc)."
|
||||||
|
msgstr "تكوين سلوك الأساليب (POST، PUT، DELETE، GET، الخ)."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="allowed-methods">@T["Allow any method"]</label>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:139
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allow any method"
|
||||||
|
msgstr "السماح بأي أسلوب"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Allows requests with any method. This will bypass any methods that are configured below."]</span>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:140
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allows requests with any method. This will bypass any methods that are configured below."
|
||||||
|
msgstr "يسمح بالطلبات بأي أسلوب. هذا سيتجاوز أي طرق تم تكوينها أدناه."
|
||||||
|
|
||||||
|
#. <options-list v-bind:options="policy.AllowedMethods" optionType="@T["Method"]" title="@T["Allowed methods"]" subTitle="" />
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:142
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Method"
|
||||||
|
msgstr "الأسلوب"
|
||||||
|
|
||||||
|
#. <options-list v-bind:options="policy.AllowedMethods" optionType="@T["Method"]" title="@T["Allowed methods"]" subTitle="" />
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:142
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Allowed methods"
|
||||||
|
msgstr "الأساليب المسموح بها"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-primary" v-on:click="$emit('ok', policy, $event)">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:147
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" v-on:click="$emit('back')">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:148
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary btn-sm" type="button" v-on:click="addOption(newOption)">@T["Add"] {{ optionType }}</button>
|
||||||
|
#: OrchardCore.Cors\Views\Admin\Index.cshtml:159
|
||||||
|
msgctxt "OrchardCore.Cors.Views.Admin.Index"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "إضافة"
|
||||||
|
|
||||||
74
src/Twain.Web/Localization/ar/OrchardCore.CustomSettings.po
Normal file
74
src/Twain.Web/Localization/ar/OrchardCore.CustomSettings.po
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.CustomSettings.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 724\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.CustomSettings\AdminMenu.cs:32
|
||||||
|
msgctxt "OrchardCore.CustomSettings.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.CustomSettings\AdminMenu.cs:33
|
||||||
|
msgctxt "OrchardCore.CustomSettings.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. <h5>@T["Custom Settings"]</h5>
|
||||||
|
#: OrchardCore.CustomSettings\Views\Items\CustomSettingsDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.CustomSettings.Views.Items.CustomSettingsDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Custom Settings"
|
||||||
|
msgstr "إعدادات مخصصة"
|
||||||
|
|
||||||
|
#. @T["Include all custom settings."]
|
||||||
|
#: OrchardCore.CustomSettings\Views\Items\CustomSettingsDeploymentStep.Fields.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.CustomSettings.Views.Items.CustomSettingsDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Include all custom settings."
|
||||||
|
msgstr "تضمين كافة الإعدادات المخصصة."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The custom settings to add as part of the plan."]</span>
|
||||||
|
#: OrchardCore.CustomSettings\Views\Items\CustomSettingsDeploymentStep.Fields.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.CustomSettings.Views.Items.CustomSettingsDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The custom settings to add as part of the plan."
|
||||||
|
msgstr "الإعدادات المخصصة المراد إضافتها كجزء من الخطة."
|
||||||
|
|
||||||
|
#. <h5>@T["Custom Settings"]</h5>
|
||||||
|
#: OrchardCore.CustomSettings\Views\Items\CustomSettingsDeploymentStep.Fields.Summary.cshtml:8
|
||||||
|
msgctxt "OrchardCore.CustomSettings.Views.Items.CustomSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Custom Settings"
|
||||||
|
msgstr "إعدادات مخصصة"
|
||||||
|
|
||||||
|
#. <span class="badge bg-success">@T["All"]</span>
|
||||||
|
#: OrchardCore.CustomSettings\Views\Items\CustomSettingsDeploymentStep.Fields.Summary.cshtml:12
|
||||||
|
msgctxt "OrchardCore.CustomSettings.Views.Items.CustomSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "All"
|
||||||
|
msgstr "الكل"
|
||||||
|
|
||||||
|
#. <span class="badge bg-warning">@T["No custom settings selected."]</span>
|
||||||
|
#: OrchardCore.CustomSettings\Views\Items\CustomSettingsDeploymentStep.Fields.Summary.cshtml:23
|
||||||
|
msgctxt "OrchardCore.CustomSettings.Views.Items.CustomSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "No custom settings selected."
|
||||||
|
msgstr "لا توجد إعدادات مخصصة محددة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Custom Settings"]</h4>
|
||||||
|
#: OrchardCore.CustomSettings\Views\Items\CustomSettingsDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.CustomSettings.Views.Items.CustomSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Custom Settings"
|
||||||
|
msgstr "إعدادات مخصصة"
|
||||||
|
|
||||||
|
#. <p>@T["Exports all or specified custom settings."]</p>
|
||||||
|
#: OrchardCore.CustomSettings\Views\Items\CustomSettingsDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.CustomSettings.Views.Items.CustomSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports all or specified custom settings."
|
||||||
|
msgstr "تصدير كل الإعدادات المخصصة أو المحددة."
|
||||||
|
|
||||||
120
src/Twain.Web/Localization/ar/OrchardCore.Demo.po
Normal file
120
src/Twain.Web/Localization/ar/OrchardCore.Demo.po
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Demo.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 726\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 18:38\n"
|
||||||
|
|
||||||
|
#. .Add(S["Demo"], "10", demo => demo
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "Demo"
|
||||||
|
msgstr "عرض تجريبي"
|
||||||
|
|
||||||
|
#. .Add(S["This Menu Item 1"], "0", item => item
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "This Menu Item 1"
|
||||||
|
msgstr "عنصر قائمة 1"
|
||||||
|
|
||||||
|
#. .Add(S["This is Menu Item 1.1"], subItem => subItem
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "This is Menu Item 1.1"
|
||||||
|
msgstr "عنصر قائمة 1.1"
|
||||||
|
|
||||||
|
#. .Add(S["This is Menu Item 1.2"], subItem => subItem
|
||||||
|
#. .Add(S["This is Menu Item 1.2"], subItem => subItem
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:30
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:32
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "This is Menu Item 1.2"
|
||||||
|
msgstr "عنصر قائمة 1.2"
|
||||||
|
|
||||||
|
#. .Add(S["This Menu Item 2"], "0", item => item
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:35
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "This Menu Item 2"
|
||||||
|
msgstr "عنصر قائمة 2"
|
||||||
|
|
||||||
|
#. .Add(S["This is Menu Item 2.1"], subItem => subItem
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:36
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "This is Menu Item 2.1"
|
||||||
|
msgstr "عنصر قائمة 2.1"
|
||||||
|
|
||||||
|
#. .Add(S["This is Menu Item 2.2"], subItem => subItem
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:38
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "This is Menu Item 2.2"
|
||||||
|
msgstr "عنصر قائمة 2.2"
|
||||||
|
|
||||||
|
#. .Add(S["This is Menu Item 3.2"], subItem => subItem
|
||||||
|
#. .Add(S["This is Menu Item 3.2"], subItem => subItem
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:40
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:46
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "This is Menu Item 3.2"
|
||||||
|
msgstr "عنصر قائمة 3.2"
|
||||||
|
|
||||||
|
#. .Add(S["This Menu Item 3"], "0", item => item
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:43
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "This Menu Item 3"
|
||||||
|
msgstr "عنصر قائمة 3"
|
||||||
|
|
||||||
|
#. .Add(S["This is Menu Item 3.1"], subItem => subItem
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:44
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "This is Menu Item 3.1"
|
||||||
|
msgstr "عنصر قائمة 3.1"
|
||||||
|
|
||||||
|
#. .Add(S["Todo (Liquid - Frontend)"], "0", item => item
|
||||||
|
#: OrchardCore.Demo\AdminMenu.cs:50
|
||||||
|
msgctxt "OrchardCore.Demo.AdminMenu"
|
||||||
|
msgid "Todo (Liquid - Frontend)"
|
||||||
|
msgstr "المهمة (Liquid - Frontend)"
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-hashtag" aria-hidden="true"></i></span><span class="title">@T["Demo"]</span>
|
||||||
|
#: OrchardCore.Demo\Views\NavigationItemText-demo.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Demo.Views.NavigationItemText-demo.Id"
|
||||||
|
msgid "Demo"
|
||||||
|
msgstr "عرض تجريبي"
|
||||||
|
|
||||||
|
#. <label asp-for="FirstName">@T["First Name"]</label>
|
||||||
|
#. <input asp-for="FirstName" type="text" class="form-control" placeholder="@T["First Name"]" />
|
||||||
|
#: OrchardCore.Demo\Views\UserProfile.Edit.cshtml:4
|
||||||
|
#: OrchardCore.Demo\Views\UserProfile.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Demo.Views.UserProfile.Edit"
|
||||||
|
msgid "First Name"
|
||||||
|
msgstr "الإسم الأول"
|
||||||
|
|
||||||
|
#. <label asp-for="LastName">@T["Last Name"]</label>
|
||||||
|
#. <input asp-for="LastName" type="text" class="form-control" placeholder="@T["Last Name"]" />
|
||||||
|
#: OrchardCore.Demo\Views\UserProfile.Edit.cshtml:9
|
||||||
|
#: OrchardCore.Demo\Views\UserProfile.Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Demo.Views.UserProfile.Edit"
|
||||||
|
msgid "Last Name"
|
||||||
|
msgstr "الإسم الأخير"
|
||||||
|
|
||||||
|
#. <label asp-for="Age">@T["Age"]</label>
|
||||||
|
#. <input asp-for="Age" type="text" class="form-control" placeholder="@T["Age"]" />
|
||||||
|
#: OrchardCore.Demo\Views\UserProfile.Edit.cshtml:14
|
||||||
|
#: OrchardCore.Demo\Views\UserProfile.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Demo.Views.UserProfile.Edit"
|
||||||
|
msgid "Age"
|
||||||
|
msgstr "العمر"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit {0}", (string)Model.ContentItem.ContentType])</h1></zone>
|
||||||
|
#: OrchardCore.Demo\Views\Content\Edit.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Demo.Views.Content.Edit"
|
||||||
|
msgid "Edit {0}"
|
||||||
|
msgstr "تحرير {0}"
|
||||||
|
|
||||||
574
src/Twain.Web/Localization/ar/OrchardCore.Deployment.Remote.po
Normal file
574
src/Twain.Web/Localization/ar/OrchardCore.Deployment.Remote.po
Normal file
@@ -0,0 +1,574 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Deployment.Remote.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 728\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:05\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Deployment.Remote\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. .Add(S["Import/Export"], import => import
|
||||||
|
#: OrchardCore.Deployment.Remote\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.AdminMenu"
|
||||||
|
msgid "Import/Export"
|
||||||
|
msgstr "إستيراد/تصدير"
|
||||||
|
|
||||||
|
#. .Add(S["Remote Instances"], S["Remote Instances"].PrefixPosition(), remote => remote
|
||||||
|
#. .Add(S["Remote Instances"], S["Remote Instances"].PrefixPosition(), remote => remote
|
||||||
|
#: OrchardCore.Deployment.Remote\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.Deployment.Remote\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.AdminMenu"
|
||||||
|
msgid "Remote Instances"
|
||||||
|
msgstr "الكائنات البعيدة"
|
||||||
|
|
||||||
|
#. .Add(S["Remote Clients"], S["Remote Clients"].PrefixPosition(), remote => remote
|
||||||
|
#. .Add(S["Remote Clients"], S["Remote Clients"].PrefixPosition(), remote => remote
|
||||||
|
#: OrchardCore.Deployment.Remote\AdminMenu.cs:32
|
||||||
|
#: OrchardCore.Deployment.Remote\AdminMenu.cs:32
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.AdminMenu"
|
||||||
|
msgid "Remote Clients"
|
||||||
|
msgstr "العملاء البعيدين"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Deployment executed successfully."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\ExportRemoteInstanceController.cs:107
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.ExportRemoteInstanceController"
|
||||||
|
msgid "Deployment executed successfully."
|
||||||
|
msgstr "تم تنفيذ النشر بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while sending the deployment to the remote instance: \"{0} ({1})\"", response.ReasonPhrase, (int)response.StatusCode]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\ExportRemoteInstanceController.cs:111
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.ExportRemoteInstanceController"
|
||||||
|
msgid "An error occurred while sending the deployment to the remote instance: \"{0} ({1})\""
|
||||||
|
msgstr "حدث خطأ أثناء إرسال النشر إلى كائن بعيد: \"{0} ({1})\""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Remove) }
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteClientController.cs:92
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteClientController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Remote client created successfully."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteClientController.cs:136
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteClientController"
|
||||||
|
msgid "Remote client created successfully."
|
||||||
|
msgstr "تم إنشاء عميل بعيد بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Remote client updated successfully."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteClientController.cs:192
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteClientController"
|
||||||
|
msgid "Remote client updated successfully."
|
||||||
|
msgstr "تم تحديث عميل بعيد بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Remote client deleted successfully."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteClientController.cs:218
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteClientController"
|
||||||
|
msgid "Remote client deleted successfully."
|
||||||
|
msgstr "تم حذف عميل بعيد بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Remote clients successfully removed."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteClientController.cs:246
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteClientController"
|
||||||
|
msgid "Remote clients successfully removed."
|
||||||
|
msgstr "العملاء البعيدين تم حذفهم بنجاح."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(EditRemoteClientViewModel.ClientName), S["The client name is mandatory."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteClientController.cs:260
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteClientController"
|
||||||
|
msgid "The client name is mandatory."
|
||||||
|
msgstr "إسم العميل مطلوب."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(EditRemoteClientViewModel.ApiKey), S["The api key is mandatory."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteClientController.cs:265
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteClientController"
|
||||||
|
msgid "The api key is mandatory."
|
||||||
|
msgstr "مفتاح الـ api مطلوب."
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Remove) }
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteInstanceController.cs:87
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteInstanceController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Remote instance created successfully."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteInstanceController.cs:131
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteInstanceController"
|
||||||
|
msgid "Remote instance created successfully."
|
||||||
|
msgstr "تم إنشاء مثيل بعيد بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Remote instance updated successfully."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteInstanceController.cs:189
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteInstanceController"
|
||||||
|
msgid "Remote instance updated successfully."
|
||||||
|
msgstr "تم تحديث مثيل بعيد بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Remote instance deleted successfully."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteInstanceController.cs:215
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteInstanceController"
|
||||||
|
msgid "Remote instance deleted successfully."
|
||||||
|
msgstr "تم حذف مثيل بعيد بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Remote instances successfully removed."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteInstanceController.cs:243
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteInstanceController"
|
||||||
|
msgid "Remote instances successfully removed."
|
||||||
|
msgstr "تمت إزالة المثيلات البعيدة بنجاح."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(EditRemoteInstanceViewModel.Name), S["The name is mandatory."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteInstanceController.cs:257
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteInstanceController"
|
||||||
|
msgid "The name is mandatory."
|
||||||
|
msgstr "الإسم مطلوب."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(EditRemoteInstanceViewModel.ClientName), S["The client name is mandatory."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteInstanceController.cs:262
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteInstanceController"
|
||||||
|
msgid "The client name is mandatory."
|
||||||
|
msgstr "إسم العميل مطلوب."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(EditRemoteInstanceViewModel.ApiKey), S["The api key is mandatory."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteInstanceController.cs:267
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteInstanceController"
|
||||||
|
msgid "The api key is mandatory."
|
||||||
|
msgstr "مفتاح الـ Api مطلوب."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(EditRemoteInstanceViewModel.Url), S["The url is mandatory."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteInstanceController.cs:272
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteInstanceController"
|
||||||
|
msgid "The url is mandatory."
|
||||||
|
msgstr "الرابط مطلوب."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(EditRemoteInstanceViewModel.Url), S["The url is invalid."]);
|
||||||
|
#: OrchardCore.Deployment.Remote\Controllers\RemoteInstanceController.cs:279
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Controllers.RemoteInstanceController"
|
||||||
|
msgid "The url is invalid."
|
||||||
|
msgstr "الرابط غير صحيح."
|
||||||
|
|
||||||
|
#. description: S["Sends the deployment plan to a remote instance."],
|
||||||
|
#: OrchardCore.Deployment.Remote\Services\RemoteInstanceDeploymentTargetProvider.cs:30
|
||||||
|
msgctxt "OrchardCore.Deployment.RemoteInstanceDeploymentTargetProvider"
|
||||||
|
msgid "Sends the deployment plan to a remote instance."
|
||||||
|
msgstr "ارسل خطة النشر إلى كائن بعيد."
|
||||||
|
|
||||||
|
#. <label asp-for="ClientName">@T["Client Name"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Create.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Create"
|
||||||
|
msgid "Client Name"
|
||||||
|
msgstr "إسم العميل"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="ClientName" class="text-danger">@T["The client name is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Create.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Create"
|
||||||
|
msgid "The client name is required."
|
||||||
|
msgstr "إسم العميل مطلوب."
|
||||||
|
|
||||||
|
#. <label asp-for="ApiKey">@T["Api Key"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Create.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Create"
|
||||||
|
msgid "Api Key"
|
||||||
|
msgstr "مفتاح Api"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="ApiKey" class="text-danger">@T["The api key is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Create.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Create"
|
||||||
|
msgid "The api key is required."
|
||||||
|
msgstr "مفتاح الـ Api مطلوب."
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Create.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Create"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "إنشاء"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Create.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Remote Client"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Edit"
|
||||||
|
msgid "Edit Remote Client"
|
||||||
|
msgstr "تحرير العميل البعيد"
|
||||||
|
|
||||||
|
#. <label asp-for="ClientName">@T["Client Name"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Edit"
|
||||||
|
msgid "Client Name"
|
||||||
|
msgstr "إسم العميل"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="ClientName" class="text-danger">@T["The client name is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Edit"
|
||||||
|
msgid "The client name is required."
|
||||||
|
msgstr "إسم العميل مطلوب."
|
||||||
|
|
||||||
|
#. <label asp-for="ApiKey">@T["Api Key"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Edit"
|
||||||
|
msgid "Api Key"
|
||||||
|
msgstr "مفتاح Api"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="ApiKey" class="text-danger">@T["The api key is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Edit"
|
||||||
|
msgid "The api key is required."
|
||||||
|
msgstr "مفتاح الـ Api مطلوب."
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Remote Clients"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Remote Clients"
|
||||||
|
msgstr "العملاء البعيدين"
|
||||||
|
|
||||||
|
#. @T["Url to use from client instances: <b>{0}</b>", Url.Action("Import", "ImportRemoteInstance", null, Context.Request.Scheme)]
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Url to use from client instances: <b>{0}</b>"
|
||||||
|
msgstr "الرابط المستخدم من العملاء: <b>{0}</b>"
|
||||||
|
|
||||||
|
#. <input asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <a asp-route-action="Create" class="btn btn-secondary create" role="button">@T["Add Remote Client"]</a>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Add Remote Client"
|
||||||
|
msgstr "إضافة عميل بعيد"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "إختيار الكل"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.RemoteClients.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:44
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] "{0} عنصر"
|
||||||
|
msgstr[1] "{0} عنصر"
|
||||||
|
msgstr[2] "{0} عنصرين"
|
||||||
|
msgstr[3] "{0} بعض العناصر"
|
||||||
|
msgstr[4] "{0} العناصر"
|
||||||
|
msgstr[5] "{0} عناصر"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.RemoteClients.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:44
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr "العناصر {0} إلى {1}"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.RemoteClients.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:44
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] " / {0} عنصر في المجموع"
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:53
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr "الإجراءات"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:58
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr "إجراءات جملة"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:58
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr "هل أنت متأكد من أنك تريد {0} هذه العناصر؟"
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-id="@entry.Id" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. <a asp-action="Delete" asp-route-id="@entry.Id" class="btn btn-danger btn-sm" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:76
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no remote clients for the moment."]
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:87
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no remote clients for the moment."
|
||||||
|
msgstr "<strong>لا شي هنا!</strong> لا يوجد أي عملاء بعيدين في الوقت الحالي."
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:138
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteClient\Index.cshtml:149
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteClient.Index"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr "حدد"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Remote Instance"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "Create Remote Instance"
|
||||||
|
msgstr "إنشاء كائن بعيد"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="Name" class="text-danger">@T["The name is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "The name is required."
|
||||||
|
msgstr "الإسم مطلوب."
|
||||||
|
|
||||||
|
#. <label asp-for="Url">@T["Url"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "Url"
|
||||||
|
msgstr "الرابط"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="Url" class="text-danger">@T["The url is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "The url is required."
|
||||||
|
msgstr "الرابط مطلوب."
|
||||||
|
|
||||||
|
#. <label asp-for="ClientName">@T["Client Name"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "Client Name"
|
||||||
|
msgstr "إسم العميل"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="ClientName" class="text-danger">@T["The client name is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "The client name is required."
|
||||||
|
msgstr "إسم العميل مطلوب."
|
||||||
|
|
||||||
|
#. <label asp-for="ApiKey">@T["Api Key"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "Api Key"
|
||||||
|
msgstr "مفتاح Api"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="ApiKey" class="text-danger">@T["The api key is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "The api key is required."
|
||||||
|
msgstr "مفتاح الـ Api مطلوب."
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "إنشاء"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Create.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Remote Instance"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "Edit Remote Instance"
|
||||||
|
msgstr "تحرير كائن بعيد"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الاسم"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="Name" class="text-danger">@T["The name is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "The name is required."
|
||||||
|
msgstr "الاسم إلزامي."
|
||||||
|
|
||||||
|
#. <label asp-for="Url">@T["Url"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "Url"
|
||||||
|
msgstr "عنوان URL"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="Url" class="text-danger">@T["The url is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "The url is required."
|
||||||
|
msgstr "العنوان URL إلزامي."
|
||||||
|
|
||||||
|
#. <label asp-for="ClientName">@T["Client Name"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "Client Name"
|
||||||
|
msgstr "إسم العميل"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="ClientName" class="text-danger">@T["The client name is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "The client name is required."
|
||||||
|
msgstr "إسم العميل مطلوب."
|
||||||
|
|
||||||
|
#. <label asp-for="ApiKey">@T["Api Key"]</label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "Api Key"
|
||||||
|
msgstr "مفتاح الـ API"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="ApiKey" class="text-danger">@T["The api key is required."]</span>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "The api key is required."
|
||||||
|
msgstr "مفتاح الـ API إلزامي."
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Remote Instances"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "Remote Instances"
|
||||||
|
msgstr "الكائنات البعيدة"
|
||||||
|
|
||||||
|
#. <input asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <a asp-route-action="Create" class="btn btn-secondary create" role="button">@T["Add Remote Instance"]</a>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "Add Remote Instance"
|
||||||
|
msgstr "إضافة كائن بعيد"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:38
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "تحديد الكل"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.RemoteInstances.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] "{0} عناصر"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.RemoteInstances.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr "العناصر {0} إلى {1}"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.RemoteInstances.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:46
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr "الإجراءت"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr "إجراءات جملة"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-id="@entry.Id" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:68
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. <a asp-action="Delete" asp-route-id="@entry.Id" class="btn btn-danger btn-sm" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:69
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no remote instances for the moment."]
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:81
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no remote instances for the moment."
|
||||||
|
msgstr "<strong>لا شي هنا!</strong> لا يوجد أي كائنات بعيدة في الوقت الحالي."
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:132
|
||||||
|
#: OrchardCore.Deployment.Remote\Views\RemoteInstance\Index.cshtml:143
|
||||||
|
msgctxt "OrchardCore.Deployment.Remote.Views.RemoteInstance.Index"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr "حدد"
|
||||||
|
|
||||||
752
src/Twain.Web/Localization/ar/OrchardCore.Deployment.po
Normal file
752
src/Twain.Web/Localization/ar/OrchardCore.Deployment.po
Normal file
@@ -0,0 +1,752 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Deployment.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 730\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:05\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Deployment\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Deployment.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Import/Export"], S["Import/Export"].PrefixPosition(), import => import
|
||||||
|
#. .Add(S["Import/Export"], S["Import/Export"].PrefixPosition(), import => import
|
||||||
|
#: OrchardCore.Deployment\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Deployment\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Deployment.AdminMenu"
|
||||||
|
msgid "Import/Export"
|
||||||
|
msgstr "إستيراد/تصدير"
|
||||||
|
|
||||||
|
#. .Add(S["Deployment Plans"], S["Deployment Plans"].PrefixPosition(), deployment => deployment
|
||||||
|
#. .Add(S["Deployment Plans"], S["Deployment Plans"].PrefixPosition(), deployment => deployment
|
||||||
|
#: OrchardCore.Deployment\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.Deployment\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Deployment.AdminMenu"
|
||||||
|
msgid "Deployment Plans"
|
||||||
|
msgstr "خطط النشر"
|
||||||
|
|
||||||
|
#. .Add(S["Package Import"], S["Package Import"].PrefixPosition(), deployment => deployment
|
||||||
|
#. .Add(S["Package Import"], S["Package Import"].PrefixPosition(), deployment => deployment
|
||||||
|
#: OrchardCore.Deployment\AdminMenu.cs:32
|
||||||
|
#: OrchardCore.Deployment\AdminMenu.cs:32
|
||||||
|
msgctxt "OrchardCore.Deployment.AdminMenu"
|
||||||
|
msgid "Package Import"
|
||||||
|
msgstr "استيراد حزمة"
|
||||||
|
|
||||||
|
#. .Add(S["JSON Import"], S["JSON Import"].PrefixPosition(), deployment => deployment
|
||||||
|
#. .Add(S["JSON Import"], S["JSON Import"].PrefixPosition(), deployment => deployment
|
||||||
|
#: OrchardCore.Deployment\AdminMenu.cs:37
|
||||||
|
#: OrchardCore.Deployment\AdminMenu.cs:37
|
||||||
|
msgctxt "OrchardCore.Deployment.AdminMenu"
|
||||||
|
msgid "JSON Import"
|
||||||
|
msgstr "استيراد JSON"
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Delete) }
|
||||||
|
#: OrchardCore.Deployment\Controllers\DeploymentPlanController.cs:106
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.DeploymentPlanController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Deployment plans successfully deleted."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\DeploymentPlanController.cs:142
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.DeploymentPlanController"
|
||||||
|
msgid "Deployment plans successfully deleted."
|
||||||
|
msgstr "تم حذف خطة النشر بنجاح."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(CreateDeploymentPlanViewModel.Name), S["The name is mandatory."]);
|
||||||
|
#. ModelState.AddModelError(nameof(EditDeploymentPlanViewModel.Name), S["The name is mandatory."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\DeploymentPlanController.cs:217
|
||||||
|
#: OrchardCore.Deployment\Controllers\DeploymentPlanController.cs:282
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.DeploymentPlanController"
|
||||||
|
msgid "The name is mandatory."
|
||||||
|
msgstr "الاسم مطلوب."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(CreateDeploymentPlanViewModel.Name), S["A deployment plan with the same name already exists."]);
|
||||||
|
#. ModelState.AddModelError(nameof(CreateDeploymentPlanViewModel.Name), S["A deployment plan with the same name already exists."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\DeploymentPlanController.cs:223
|
||||||
|
#: OrchardCore.Deployment\Controllers\DeploymentPlanController.cs:289
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.DeploymentPlanController"
|
||||||
|
msgid "A deployment plan with the same name already exists."
|
||||||
|
msgstr "خطة النشر بنفس الإسم موجودة مسبقاً."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Deployment plan updated successfully."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\DeploymentPlanController.cs:300
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.DeploymentPlanController"
|
||||||
|
msgid "Deployment plan updated successfully."
|
||||||
|
msgstr "تم تحديث خطة النشر بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Deployment plan deleted successfully."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\DeploymentPlanController.cs:326
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.DeploymentPlanController"
|
||||||
|
msgid "Deployment plan deleted successfully."
|
||||||
|
msgstr "تم حذف خطة النشر بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["Only zip or json files are supported."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\ImportController.cs:84
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.ImportController"
|
||||||
|
msgid "Only zip or json files are supported."
|
||||||
|
msgstr "فقط ملفات zip أو json مدعومة."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Deployment package imported."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\ImportController.cs:91
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.ImportController"
|
||||||
|
msgid "Deployment package imported."
|
||||||
|
msgstr "تم استيراد حزمة النشر."
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["Please add a file to import."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\ImportController.cs:108
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.ImportController"
|
||||||
|
msgid "Please add a file to import."
|
||||||
|
msgstr "الرجاء اختيار ملف للاستيراد."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(model.Json), S["The recipe is written in an incorrect json format."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\ImportController.cs:134
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.ImportController"
|
||||||
|
msgid "The recipe is written in an incorrect json format."
|
||||||
|
msgstr "كتبت الوصفة بتنسيق Json خاطئ."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Recipe imported."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\ImportController.cs:148
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.ImportController"
|
||||||
|
msgid "Recipe imported."
|
||||||
|
msgstr "الوصفة المستوردة."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Deployment plan step added successfully."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\StepController.cs:117
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.StepController"
|
||||||
|
msgid "Deployment plan step added successfully."
|
||||||
|
msgstr "تم إضافة خطوة خطه النشر بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Deployment plan step updated successfully."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\StepController.cs:190
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.StepController"
|
||||||
|
msgid "Deployment plan step updated successfully."
|
||||||
|
msgstr "تم تحديث خطوة خطه النشر بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["The deployment plan step has validation errors."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\StepController.cs:194
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.StepController"
|
||||||
|
msgid "The deployment plan step has validation errors."
|
||||||
|
msgstr "خطوة خطه النشر تحتوي اخطاء تحقق."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Deployment step deleted successfully."]);
|
||||||
|
#: OrchardCore.Deployment\Controllers\StepController.cs:226
|
||||||
|
msgctxt "OrchardCore.Deployment.Controllers.StepController"
|
||||||
|
msgid "Deployment step deleted successfully."
|
||||||
|
msgstr "تم حذف خطوة النشر بنجاح."
|
||||||
|
|
||||||
|
#. name: S["File Download"],
|
||||||
|
#: OrchardCore.Deployment\Services\FileDownloadDeploymentTargetProvider.cs:22
|
||||||
|
msgctxt "OrchardCore.Deployment.FileDownloadDeploymentTargetProvider"
|
||||||
|
msgid "File Download"
|
||||||
|
msgstr "تحميل ملف"
|
||||||
|
|
||||||
|
#. description: S["Download a deployment plan locally."],
|
||||||
|
#: OrchardCore.Deployment\Services\FileDownloadDeploymentTargetProvider.cs:23
|
||||||
|
msgctxt "OrchardCore.Deployment.FileDownloadDeploymentTargetProvider"
|
||||||
|
msgid "Download a deployment plan locally."
|
||||||
|
msgstr "حمل خطة النشر محلياً."
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(JsonRecipeDeploymentStepViewModel.Json), S["The recipe must have a name property"]);
|
||||||
|
#: OrchardCore.Deployment\Steps\JsonRecipeDeploymentStepDriver.cs:71
|
||||||
|
msgctxt "OrchardCore.Deployment.Steps.JsonRecipeDeploymentStepDriver"
|
||||||
|
msgid "The recipe must have a name property"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(JsonRecipeDeploymentStepViewModel.Json), S["Invalid JSON supplied"]);
|
||||||
|
#: OrchardCore.Deployment\Steps\JsonRecipeDeploymentStepDriver.cs:77
|
||||||
|
msgctxt "OrchardCore.Deployment.Steps.JsonRecipeDeploymentStepDriver"
|
||||||
|
msgid "Invalid JSON supplied"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentStep.Summary.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentStep.Summary"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentStep.Summary.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentStep.Summary"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. <a class="btn btn-primary btn-sm" asp-route-action="Create" asp-route-controller="Step" asp-route-id="@Model.DeploymentPlan.Id" asp-route-type="@Model.Type">@T["Add"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentStep.Thumbnail.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentStep.Thumbnail"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "إضافة"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Deployment Plan"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Create.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Create"
|
||||||
|
msgid "Create Deployment Plan"
|
||||||
|
msgstr "إنشاء خطة نشر"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Create.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Create"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Create.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Create"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "إنشاء"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Create.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Deployment Plan"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Display"
|
||||||
|
msgid "Deployment Plan"
|
||||||
|
msgstr "خطة نشر"
|
||||||
|
|
||||||
|
#. <div class="d-none" id="stepOrderErrorMessage" data-message="@T["Error updating step order"]"></div>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Display"
|
||||||
|
msgid "Error updating step order"
|
||||||
|
msgstr "خطأ في تحديث ترتيب الخطوة"
|
||||||
|
|
||||||
|
#. @T["Execute"]
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Display"
|
||||||
|
msgid "Execute"
|
||||||
|
msgstr "تنفيذ"
|
||||||
|
|
||||||
|
#. @T["Add Step"]
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Display"
|
||||||
|
msgid "Add Step"
|
||||||
|
msgstr "إضافة خطوة"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no steps on this plan for the moment."]
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Display"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no steps on this plan for the moment."
|
||||||
|
msgstr "<strong>لاتوجد</strong> خطوات لخطة النشر هذه."
|
||||||
|
|
||||||
|
#. <h5 class="modal-title" id="available-steps-title">@T["Available Steps"]</h5>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Display"
|
||||||
|
msgid "Available Steps"
|
||||||
|
msgstr "الخطوات المتاحة"
|
||||||
|
|
||||||
|
#. <input class="form-control" id="search-box" type="search" placeholder="@T["Filter"]" aria-label="@T["Filter"]" autofocus />
|
||||||
|
#. <input class="form-control" id="search-box" type="search" placeholder="@T["Filter"]" aria-label="@T["Filter"]" autofocus />
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:67
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:67
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Display"
|
||||||
|
msgid "Filter"
|
||||||
|
msgstr "تصفية"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Cancel"]</button>
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:82
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:117
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Display"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <h5 class="modal-title" id="available-targets-title">@T["Available Targets"]</h5>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:92
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Display"
|
||||||
|
msgid "Available Targets"
|
||||||
|
msgstr "المستهدفات المتوفرة"
|
||||||
|
|
||||||
|
#. <a class="btn btn-primary btn-sm" href="@Url.RouteUrl(routeWithId)" data-url-af="UnsafeUrl">@T["Select"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Display.cshtml:109
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Display"
|
||||||
|
msgid "Select"
|
||||||
|
msgstr "إختيار"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Deployment Plan"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Edit"
|
||||||
|
msgid "Edit Deployment Plan"
|
||||||
|
msgstr "تحرير خطة النشر"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Deployment Plans"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Deployment Plans"
|
||||||
|
msgstr "خطط النشر"
|
||||||
|
|
||||||
|
#. <input asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <a asp-route-action="Create" class="btn btn-secondary create" role="button">@T["Add Deployment Plan"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Add Deployment Plan"
|
||||||
|
msgstr "إضافة خطة نشر"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:38
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr "اختيار الكل"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.DeploymentPlans.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] "{0} عناصر"
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] "{0} عناصر"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.DeploymentPlans.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr "العناصر {0} إلى {1}"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.DeploymentPlans.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] " / {0} عناصر ككل"
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] " / {0} عناصر من الكل"
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:46
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr "الإجراءت"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr "مجموعة إجراءات"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr "هل أنت متأكد من أنك تريد {0} هذه العناصر؟"
|
||||||
|
|
||||||
|
#. <a asp-action="Display" asp-route-id="@entry.DeploymentPlan.Id" class="btn btn-info btn-sm">@T["Manage Steps"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:64
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Manage Steps"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-id="@entry.DeploymentPlan.Id" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:65
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. <a asp-action="Delete" asp-route-id="@entry.DeploymentPlan.Id" class="btn btn-danger btn-sm" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:66
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no deployment plans at the moment."]
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:81
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no deployment plans at the moment."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:138
|
||||||
|
#: OrchardCore.Deployment\Views\DeploymentPlan\Index.cshtml:149
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.DeploymentPlan.Index"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr "تم تحديدها"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Import Deployment Package"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment\Views\Import\Index.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Import.Index"
|
||||||
|
msgid "Import Deployment Package"
|
||||||
|
msgstr "استيراد حزمة نشر"
|
||||||
|
|
||||||
|
#. <label for="file" class="form-label">@T["Select a file"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Import\Index.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Import.Index"
|
||||||
|
msgid "Select a file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary import" type="submit">@T["Import"]</button>
|
||||||
|
#: OrchardCore.Deployment\Views\Import\Index.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Import.Index"
|
||||||
|
msgid "Import"
|
||||||
|
msgstr "إستيراد"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["JSON Import"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment\Views\Import\Json.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Import.Json"
|
||||||
|
msgid "JSON Import"
|
||||||
|
msgstr "استيراد JSON"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary import" type="submit">@T["Import"]</button>
|
||||||
|
#: OrchardCore.Deployment\Views\Import\Json.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Import.Json"
|
||||||
|
msgid "Import"
|
||||||
|
msgstr "إستيراد"
|
||||||
|
|
||||||
|
#. <h5>@T["Custom File"]</h5>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\CustomFileDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.CustomFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Custom File"
|
||||||
|
msgstr "ملف مخصص"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The custom file to add as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\CustomFileDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.CustomFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The custom file to add as part of the plan."
|
||||||
|
msgstr "الملف المخصص المراد إضافته كجزء من خطة النشر."
|
||||||
|
|
||||||
|
#. <label asp-for="FileName">@T["File Name"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\CustomFileDeploymentStep.Fields.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.CustomFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "File Name"
|
||||||
|
msgstr "إسم الملف"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The filename as it will be added in the archive."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\CustomFileDeploymentStep.Fields.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.CustomFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The filename as it will be added in the archive."
|
||||||
|
msgstr "اسم الملف الذي سيستخدم عند إضافته للأرشيف."
|
||||||
|
|
||||||
|
#. <label asp-for="FileContent">@T["File Content"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\CustomFileDeploymentStep.Fields.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.CustomFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "File Content"
|
||||||
|
msgstr "محتوى الملف"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The content of the file."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\CustomFileDeploymentStep.Fields.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.CustomFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The content of the file."
|
||||||
|
msgstr "محتويات الملف."
|
||||||
|
|
||||||
|
#. <h5>@T["Custom File"]</h5>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\CustomFileDeploymentStep.Fields.Summary.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.CustomFileDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Custom File"
|
||||||
|
msgstr "ملف مخصص"
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Custom File"]</h4>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\CustomFileDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.CustomFileDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Custom File"
|
||||||
|
msgstr "ملف مخصص"
|
||||||
|
|
||||||
|
#. <p>@T["Exports a custom file and its content."]</p>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\CustomFileDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.CustomFileDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports a custom file and its content."
|
||||||
|
msgstr "تصدير ملف مخصص ومحتواه."
|
||||||
|
|
||||||
|
#. <h5>@T["Deployment Plans"]</h5>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\DeploymentPlanDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.DeploymentPlanDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Deployment Plans"
|
||||||
|
msgstr "خطط النشر"
|
||||||
|
|
||||||
|
#. @T["Include all deployment plans."]
|
||||||
|
#: OrchardCore.Deployment\Views\Items\DeploymentPlanDeploymentStep.Fields.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.DeploymentPlanDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Include all deployment plans."
|
||||||
|
msgstr "تضمين كل خطط النشر."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The deployment plans to add as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\DeploymentPlanDeploymentStep.Fields.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.DeploymentPlanDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The deployment plans to add as part of the plan."
|
||||||
|
msgstr "خطط النشر التي يمكن إضافتها كجزء لخطة نشر أخرى."
|
||||||
|
|
||||||
|
#. <h5>@T["Deployment Plans"]</h5>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\DeploymentPlanDeploymentStep.Fields.Summary.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.DeploymentPlanDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Deployment Plans"
|
||||||
|
msgstr "خطط النشر"
|
||||||
|
|
||||||
|
#. <span class="badge bg-success">@T["All"]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\DeploymentPlanDeploymentStep.Fields.Summary.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.DeploymentPlanDeploymentStep.Fields.Summary"
|
||||||
|
msgid "All"
|
||||||
|
msgstr "الكل"
|
||||||
|
|
||||||
|
#. <span class="badge bg-warning">@T["No deployment plan selected."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\DeploymentPlanDeploymentStep.Fields.Summary.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.DeploymentPlanDeploymentStep.Fields.Summary"
|
||||||
|
msgid "No deployment plan selected."
|
||||||
|
msgstr "لم يتم اختيار خطة نشر."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Deployment Plans"]</h4>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\DeploymentPlanDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.DeploymentPlanDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Deployment Plans"
|
||||||
|
msgstr "خطط النشر"
|
||||||
|
|
||||||
|
#. <p>@T["Exports all or specified deployment plans."]</p>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\DeploymentPlanDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.DeploymentPlanDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports all or specified deployment plans."
|
||||||
|
msgstr "تصدير كل خطط النشر أو المحدد منها فقط."
|
||||||
|
|
||||||
|
#. <h5>@T["JSON Recipe"]</h5>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\JsonRecipeDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.JsonRecipeDeploymentStep.Fields.Edit"
|
||||||
|
msgid "JSON Recipe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Json">@T["Recipe"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\JsonRecipeDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.JsonRecipeDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Recipe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The json recipe."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\JsonRecipeDeploymentStep.Fields.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.JsonRecipeDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The json recipe."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["JSON Recipe"]</h5>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\JsonRecipeDeploymentStep.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.JsonRecipeDeploymentStep.Fields.Summary"
|
||||||
|
msgid "JSON Recipe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["JSON Recipe"]</h4>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\JsonRecipeDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.JsonRecipeDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "JSON Recipe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports a JSON Recipe."]</p>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\JsonRecipeDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.JsonRecipeDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports a JSON Recipe."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Recipe File"]</h5>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Recipe File"
|
||||||
|
msgstr "ملف الوصفة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The recipe file to add as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The recipe file to add as part of the plan."
|
||||||
|
msgstr "ملف الوصفة المراد إضافته كجزء من خطة النشر."
|
||||||
|
|
||||||
|
#. <label asp-for="RecipeName">@T["Recipe Name"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Recipe Name"
|
||||||
|
msgstr "اسم الوصفة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The recipe name."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The recipe name."
|
||||||
|
msgstr "اسم الوصفة."
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayName">@T["Display Name"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "الاسم الظاهر"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The recipe display name."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The recipe display name."
|
||||||
|
msgstr "اسم عرض الوصفة."
|
||||||
|
|
||||||
|
#. <label asp-for="Description">@T["Description"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "الوصف"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The recipe description."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:31
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The recipe description."
|
||||||
|
msgstr "وصف الوصفة."
|
||||||
|
|
||||||
|
#. <label asp-for="Author">@T["Author"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Author"
|
||||||
|
msgstr "المؤلف"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The recipe author."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The recipe author."
|
||||||
|
msgstr "مؤلف الوصفة."
|
||||||
|
|
||||||
|
#. <label asp-for="WebSite">@T["WebSite"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "WebSite"
|
||||||
|
msgstr "الموقع الإلكتروني"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The recipe web site."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:45
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The recipe web site."
|
||||||
|
msgstr "الموقع الإلكتروني للوصفة."
|
||||||
|
|
||||||
|
#. <label asp-for="Version">@T["Version"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:49
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Version"
|
||||||
|
msgstr "الإصدار"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The recipe version."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The recipe version."
|
||||||
|
msgstr "إصدار الوصفة."
|
||||||
|
|
||||||
|
#. <label asp-for="Categories">@T["Categories"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:57
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Categories"
|
||||||
|
msgstr "الفئات"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The recipe categories (comma separated values)."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:59
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The recipe categories (comma separated values)."
|
||||||
|
msgstr "فئات الوصفة (القيم مفصولة بفاصلة)."
|
||||||
|
|
||||||
|
#. <label asp-for="Tags">@T["Tags"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:63
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Tags"
|
||||||
|
msgstr "الوسوم"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The recipe tags (comma separated values)."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:65
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The recipe tags (comma separated values)."
|
||||||
|
msgstr "وسوم الوصفة (قيم مفصولة بفواصل)."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="IsSetupRecipe">@T["Setup recipe"]</label>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Setup recipe"
|
||||||
|
msgstr "تثبيت وصفة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Check if the recipe is for setup."]</span>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Edit.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Check if the recipe is for setup."
|
||||||
|
msgstr "تحقق مما إذا كانت الوصفة للإعداد."
|
||||||
|
|
||||||
|
#. <h5>@T["Recipe File"]</h5>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Summary.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Recipe File"
|
||||||
|
msgstr "ملف الوصفة"
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Recipe File"]</h4>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Recipe File"
|
||||||
|
msgstr "ملف الوصفة"
|
||||||
|
|
||||||
|
#. <p>@T["Exports a recipe file."]</p>
|
||||||
|
#: OrchardCore.Deployment\Views\Items\RecipeFileDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Items.RecipeFileDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports a recipe file."
|
||||||
|
msgstr "تصدير ملف الوصفة."
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Step"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment\Views\Step\Create.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Step.Create"
|
||||||
|
msgid "Create Step"
|
||||||
|
msgstr "إنشاء خطوة"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.Deployment\Views\Step\Create.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Step.Create"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "إنشاء"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Display" asp-route-controller="DeploymentPlan" asp-route-id="@Model.DeploymentPlanId">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\Step\Create.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Step.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Step"])</h1></zone>
|
||||||
|
#: OrchardCore.Deployment\Views\Step\Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Step.Edit"
|
||||||
|
msgid "Edit Step"
|
||||||
|
msgstr "تحرير خطوة"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Deployment\Views\Step\Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Step.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\Step\Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Step.Edit"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. asp-route-id="@Model.DeploymentPlanId">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Deployment\Views\Step\Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Deployment.Views.Step.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
44
src/Twain.Web/Localization/ar/OrchardCore.Diagnostics.po
Normal file
44
src/Twain.Web/Localization/ar/OrchardCore.Diagnostics.po
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Diagnostics.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 732\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 18:34\n"
|
||||||
|
|
||||||
|
#. <h1>@T["Your browser sent a request that this server could not understand."]</h1>
|
||||||
|
#: OrchardCore.Diagnostics\Views\Diagnostics\BadRequest.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Diagnostics.Views.Diagnostics.BadRequest"
|
||||||
|
msgid "Your browser sent a request that this server could not understand."
|
||||||
|
msgstr "أرسل متصفحك طلبا لم يتمكن هذا الخادم من فهمه."
|
||||||
|
|
||||||
|
#. <h1>@T["An error occurred while executing this request."]</h1>
|
||||||
|
#: OrchardCore.Diagnostics\Views\Diagnostics\Error.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Diagnostics.Views.Diagnostics.Error"
|
||||||
|
msgid "An error occurred while executing this request."
|
||||||
|
msgstr "حدث خطأ اثناء تنفيذ هذا الطلب."
|
||||||
|
|
||||||
|
#. <h1>@T["You do not have access to this resource."]</h1>
|
||||||
|
#: OrchardCore.Diagnostics\Views\Diagnostics\Forbidden.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Diagnostics.Views.Diagnostics.Forbidden"
|
||||||
|
msgid "You do not have access to this resource."
|
||||||
|
msgstr "غير مسموح لك الوصول الى هذا المصدر."
|
||||||
|
|
||||||
|
#. <h1>@T["The page could not be found."]</h1>
|
||||||
|
#: OrchardCore.Diagnostics\Views\Diagnostics\NotFound.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Diagnostics.Views.Diagnostics.NotFound"
|
||||||
|
msgid "The page could not be found."
|
||||||
|
msgstr "لم يتم العثور على الصفحة."
|
||||||
|
|
||||||
|
#. <h1>@T["You are not authorized to view this content."]</h1>
|
||||||
|
#: OrchardCore.Diagnostics\Views\Diagnostics\Unauthorized.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Diagnostics.Views.Diagnostics.Unauthorized"
|
||||||
|
msgid "You are not authorized to view this content."
|
||||||
|
msgstr "لا تملك الصلاحية لعرض هذا المحتوى."
|
||||||
|
|
||||||
194
src/Twain.Web/Localization/ar/OrchardCore.DisplayManagement.po
Normal file
194
src/Twain.Web/Localization/ar/OrchardCore.DisplayManagement.po
Normal file
@@ -0,0 +1,194 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.DisplayManagement.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 734\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 18:36\n"
|
||||||
|
|
||||||
|
#. return H.Plural(time.TotalYears(), "1 year ago", "{0} years ago");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:44
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "1 year ago"
|
||||||
|
msgid_plural "{0} years ago"
|
||||||
|
msgstr[0] "منذ أقل من سنة"
|
||||||
|
msgstr[1] "منذ سنة"
|
||||||
|
msgstr[2] "منذ سنتين"
|
||||||
|
msgstr[3] "منذ سنوات قليلة"
|
||||||
|
msgstr[4] "منذ عدة سنوات"
|
||||||
|
msgstr[5] "منذ {0} سنوات"
|
||||||
|
|
||||||
|
#. return H.Plural(-time.TotalYears(), "in 1 year", "in {0} years");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:46
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "in 1 year"
|
||||||
|
msgid_plural "in {0} years"
|
||||||
|
msgstr[0] "خلال أقل من سنة"
|
||||||
|
msgstr[1] "خلال سنة"
|
||||||
|
msgstr[2] "خلال سنتين"
|
||||||
|
msgstr[3] "خلال سنوات قليلة"
|
||||||
|
msgstr[4] "خلال عدة سنوات"
|
||||||
|
msgstr[5] "خلال {0} سنوات"
|
||||||
|
|
||||||
|
#. return H.Plural(time.TotalMonths(), "1 month ago", "{0} months ago");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:49
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "1 month ago"
|
||||||
|
msgid_plural "{0} months ago"
|
||||||
|
msgstr[0] "منذ أقل من شهر"
|
||||||
|
msgstr[1] "منذ شهر"
|
||||||
|
msgstr[2] "منذ شهرين"
|
||||||
|
msgstr[3] "منذ أشهر قليلة"
|
||||||
|
msgstr[4] "منذ عدة أشهر"
|
||||||
|
msgstr[5] "منذ {0} أشهر"
|
||||||
|
|
||||||
|
#. return H.Plural(-time.TotalMonths(), "in 1 month", "in {0} months");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:51
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "in 1 month"
|
||||||
|
msgid_plural "in {0} months"
|
||||||
|
msgstr[0] "خلال أقل من شهر"
|
||||||
|
msgstr[1] "خلال شهر"
|
||||||
|
msgstr[2] "خلال شهرين"
|
||||||
|
msgstr[3] "خلال أشهر قليلة"
|
||||||
|
msgstr[4] "خلال عدة أشهر"
|
||||||
|
msgstr[5] "خلال {0} أشهر"
|
||||||
|
|
||||||
|
#. return H.Plural(time.TotalWeeks(), "1 week ago", "{0} weeks ago");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:54
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "1 week ago"
|
||||||
|
msgid_plural "{0} weeks ago"
|
||||||
|
msgstr[0] "منذ أقل من أسبوع"
|
||||||
|
msgstr[1] "منذ أسبوع"
|
||||||
|
msgstr[2] "منذ أسبوعين"
|
||||||
|
msgstr[3] "منذ أسابيع قليلة"
|
||||||
|
msgstr[4] "منذ عدة أسابيع"
|
||||||
|
msgstr[5] "من {0} أسابيع"
|
||||||
|
|
||||||
|
#. return H.Plural(-time.TotalWeeks(), "in 1 week", "in {0} weeks");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:56
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "in 1 week"
|
||||||
|
msgid_plural "in {0} weeks"
|
||||||
|
msgstr[0] "خلال أقل من أسبوع"
|
||||||
|
msgstr[1] "خلال أسبوع"
|
||||||
|
msgstr[2] "خلال أسبوعين"
|
||||||
|
msgstr[3] "خلال أسابيع قليلة"
|
||||||
|
msgstr[4] "خلال عدة أسابيع"
|
||||||
|
msgstr[5] "خلال {0} أسابيع"
|
||||||
|
|
||||||
|
#. return H.Plural(time.Days, "1 day ago", "{0} days ago");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:59
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "1 day ago"
|
||||||
|
msgid_plural "{0} days ago"
|
||||||
|
msgstr[0] "منذ أقل من أسبوع"
|
||||||
|
msgstr[1] "منذ أسبوع"
|
||||||
|
msgstr[2] "منذ أسبوعين"
|
||||||
|
msgstr[3] "منذ أسابيع قليلة"
|
||||||
|
msgstr[4] "منذ عدة أسابيع"
|
||||||
|
msgstr[5] "منذ {0} أسابيع"
|
||||||
|
|
||||||
|
#. return H.Plural(-time.Days, "in 1 day", "in {0} days");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:61
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "in 1 day"
|
||||||
|
msgid_plural "in {0} days"
|
||||||
|
msgstr[0] "خلال أقل من يوم"
|
||||||
|
msgstr[1] "خلال يوم"
|
||||||
|
msgstr[2] "خلال يومين"
|
||||||
|
msgstr[3] "خلال أيام قليلة"
|
||||||
|
msgstr[4] "خلال عدة أيام"
|
||||||
|
msgstr[5] "خلال {0} أيام"
|
||||||
|
|
||||||
|
#. return H.Plural(time.Hours, "1 hour ago", "{0} hours ago");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:64
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "1 hour ago"
|
||||||
|
msgid_plural "{0} hours ago"
|
||||||
|
msgstr[0] "منذ أقل من ساعة"
|
||||||
|
msgstr[1] "منذ ساعة"
|
||||||
|
msgstr[2] "منذ ساعتين"
|
||||||
|
msgstr[3] "منذ ساعات قليلة"
|
||||||
|
msgstr[4] "منذ عدة ساعات"
|
||||||
|
msgstr[5] "منذ {0} ساعات"
|
||||||
|
|
||||||
|
#. return H.Plural(-time.Hours, "in 1 hour", "in {0} hours");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:66
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "in 1 hour"
|
||||||
|
msgid_plural "in {0} hours"
|
||||||
|
msgstr[0] "خلال أقل من ساعة"
|
||||||
|
msgstr[1] "خلال ساعة"
|
||||||
|
msgstr[2] "خلال ساعتين"
|
||||||
|
msgstr[3] "خلال ساعات قليلة"
|
||||||
|
msgstr[4] "خلال عدة ساعات"
|
||||||
|
msgstr[5] "خلال {0} ساعات"
|
||||||
|
|
||||||
|
#. return H.Plural(time.Minutes, "1 minute ago", "{0} minutes ago");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:69
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "1 minute ago"
|
||||||
|
msgid_plural "{0} minutes ago"
|
||||||
|
msgstr[0] "منذ أقل من دقيقة"
|
||||||
|
msgstr[1] "منذ دقيقة"
|
||||||
|
msgstr[2] "منذ دقيقتين"
|
||||||
|
msgstr[3] "منذ دقائق قليلة"
|
||||||
|
msgstr[4] "منذ عدة دقائق"
|
||||||
|
msgstr[5] "منذ {0} دقائق"
|
||||||
|
|
||||||
|
#. return H.Plural(-time.Minutes, "in 1 minute", "in {0} minutes");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:71
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "in 1 minute"
|
||||||
|
msgid_plural "in {0} minutes"
|
||||||
|
msgstr[0] "خلال أقل من دقيقة"
|
||||||
|
msgstr[1] "خلال دقيقة"
|
||||||
|
msgstr[2] "خلال دقيقتين"
|
||||||
|
msgstr[3] "خلال دقائق قليلة"
|
||||||
|
msgstr[4] "خلال عدة دقائق"
|
||||||
|
msgstr[5] "خلال {0} دقائق"
|
||||||
|
|
||||||
|
#. return H.Plural(time.Seconds, "1 second ago", "{0} seconds ago"); //aware that the singular won't be used
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:74
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "1 second ago"
|
||||||
|
msgid_plural "{0} seconds ago"
|
||||||
|
msgstr[0] "منذ أقل من ثانية"
|
||||||
|
msgstr[1] "منذ ثانية"
|
||||||
|
msgstr[2] "منذ ثانيتين"
|
||||||
|
msgstr[3] "منذ ثوان قليلة"
|
||||||
|
msgstr[4] "منذ عدة ثوان"
|
||||||
|
msgstr[5] "منذ {0} ثوان"
|
||||||
|
|
||||||
|
#. return H.Plural(-time.Seconds, "in 1 second", "in {0} seconds");
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:76
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "in 1 second"
|
||||||
|
msgid_plural "in {0} seconds"
|
||||||
|
msgstr[0] "خلال أقل من ثانية"
|
||||||
|
msgstr[1] "خلال ثانية"
|
||||||
|
msgstr[2] "خلال ثانيتين"
|
||||||
|
msgstr[3] "خلال ثوان قليلة"
|
||||||
|
msgstr[4] "خلال عدة ثوان"
|
||||||
|
msgstr[5] "خلال {0} ثوان"
|
||||||
|
|
||||||
|
#. ? H["a moment ago"]
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:79
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "a moment ago"
|
||||||
|
msgstr "قبل لحظة"
|
||||||
|
|
||||||
|
#. : H["in a moment"];
|
||||||
|
#: OrchardCore.DisplayManagement\Shapes\DateTimeShapes.cs:80
|
||||||
|
msgctxt "OrchardCore.DisplayManagement.Shapes.DateTimeShapes"
|
||||||
|
msgid "in a moment"
|
||||||
|
msgstr "خلال لحظة"
|
||||||
|
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Email.Abstractions.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 736\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-03-05 10:47\n"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["The {0} field is required.", "Host name"], new[] { nameof(Host) });
|
||||||
|
#. yield return new ValidationResult(S["The {0} field is required.", "Pickup directory location"], new[] { nameof(PickupDirectoryLocation) });
|
||||||
|
#: OrchardCore.Email.Abstractions\SmtpSettings.cs:92
|
||||||
|
#: OrchardCore.Email.Abstractions\SmtpSettings.cs:98
|
||||||
|
msgctxt "OrchardCore.Email.SmtpSettings"
|
||||||
|
msgid "The {0} field is required."
|
||||||
|
msgstr "الحقل {0} إلزامي."
|
||||||
|
|
||||||
|
#. throw new NotSupportedException(S["The '{0}' delivery method is not supported.", DeliveryMethod]);
|
||||||
|
#: OrchardCore.Email.Abstractions\SmtpSettings.cs:102
|
||||||
|
msgctxt "OrchardCore.Email.SmtpSettings"
|
||||||
|
msgid "The '{0}' delivery method is not supported."
|
||||||
|
msgstr "طريقة إيصال '{0}' غير مدعومة."
|
||||||
|
|
||||||
48
src/Twain.Web/Localization/ar/OrchardCore.Email.Core.po
Normal file
48
src/Twain.Web/Localization/ar/OrchardCore.Email.Core.po
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Email.Core.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 738\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:07\n"
|
||||||
|
|
||||||
|
#. return SmtpResult.Failed(S["SMTP settings must be configured before an email can be sent."]);
|
||||||
|
#: OrchardCore.Email.Core\Services\SmtpService.cs:58
|
||||||
|
msgctxt "OrchardCore.Email.Services.SmtpService"
|
||||||
|
msgid "SMTP settings must be configured before an email can be sent."
|
||||||
|
msgstr "يجب ضبط إعدادات بروتوكول SMTP قبل إرسال رسائل البريد الإلكتروني."
|
||||||
|
|
||||||
|
#. return SmtpResult.Failed(S["The mail message should have at least one of these headers: To, Cc or Bcc."]);
|
||||||
|
#: OrchardCore.Email.Core\Services\SmtpService.cs:86
|
||||||
|
msgctxt "OrchardCore.Email.Services.SmtpService"
|
||||||
|
msgid "The mail message should have at least one of these headers: To, Cc or Bcc."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. result = SmtpResult.Failed(S["An error occurred while sending an email: '{0}'", ex.Message]);
|
||||||
|
#: OrchardCore.Email.Core\Services\SmtpService.cs:105
|
||||||
|
msgctxt "OrchardCore.Email.Services.SmtpService"
|
||||||
|
msgid "An error occurred while sending an email: '{0}'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. errors.Add(S["Invalid email address: '{0}'", submitterAddress]);
|
||||||
|
#. errors.Add(S["Invalid email address: '{0}'", address]);
|
||||||
|
#. errors.Add(S["Invalid email address: '{0}'", address]);
|
||||||
|
#. errors.Add(S["Invalid email address: '{0}'", address]);
|
||||||
|
#. errors.Add(S["Invalid email address: '{0}'", address]);
|
||||||
|
#. errors.Add(S["Invalid email address: '{0}'", address]);
|
||||||
|
#: OrchardCore.Email.Core\Services\SmtpService.cs:130
|
||||||
|
#: OrchardCore.Email.Core\Services\SmtpService.cs:144
|
||||||
|
#: OrchardCore.Email.Core\Services\SmtpService.cs:159
|
||||||
|
#: OrchardCore.Email.Core\Services\SmtpService.cs:174
|
||||||
|
#: OrchardCore.Email.Core\Services\SmtpService.cs:189
|
||||||
|
#: OrchardCore.Email.Core\Services\SmtpService.cs:211
|
||||||
|
msgctxt "OrchardCore.Email.Services.SmtpService"
|
||||||
|
msgid "Invalid email address: '{0}'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
508
src/Twain.Web/Localization/ar/OrchardCore.Email.po
Normal file
508
src/Twain.Web/Localization/ar/OrchardCore.Email.po
Normal file
@@ -0,0 +1,508 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Email.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 740\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:08\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Email\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.Email.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Email\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Email.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Email"], S["Email"].PrefixPosition(), entry => entry
|
||||||
|
#. .Add(S["Email"], S["Email"].PrefixPosition(), entry => entry
|
||||||
|
#: OrchardCore.Email\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Email\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Email.AdminMenu"
|
||||||
|
msgid "Email"
|
||||||
|
msgstr "البريد الإلكتروني"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Message sent successfully."]);
|
||||||
|
#: OrchardCore.Email\Controllers\AdminController.cs:65
|
||||||
|
msgctxt "OrchardCore.Email.Controllers.AdminController"
|
||||||
|
msgid "Message sent successfully."
|
||||||
|
msgstr "تم إرسال الرسالة بنجاح."
|
||||||
|
|
||||||
|
#. [EmailAddress(ErrorMessage = "Invalid Email.")]
|
||||||
|
#: OrchardCore.Email\ViewModels\SmtpSettingsViewModel.cs:10
|
||||||
|
msgctxt "OrchardCore.Email.ViewModels.SmtpSettingsViewModel"
|
||||||
|
msgid "Invalid Email."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public override LocalizedString DisplayText => S["Email Task"];
|
||||||
|
#: OrchardCore.Email\Workflows\Activities\EmailTask.cs:34
|
||||||
|
msgctxt "OrchardCore.Email.Workflows.Activities.EmailTask"
|
||||||
|
msgid "Email Task"
|
||||||
|
msgstr "مهمة بريد إلكتروني"
|
||||||
|
|
||||||
|
#. public override LocalizedString Category => S["Messaging"];
|
||||||
|
#: OrchardCore.Email\Workflows\Activities\EmailTask.cs:35
|
||||||
|
msgctxt "OrchardCore.Email.Workflows.Activities.EmailTask"
|
||||||
|
msgid "Messaging"
|
||||||
|
msgstr "مراسلة"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Failed"]);
|
||||||
|
#: OrchardCore.Email\Workflows\Activities\EmailTask.cs:106
|
||||||
|
msgctxt "OrchardCore.Email.Workflows.Activities.EmailTask"
|
||||||
|
msgid "Done"
|
||||||
|
msgstr "تم"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Failed"]);
|
||||||
|
#: OrchardCore.Email\Workflows\Activities\EmailTask.cs:106
|
||||||
|
msgctxt "OrchardCore.Email.Workflows.Activities.EmailTask"
|
||||||
|
msgid "Failed"
|
||||||
|
msgstr "فشل"
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-envelope" aria-hidden="true"></i></span><span class="title">@T["Email"]</span>
|
||||||
|
#: OrchardCore.Email\Views\NavigationItemText-email.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Email.Views.NavigationItemText-email.Id"
|
||||||
|
msgid "Email"
|
||||||
|
msgstr "البريد الإلكتروني"
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The current tenant will be reloaded when the settings are saved."]</p>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "ستتم إعادة تحميل الـ tenant الحالي عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <label asp-for="DefaultSender">@T["Sender email address"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Sender email address"
|
||||||
|
msgstr "عنوان البريد الإلكتروني المرسل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default email address to use as a sender, unless the email sender is set."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "The default email address to use as a sender, unless the email sender is set."
|
||||||
|
msgstr "عنوان البريد الإلكتروني الافتراضي لاستخدامه كمرسل، إلا إذا تم تعيين مرسل البريد الإلكتروني."
|
||||||
|
|
||||||
|
#. <label asp-for="DeliveryMethod">@T["Delivery method"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Delivery method"
|
||||||
|
msgstr "طريقة التسليم"
|
||||||
|
|
||||||
|
#. @T["Network"]
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Network"
|
||||||
|
msgstr "الشبكة"
|
||||||
|
|
||||||
|
#. @T["Specified pickup directory"]
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Specified pickup directory"
|
||||||
|
msgstr "إختيار مجلد معين"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The delivery method used when sending email. Use Network in production. The other options can be useful when developing and testing."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "The delivery method used when sending email. Use Network in production. The other options can be useful when developing and testing."
|
||||||
|
msgstr "الأسلوب المستخدمة لإرسال رسائل البريد الإلكتروني. استخدم إعدادات الشبكة في بيئة التشغيل. كما يمكنك استخدام الأساليب الأخرى لأغراض التطوير والاختبار."
|
||||||
|
|
||||||
|
#. <h2 class="card-title">@T["Network delivery options"]</h2>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Network delivery options"
|
||||||
|
msgstr "خيارات المراسلة عبر الشبكة"
|
||||||
|
|
||||||
|
#. <label asp-for="Host">@T["Host name"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:38
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Host name"
|
||||||
|
msgstr "إسم المضيف"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The SMTP server domain, e.g. <i>smtp.mailprovider.com</i>."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "The SMTP server domain, e.g. <i>smtp.mailprovider.com</i>."
|
||||||
|
msgstr "عنوان خادم SMTP، على سبيل المثال: <i>smtp.mailprovider.com</i>."
|
||||||
|
|
||||||
|
#. <label asp-for="Port">@T["Port number"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:48
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Port number"
|
||||||
|
msgstr "رقم المنفذ"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The SMTP server port, usually 25."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "The SMTP server port, usually 25."
|
||||||
|
msgstr "منفذ الخادم SMTP، غالباً مايكون 25."
|
||||||
|
|
||||||
|
#. <label asp-for="ProxyHost">@T["Proxy host name"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:61
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Proxy host name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The proxy server is optional."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:64
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "The proxy server is optional."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="ProxyPort">@T["Proxy port number"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Proxy port number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The proxy port is optional."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:74
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "The proxy port is optional."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="EncryptionMethod">@T["Encryption method to use"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:81
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Encryption method to use"
|
||||||
|
msgstr "طريقة التشفير المستخدمة"
|
||||||
|
|
||||||
|
#. @T["None"] - @T["Connect to server using insecure connection."]
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:84
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "None"
|
||||||
|
msgstr "لا شيء"
|
||||||
|
|
||||||
|
#. @T["None"] - @T["Connect to server using insecure connection."]
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:84
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Connect to server using insecure connection."
|
||||||
|
msgstr "الربط مع الخادم بإستخدام إرتباط غير آمن."
|
||||||
|
|
||||||
|
#. @T["SSL/TLS"] - @T["Connect to server using SSL/TSL secure connection"]
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:87
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "SSL/TLS"
|
||||||
|
msgstr "تشفير SSL/TLS"
|
||||||
|
|
||||||
|
#. @T["SSL/TLS"] - @T["Connect to server using SSL/TSL secure connection"]
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:87
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Connect to server using SSL/TSL secure connection"
|
||||||
|
msgstr "الربط مع الخادم بإستخدام SSL/TLS"
|
||||||
|
|
||||||
|
#. @T["STARTTLS"] - @T["Connect to server using insecure connection and upgrade to secure using SSL/TLS"]
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:90
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "STARTTLS"
|
||||||
|
msgstr "STARTTLS"
|
||||||
|
|
||||||
|
#. @T["STARTTLS"] - @T["Connect to server using insecure connection and upgrade to secure using SSL/TLS"]
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:90
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Connect to server using insecure connection and upgrade to secure using SSL/TLS"
|
||||||
|
msgstr "الربط مع خادم غير آمن والتحديث إلى آمن بإستخدام SSL/TLS"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The encryption method used when connecting to mail server."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:94
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "The encryption method used when connecting to mail server."
|
||||||
|
msgstr "طريقة التشفير المستخدمة حين الربط مع خادم البريد."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="AutoSelectEncryption">@T["Auto Select Encryption method"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:100
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Auto Select Encryption method"
|
||||||
|
msgstr "إختيار طريقة التشفير تلقائياً"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to let the system select the encryption method based on port."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:101
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Check to let the system select the encryption method based on port."
|
||||||
|
msgstr "اختر لتدع النظام يختار طريقة التشفير إعتماداً على المنفذ."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="RequireCredentials">@T["Require credentials"] </label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:107
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Require credentials"
|
||||||
|
msgstr "بيانات المصادقة إلزامية"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="UseDefaultCredentials">@T["Use Windows authentication"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:114
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Use Windows authentication"
|
||||||
|
msgstr "إستخدام مصادقة الويندوز"
|
||||||
|
|
||||||
|
#. <span class="hint d-block">@T["When this option is selected, the application pool or host-process identity is used to authenticate with the mail server."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:115
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "When this option is selected, the application pool or host-process identity is used to authenticate with the mail server."
|
||||||
|
msgstr "عند اختيار هذا الخيار، سيتم استخدام هوية الـ \"Application Pool\" أو \"Host-process\" للمصادقة مع خادم البريد."
|
||||||
|
|
||||||
|
#. <label asp-for="UserName">@T["User name"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:120
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "User name"
|
||||||
|
msgstr "إسم المستخدم"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The username for authentication."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:123
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "The username for authentication."
|
||||||
|
msgstr "إسم المستخدم للمصادقة."
|
||||||
|
|
||||||
|
#. <label asp-for="Password">@T["Password"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:127
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Password"
|
||||||
|
msgstr "كلمة المرور"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The password for authentication."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:130
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "The password for authentication."
|
||||||
|
msgstr "كلمة المرور للمصادقة."
|
||||||
|
|
||||||
|
#. <h2 class="card-title">@T["Specified pickup directory delivery options"]</h2>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:141
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Specified pickup directory delivery options"
|
||||||
|
msgstr "خيارات تحديد مجلد معين"
|
||||||
|
|
||||||
|
#. <label asp-for="PickupDirectoryLocation">@T["Pickup directory location"]</label>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:144
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "Pickup directory location"
|
||||||
|
msgstr "إختيار موقع المجلد"
|
||||||
|
|
||||||
|
#. <span class="hint">@T[@"E.g. <i>C:\Path\To\This\Site\PickedUpEmail</i> to place emails in a <i>PickedUpEmail</i> directory on the C drive."]</span>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.Edit.cshtml:147
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.Edit"
|
||||||
|
msgid "E.g. <i>C:\\Path\\To\\This\\Site\\PickedUpEmail</i> to place emails in a <i>PickedUpEmail</i> directory on the C drive."
|
||||||
|
msgstr "على سبيل المثال: المسار <i>C:\\Path\\To\\This\\Site\\PickedUpEmail</i> يشير إلى وضع عناوين البريد الإلكتروني في المجلد <i>PickedUpEmail</i> بداخل محرك الأقراص C."
|
||||||
|
|
||||||
|
#. <a href="@Url.Action("Index", "Admin", new { area = "OrchardCore.Email" })" class="btn btn-secondary">@T["Test settings"]</a>
|
||||||
|
#: OrchardCore.Email\Views\SmtpSettings.TestButton.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Email.Views.SmtpSettings.TestButton"
|
||||||
|
msgid "Test settings"
|
||||||
|
msgstr "اختبر الإعدادات"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Settings"])</h1></zone>
|
||||||
|
#: OrchardCore.Email\Views\Admin\Index.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Email.Views.Admin.Index"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. <label asp-for="To">@T["To"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Admin\Index.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Email.Views.Admin.Index"
|
||||||
|
msgid "To"
|
||||||
|
msgstr "إلى"
|
||||||
|
|
||||||
|
#. <label asp-for="Sender">@T["Sender"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Admin\Index.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Email.Views.Admin.Index"
|
||||||
|
msgid "Sender"
|
||||||
|
msgstr "المرسل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The sender is optional, it is useful when the email author is different than the email submitter."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Admin\Index.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Email.Views.Admin.Index"
|
||||||
|
msgid "The sender is optional, it is useful when the email author is different than the email submitter."
|
||||||
|
msgstr "المرسل إختياري، يكون مفيدا عندما يكون كاتب البريد الإلكتروني مختلفا عن مرسله."
|
||||||
|
|
||||||
|
#. <label asp-for="Bcc">@T["Bcc"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Admin\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Email.Views.Admin.Index"
|
||||||
|
msgid "Bcc"
|
||||||
|
msgstr "نسخة مخفية"
|
||||||
|
|
||||||
|
#. <label asp-for="Cc">@T["Cc"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Admin\Index.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Email.Views.Admin.Index"
|
||||||
|
msgid "Cc"
|
||||||
|
msgstr "نسخة"
|
||||||
|
|
||||||
|
#. <label asp-for="ReplyTo">@T["Reply To"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Admin\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Email.Views.Admin.Index"
|
||||||
|
msgid "Reply To"
|
||||||
|
msgstr "الرد على"
|
||||||
|
|
||||||
|
#. <label asp-for="Subject">@T["Subject"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Admin\Index.cshtml:46
|
||||||
|
msgctxt "OrchardCore.Email.Views.Admin.Index"
|
||||||
|
msgid "Subject"
|
||||||
|
msgstr "الموضوع"
|
||||||
|
|
||||||
|
#. <label asp-for="Body">@T["Body"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Admin\Index.cshtml:53
|
||||||
|
msgctxt "OrchardCore.Email.Views.Admin.Index"
|
||||||
|
msgid "Body"
|
||||||
|
msgstr "المحتوى"
|
||||||
|
|
||||||
|
#. <button type="submit" id="emailtestsend" class="button grey">@T["Send"]</button>
|
||||||
|
#: OrchardCore.Email\Views\Admin\Index.cshtml:59
|
||||||
|
msgctxt "OrchardCore.Email.Views.Admin.Index"
|
||||||
|
msgid "Send"
|
||||||
|
msgstr "إرسال"
|
||||||
|
|
||||||
|
#. <h4><i class="fa fa-envelope" aria-hidden="true"></i>@Model.Activity.GetTitleOrDefault(() => T["Send Email"])</h4>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Design.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Design"
|
||||||
|
msgid "Send Email"
|
||||||
|
msgstr "إرسال بريد إلكتروني"
|
||||||
|
|
||||||
|
#. <label asp-for="AuthorExpression">@T["From"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "From"
|
||||||
|
msgstr "من"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The author's email address that defines who the email is from. Leave blank to use the configured email address. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "The author's email address that defines who the email is from. Leave blank to use the configured email address. With Liquid support."
|
||||||
|
msgstr "البريد الإلكتروني للمؤلف يعرف من هو مرسل البريد. اتركه فارغاً لإستخدام البريد الإلكتروني الذي تم تعيينه مسبقاً. مع دعم Liquid."
|
||||||
|
|
||||||
|
#. <label asp-for="SenderExpression">@T["Sender"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "Sender"
|
||||||
|
msgstr "المرسل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The sender's email address. Required if not the same than the \"From\" email address. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "The sender's email address. Required if not the same than the \"From\" email address. With Liquid support."
|
||||||
|
msgstr "البريد الإلكتروني مطلوب إذا كان مختلف عن عنوان الشخص المرسل. مع دعم Liquid."
|
||||||
|
|
||||||
|
#. <label asp-for="SenderExpression">@T["ReplyTo"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "ReplyTo"
|
||||||
|
msgstr "الرد على"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The \"reply to\" email address. Required if you want email replies be sent to a different address than the \"From\" address. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "The \"reply to\" email address. Required if you want email replies be sent to a different address than the \"From\" address. With Liquid support."
|
||||||
|
msgstr "البريد الإلكتروني مطلوب إذا كنت تريد الرد يكون مختلف عن عنوان الشخص المرسل. مع دعم Liquid."
|
||||||
|
|
||||||
|
#. <label asp-for="RecipientsExpression">@T["Recipients"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "Recipients"
|
||||||
|
msgstr "المستقبلون"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The comma-separated list of recipient email addresses. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "The comma-separated list of recipient email addresses. With Liquid support."
|
||||||
|
msgstr "يمكن الفصل بين عناوين البريد الإلكتروني للمستقبلين باستخدام الفاصلة، كما يمكن استخدام صيغة Liquid."
|
||||||
|
|
||||||
|
#. <label asp-for="CcExpression">@T["Cc"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "Cc"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The comma-separated list of carbon copy email addresses. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "The comma-separated list of carbon copy email addresses. With Liquid support."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="BccExpression">@T["Bcc"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "Bcc"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The comma-separated list of blind copy email addresses. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "The comma-separated list of blind copy email addresses. With Liquid support."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SubjectExpression">@T["Subject"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "Subject"
|
||||||
|
msgstr "الموضوع"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The subject of the email message. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:50
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "The subject of the email message. With Liquid support."
|
||||||
|
msgstr "موضوع الرسالة (يمكن استخدام صيغة Liquid)."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="IsBodyHtml">@T["Does the Body contain HTML?"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:56
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "Does the Body contain HTML?"
|
||||||
|
msgstr "هل يحوي محتوى الرسالة على HTML؟"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["If checked, indicates the body of the email message will be sent as HTML."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:57
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "If checked, indicates the body of the email message will be sent as HTML."
|
||||||
|
msgstr "إذا تم تحديده، فسيتم إرسال محتوي رسالة البريد الإلكتروني كـ HTML."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="IsBodyText">@T["Does the Body contain plain text?"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:64
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "Does the Body contain plain text?"
|
||||||
|
msgstr "هل محتوي الرسالة نص عادي؟"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["If checked, indicates the body of the email message will be sent as plain text."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:65
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "If checked, indicates the body of the email message will be sent as plain text."
|
||||||
|
msgstr "إذا تم تحديده، فسيتم إرسال محتوي رسالة البريد الإلكتروني كنص عادي."
|
||||||
|
|
||||||
|
#. <label asp-for="Body">@T["Body"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:70
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "Body"
|
||||||
|
msgstr "محتوى الرسالة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The body of the email message. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "The body of the email message. With Liquid support."
|
||||||
|
msgstr "محتوى الرسالة (يمكن استخدام صيغة Liquid)."
|
||||||
|
|
||||||
|
#. <label asp-for="Body">@T["Body Plain Text"]</label>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:76
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "Body Plain Text"
|
||||||
|
msgstr "المحتوي نص عادي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The plain text body of the email message. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Edit.cshtml:78
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Edit"
|
||||||
|
msgid "The plain text body of the email message. With Liquid support."
|
||||||
|
msgstr "محتوى رسالة البريد الالكتروني كنص عادي. مع دعم صيغة Liquid."
|
||||||
|
|
||||||
|
#. <h4 class="card-title"><i class="fa fa-envelope" aria-hidden="true"></i>@T["Send Email"]</h4>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Thumbnail"
|
||||||
|
msgid "Send Email"
|
||||||
|
msgstr "إرسال الرسالة"
|
||||||
|
|
||||||
|
#. <p>@T["Send an email."]</p>
|
||||||
|
#: OrchardCore.Email\Views\Items\EmailTask.Fields.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Email.Views.Items.EmailTask.Fields.Thumbnail"
|
||||||
|
msgid "Send an email."
|
||||||
|
msgstr "إرسالة رسالة بريد إلكتروني."
|
||||||
|
|
||||||
282
src/Twain.Web/Localization/ar/OrchardCore.Facebook.po
Normal file
282
src/Twain.Web/Localization/ar/OrchardCore.Facebook.po
Normal file
@@ -0,0 +1,282 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Facebook.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 742\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Facebook\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Facebook.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Facebook\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.Facebook.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Facebook App"], S["Facebook App"].PrefixPosition(), settings => settings
|
||||||
|
#. .Add(S["Facebook App"], S["Facebook App"].PrefixPosition(), settings => settings
|
||||||
|
#: OrchardCore.Facebook\AdminMenu.cs:29
|
||||||
|
#: OrchardCore.Facebook\AdminMenu.cs:29
|
||||||
|
msgctxt "OrchardCore.Facebook.AdminMenu"
|
||||||
|
msgid "Facebook App"
|
||||||
|
msgstr "تطبيق فيسبوك"
|
||||||
|
|
||||||
|
#. builder.Add(S["Security"], security => security
|
||||||
|
#: OrchardCore.Facebook\AdminMenu.cs:59
|
||||||
|
msgctxt "OrchardCore.Facebook.AdminMenuLogin"
|
||||||
|
msgid "Security"
|
||||||
|
msgstr "الأمان"
|
||||||
|
|
||||||
|
#. .Add(S["Authentication"], authentication => authentication
|
||||||
|
#: OrchardCore.Facebook\AdminMenu.cs:60
|
||||||
|
msgctxt "OrchardCore.Facebook.AdminMenuLogin"
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr "المصادقة"
|
||||||
|
|
||||||
|
#. .Add(S["Facebook"], S["Facebook"].PrefixPosition(), settings => settings
|
||||||
|
#. .Add(S["Facebook"], S["Facebook"].PrefixPosition(), settings => settings
|
||||||
|
#: OrchardCore.Facebook\AdminMenu.cs:61
|
||||||
|
#: OrchardCore.Facebook\AdminMenu.cs:61
|
||||||
|
msgctxt "OrchardCore.Facebook.AdminMenuLogin"
|
||||||
|
msgid "Facebook"
|
||||||
|
msgstr "فيسبوك"
|
||||||
|
|
||||||
|
#. results.Add(new ValidationResult(S["The AppId is required."], new[]
|
||||||
|
#: OrchardCore.Facebook\Services\FacebookService.cs:55
|
||||||
|
msgctxt "OrchardCore.Facebook.Services.FacebookService"
|
||||||
|
msgid "The AppId is required."
|
||||||
|
msgstr "رقم التطبيق مطلوب."
|
||||||
|
|
||||||
|
#. results.Add(new ValidationResult(S["The App Secret is required."], new[]
|
||||||
|
#: OrchardCore.Facebook\Services\FacebookService.cs:63
|
||||||
|
msgctxt "OrchardCore.Facebook.Services.FacebookService"
|
||||||
|
msgid "The App Secret is required."
|
||||||
|
msgstr "شفرة أمان التطبيق مطلوبة."
|
||||||
|
|
||||||
|
#. [RegularExpression(@"\/[-A-Za-z0-9+&@#\/%?=~_|!:,.;]+[-A-Za-z0-9+&@#\/%=~_|]", ErrorMessage = "Invalid path")]
|
||||||
|
#: OrchardCore.Facebook\Login\ViewModels\FacebookLoginSettingsViewModel.cs:7
|
||||||
|
msgctxt "OrchardCore.Facebook.Login.ViewModels.FacebookLoginSettingsViewModel"
|
||||||
|
msgid "Invalid path"
|
||||||
|
msgstr "مسار غير صالح"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Liquid), S["The FaceBook Body doesn't contain a valid Liquid expression. Details: {0}", string.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.Facebook\Widgets\Drivers\FacebookPluginPartDisplayDriver.cs:85
|
||||||
|
msgctxt "OrchardCore.Facebook.Widgets.Drivers.FacebookPluginPartDisplayDriver"
|
||||||
|
msgid "The FaceBook Body doesn't contain a valid Liquid expression. Details: {0}"
|
||||||
|
msgstr "محتوى الفيسبوك لا يحتوي على عبارة Liquid صحيحة. للتفاصيل: {0}"
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(nameof(model.Liquid), S["The Body doesn't contain a valid Liquid expression. Details: {0}", string.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.Facebook\Widgets\Settings\FacebookPluginPartSettingsDisplayDriver.cs:41
|
||||||
|
msgctxt "OrchardCore.Facebook.Widgets.Settings.FacebookPluginPartSettingsDisplayDriver"
|
||||||
|
msgid "The Body doesn't contain a valid Liquid expression. Details: {0}"
|
||||||
|
msgstr "المحتوى لا يحتوي على عبارة Liquid صحيحة. للتفاصيل: {0}"
|
||||||
|
|
||||||
|
#. @T["The current tenant will be reloaded when the settings are saved."]
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookLoginSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookLoginSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "ستتم إعادة تحميل الـمستأجر الحالي عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Facebook/#facebook-login" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookLoginSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookLoginSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr "انظر التوثيق"
|
||||||
|
|
||||||
|
#. <h3>@T["Login Settings"]</h3>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookLoginSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookLoginSettings.Edit"
|
||||||
|
msgid "Login Settings"
|
||||||
|
msgstr "إعدادات تسجيل الدخول"
|
||||||
|
|
||||||
|
#. <label>@T["CallbackPath"]</label>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookLoginSettings.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookLoginSettings.Edit"
|
||||||
|
msgid "CallbackPath"
|
||||||
|
msgstr "مسار الإستدعاء المرجعي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookLoginSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookLoginSettings.Edit"
|
||||||
|
msgid "The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."
|
||||||
|
msgstr "المسار المطلوب داخل المسار الأساسي للتطبيق حيث سيتم إرجاع وكيل المستخدم إليه. الـ middleware سوف تعالج الطلب عند وصوله."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SaveTokens">@T["Store tokens"]</label>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookLoginSettings.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookLoginSettings.Edit"
|
||||||
|
msgid "Store tokens"
|
||||||
|
msgstr "الرموز المحزنة"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Store external authentication tokens for reuse"]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookLoginSettings.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookLoginSettings.Edit"
|
||||||
|
msgid "Store external authentication tokens for reuse"
|
||||||
|
msgstr "تخزين رمز المصادقة الخارجية لإعادة الاستخدام"
|
||||||
|
|
||||||
|
#. <label asp-for="Liquid">@T["Body"]</label>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookPluginPart.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookPluginPart.Edit"
|
||||||
|
msgid "Body"
|
||||||
|
msgstr "المحتوى"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The template of the plugin, in Liquid format."]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookPluginPart.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookPluginPart.Edit"
|
||||||
|
msgid "The template of the plugin, in Liquid format."
|
||||||
|
msgstr "قالب الإضافة, بصيغة Liquid."
|
||||||
|
|
||||||
|
#. <label asp-for="Liquid">@T["Body"]</label>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookPluginPartSettings.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookPluginPartSettings.Edit"
|
||||||
|
msgid "Body"
|
||||||
|
msgstr "المحتوى"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default template of the plugin, in Liquid format."]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookPluginPartSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookPluginPartSettings.Edit"
|
||||||
|
msgid "The default template of the plugin, in Liquid format."
|
||||||
|
msgstr "القالب الإفتراضي للإضافة, بصيغة Liquid."
|
||||||
|
|
||||||
|
#. @T["The current tenant will be reloaded when the settings are saved."]
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "ستتم إعادة تحميل الـ tenant الحالية عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Facebook/#core-components" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr "انظر التوثيق"
|
||||||
|
|
||||||
|
#. <p class="alert alert-danger">@T["An error occurred while decrypting a setting. Please apply and save."]</p>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "An error occurred while decrypting a setting. Please apply and save."
|
||||||
|
msgstr "حدث خطأ أثناء فك تشفير إعداد. الرجاء التطبيق والحفظ."
|
||||||
|
|
||||||
|
#. <h3>@T["Facebook Integration"]</h3>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "Facebook Integration"
|
||||||
|
msgstr "تكامل الفيسبوك"
|
||||||
|
|
||||||
|
#. <label>@T["Application Identifier"]</label>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "Application Identifier"
|
||||||
|
msgstr "معرف التطبيق"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Application ID found on the Facebook developer portal parameters."]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "The Application ID found on the Facebook developer portal parameters."
|
||||||
|
msgstr "معرف التطبيق موجود في بوابة التطوير للفيسبوك."
|
||||||
|
|
||||||
|
#. <label>@T["Secret Key"]</label>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "Secret Key"
|
||||||
|
msgstr "المفتاح السري"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Application secret key found on the Facebook developer portal parameters."]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "The Application secret key found on the Facebook developer portal parameters."
|
||||||
|
msgstr "مفتاح أمان التطبيق موجود في بوابة التطوير للفيسبوك."
|
||||||
|
|
||||||
|
#. <label>@T["Javascript SDK Version"]</label>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "Javascript SDK Version"
|
||||||
|
msgstr "إصدار الجافاسكربت SDK"
|
||||||
|
|
||||||
|
#. <label>@T["Javascript Sdk js"]</label>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "Javascript Sdk js"
|
||||||
|
msgstr "الجافاسكربت Sdk js"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Determines which versions of the Graph API and any API dialogs or plugins are invoked. Default is v3.2"]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "Determines which versions of the Graph API and any API dialogs or plugins are invoked. Default is v3.2"
|
||||||
|
msgstr "تحديد أي من إصدارات الـ Graph API أو أي إضافات سيتم إستدعائها. إفتراضياً الإصدار 3.2"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Determines which sdk js file to load. Default is sdk.js but you can change it as needed. Eg. to render the chat plugin use sdk/xfbml.customerchat.js and <a target=\"_blank\" href=\"https://developers.facebook.com/docs/messenger-platform/discovery/customer-chat-plugin#steps\">follow instructions</a>"]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:46
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "Determines which sdk js file to load. Default is sdk.js but you can change it as needed. Eg. to render the chat plugin use sdk/xfbml.customerchat.js and <a target=\"_blank\" href=\"https://developers.facebook.com/docs/messenger-platform/discovery/customer-chat-plugin#steps\">follow instructions</a>"
|
||||||
|
msgstr "تحديد أي ملف sdk js سيتم تحميله. إفتراضياً sdk.js لكن يمكنك تغييره وقت الحاجه. على سبيل المثال لعرض إضافة المحادثه إستخدم sdk/xfbml.customerchat.js و <a target=\"_blank\" href=\"https://developers.facebook.com/docs/messenger-platform/discovery/customer-chat-plugin#steps\">اتبع التعليمات</a>"
|
||||||
|
|
||||||
|
#. <label class="form-check-label">@T["Init on every page"]</label>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "Init on every page"
|
||||||
|
msgstr "تهئية في كل صفحة"
|
||||||
|
|
||||||
|
#. <label>@T["Parameters for the FB.init() call"]</label>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:59
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "Parameters for the FB.init() call"
|
||||||
|
msgstr "المتغيرات لإستدعاء FB.init()"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["AppId and Version are filled automatically. Check the <a target=\"_blank\" href=\"https://developers.facebook.com/docs/javascript/reference/FB.init/v3.2\">reference doc for the <code>FB.init</code></a> function for more info"]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\FacebookSettings.Edit.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.FacebookSettings.Edit"
|
||||||
|
msgid "AppId and Version are filled automatically. Check the <a target=\"_blank\" href=\"https://developers.facebook.com/docs/javascript/reference/FB.init/v3.2\">reference doc for the <code>FB.init</code></a> function for more info"
|
||||||
|
msgstr "AppId و Version تم تعبئتهم تلقائياً. افحص <a target=\"_blank\" href=\"https://developers.facebook.com/docs/javascript/reference/FB.init/v3.2\">مرجع التوثيق لـ <code>FB.init</code></a"
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-facebook" aria-hidden="true"></i></span><span class="title">@T["Facebook"]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\NavigationItemText-facebook.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.NavigationItemText-facebook.Id"
|
||||||
|
msgid "Facebook"
|
||||||
|
msgstr "فيسبوك"
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-facebook" aria-hidden="true"></i></span><span class="title">@T["Facebook App"]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\NavigationItemText-facebookApp.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.NavigationItemText-facebookApp.Id"
|
||||||
|
msgid "Facebook App"
|
||||||
|
msgstr "تطبيق فيسبوك"
|
||||||
|
|
||||||
|
#. <h5>@T["Facebook Login Settings"]</h5>
|
||||||
|
#: OrchardCore.Facebook\Views\Items\FacebookLoginDeploymentStep.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.Items.FacebookLoginDeploymentStep.Edit"
|
||||||
|
msgid "Facebook Login Settings"
|
||||||
|
msgstr "إعدادات تسجيل دخول فيسبوك"
|
||||||
|
|
||||||
|
#. <h5>@T["Facebook Login Settings"]</h5>
|
||||||
|
#: OrchardCore.Facebook\Views\Items\FacebookLoginDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.Items.FacebookLoginDeploymentStep.Summary"
|
||||||
|
msgid "Facebook Login Settings"
|
||||||
|
msgstr "إعدادات تسجيل دخول فيسبوك"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds Facebook Login settings to the plan."]</span>
|
||||||
|
#: OrchardCore.Facebook\Views\Items\FacebookLoginDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.Items.FacebookLoginDeploymentStep.Summary"
|
||||||
|
msgid "Adds Facebook Login settings to the plan."
|
||||||
|
msgstr "إضافة إعدادات تسجيل دخول فيسبوك إلى الخطة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Facebook Login Settings"]</h4>
|
||||||
|
#: OrchardCore.Facebook\Views\Items\FacebookLoginDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.Items.FacebookLoginDeploymentStep.Thumbnail"
|
||||||
|
msgid "Facebook Login Settings"
|
||||||
|
msgstr "إعدادات تسجيل الدخول فيسبوك"
|
||||||
|
|
||||||
|
#. <p>@T["Exports the Facebook Login settings."]</p>
|
||||||
|
#: OrchardCore.Facebook\Views\Items\FacebookLoginDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Facebook.Views.Items.FacebookLoginDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports the Facebook Login settings."
|
||||||
|
msgstr "تصدير إعدادات تسجيل دخول فيسبوك."
|
||||||
|
|
||||||
203
src/Twain.Web/Localization/ar/OrchardCore.Features.po
Normal file
203
src/Twain.Web/Localization/ar/OrchardCore.Features.po
Normal file
@@ -0,0 +1,203 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Features.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 744\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:50\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], NavigationConstants.AdminMenuConfigurationPosition, configuration => configuration
|
||||||
|
#: OrchardCore.Features\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Features.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. .Add(S["Features"], S["Features"].PrefixPosition(), deployment => deployment
|
||||||
|
#. .Add(S["Features"], S["Features"].PrefixPosition(), deployment => deployment
|
||||||
|
#: OrchardCore.Features\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.Features\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Features.AdminMenu"
|
||||||
|
msgid "Features"
|
||||||
|
msgstr "مميزات"
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(BulkActionViewModel.FeatureIds), S["Please select one or more features."]);
|
||||||
|
#: OrchardCore.Features\Controllers\AdminController.cs:99
|
||||||
|
msgctxt "OrchardCore.Features.Controllers.AdminController"
|
||||||
|
msgid "Please select one or more features."
|
||||||
|
msgstr "فضلاً أختر واحدة أو أكثر من المميزات."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["{0} was {1}.", feature.Name ?? feature.Id, enabled ? "enabled" : "disabled"]);
|
||||||
|
#: OrchardCore.Features\Controllers\AdminController.cs:201
|
||||||
|
msgctxt "OrchardCore.Features.Controllers.AdminController"
|
||||||
|
msgid "{0} was {1}."
|
||||||
|
msgstr "{0} كان {1}."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["{0} was enabled.", enabledFeature.Name]);
|
||||||
|
#: OrchardCore.Features\Services\ModuleService.cs:71
|
||||||
|
msgctxt "OrchardCore.Features.Services.ModuleService"
|
||||||
|
msgid "{0} was enabled."
|
||||||
|
msgstr "{0} قد تم تفعيله."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["{0} was disabled.", feature.Name]);
|
||||||
|
#: OrchardCore.Features\Services\ModuleService.cs:98
|
||||||
|
msgctxt "OrchardCore.Features.Services.ModuleService"
|
||||||
|
msgid "{0} was disabled."
|
||||||
|
msgstr "{0} قد تم تعطيله."
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-gear" aria-hidden="true"></i></span><span class="title">@T["Configuration"]</span>
|
||||||
|
#: OrchardCore.Features\Views\NavigationItemText-configuration.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Features.Views.NavigationItemText-configuration.Id"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Features"])</h1></zone>
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Features"
|
||||||
|
msgstr "مميزات"
|
||||||
|
|
||||||
|
#. <input id="search-box" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. @T["Bulk Actions"]
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Bulk Actions"
|
||||||
|
msgstr "مجموعة إجراءات"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="#" data-action="@nameof(FeaturesBulkAction.Disable)">@T["Disable"]</a></li>
|
||||||
|
#. <button class="btn btn-danger btn-sm" disabled>@T["Disable"]</button>
|
||||||
|
#. <button class="btn btn-danger btn-sm" disabled>@T["Disable"]</button>
|
||||||
|
#. <a id="btn-disable-@Html.GenerateIdFromName(feature.Descriptor.Id)" asp-action="Disable" asp-route-id="@feature.Descriptor.Id" class="btn btn-danger btn-sm" data-title="@T["Disable Feature"]" data-message="@confirmationMessage" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl RemoveUrl">@T["Disable"]</a>
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:24
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:118
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:131
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:148
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Disable"
|
||||||
|
msgstr "تعطيل"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="#" data-action="@nameof(FeaturesBulkAction.Enable)">@T["Enable"]</a></li>
|
||||||
|
#. <button class="btn btn-primary btn-sm" disabled>@T["Enable"]</button>
|
||||||
|
#. <a id="btn-enable-@Html.GenerateIdFromName(feature.Descriptor.Id)" asp-action="Enable" asp-route-id="@feature.Descriptor.Id" class="btn btn-primary btn-sm" data-url-af="UnsafeUrl">@T["Enable"]</a>
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:25
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:124
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:138
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Enable"
|
||||||
|
msgstr "تفعيل"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="#" data-action="@nameof(FeaturesBulkAction.Toggle)">@T["Toggle"]</a></li>
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Toggle"
|
||||||
|
msgstr "تبديل"
|
||||||
|
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Uncategorized"
|
||||||
|
msgstr "غير مصنف"
|
||||||
|
|
||||||
|
#. <div data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="@T["This feature is automatically enabled based on dependency and cannot be manually disabled."]">
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:117
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "This feature is automatically enabled based on dependency and cannot be manually disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="@T["This feature is automatically disabled based on dependency and cannot be manually enabled."]">
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:123
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "This feature is automatically disabled based on dependency and cannot be manually enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="@T["This feature is always enabled and cannot be manually disabled."]">
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:130
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "This feature is always enabled and cannot be manually disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Are you sure you want to disable the {0} feature? Continue?"
|
||||||
|
msgstr "هل أنت متأكد من رغبتك من تعطيل الميزة {0}؟ متابعة؟"
|
||||||
|
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Disabling the {0} feature will also disable the following dependent features:{1}Continue?"
|
||||||
|
msgstr "تعطيل الميزة {0} أيضاً سيقوم بتعطيل على المزايا ذات الصلة: {1} متابعة؟"
|
||||||
|
|
||||||
|
#. <a id="btn-disable-@Html.GenerateIdFromName(feature.Descriptor.Id)" asp-action="Disable" asp-route-id="@feature.Descriptor.Id" class="btn btn-danger btn-sm" data-title="@T["Disable Feature"]" data-message="@confirmationMessage" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl RemoveUrl">@T["Disable"]</a>
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:148
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Disable Feature"
|
||||||
|
msgstr "تعطيل ميزه"
|
||||||
|
|
||||||
|
#. <a id="btn-disable-@Html.GenerateIdFromName(feature.Descriptor.Id)" asp-action="Disable" asp-route-id="@feature.Descriptor.Id" class="btn btn-danger btn-sm" data-title="@T["Disable Feature"]" data-message="@confirmationMessage" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl RemoveUrl">@T["Disable"]</a>
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:148
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr "نعم"
|
||||||
|
|
||||||
|
#. <a id="btn-disable-@Html.GenerateIdFromName(feature.Descriptor.Id)" asp-action="Disable" asp-route-id="@feature.Descriptor.Id" class="btn btn-danger btn-sm" data-title="@T["Disable Feature"]" data-message="@confirmationMessage" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl RemoveUrl">@T["Disable"]</a>
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:148
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "No"
|
||||||
|
msgstr "لا"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> Your search returned no results."]
|
||||||
|
#: OrchardCore.Features\Views\Admin\Features.cshtml:160
|
||||||
|
msgctxt "OrchardCore.Features.Views.Admin.Features"
|
||||||
|
msgid "<strong>Nothing here!</strong> Your search returned no results."
|
||||||
|
msgstr "<strong>لا شىء</strong> لا توجد أي نتائج للبحث."
|
||||||
|
|
||||||
|
#. <h5>@T["All Features"]</h5>
|
||||||
|
#: OrchardCore.Features\Views\Items\AllFeaturesDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Features.Views.Items.AllFeaturesDeploymentStep.Fields.Edit"
|
||||||
|
msgid "All Features"
|
||||||
|
msgstr "كل المميزات"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="IgnoreDisabledFeatures">@T["Ignore disabled features"]</label>
|
||||||
|
#: OrchardCore.Features\Views\Items\AllFeaturesDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Features.Views.Items.AllFeaturesDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Ignore disabled features"
|
||||||
|
msgstr "تجاهل المزايا المعطلة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Check if the disabled features have to be ignored."]</span>
|
||||||
|
#: OrchardCore.Features\Views\Items\AllFeaturesDeploymentStep.Fields.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Features.Views.Items.AllFeaturesDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Check if the disabled features have to be ignored."
|
||||||
|
msgstr "تحقق مما إذا كان يجب تجاهل المزايا المعطلة."
|
||||||
|
|
||||||
|
#. <h5>@T["All Features"]</h5>
|
||||||
|
#: OrchardCore.Features\Views\Items\AllFeaturesDeploymentStep.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Features.Views.Items.AllFeaturesDeploymentStep.Fields.Summary"
|
||||||
|
msgid "All Features"
|
||||||
|
msgstr "كل المميزات"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds all features and their state to the plan. Features should be placed before other steps that depend on the state of the sites features."]</span>
|
||||||
|
#: OrchardCore.Features\Views\Items\AllFeaturesDeploymentStep.Fields.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Features.Views.Items.AllFeaturesDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Adds all features and their state to the plan. Features should be placed before other steps that depend on the state of the sites features."
|
||||||
|
msgstr "إضافة جميع الميزات وحالتها إلى الخطة. يجب وضع الميزات قبل الخطوات الأخرى التي تعتمد على حالة ميزات المواقع."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["All Features"]</h4>
|
||||||
|
#: OrchardCore.Features\Views\Items\AllFeaturesDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Features.Views.Items.AllFeaturesDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "All Features"
|
||||||
|
msgstr "كل المميزات"
|
||||||
|
|
||||||
|
#. <p>@T["Exports the state of all features."]</p>
|
||||||
|
#: OrchardCore.Features\Views\Items\AllFeaturesDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Features.Views.Items.AllFeaturesDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports the state of all features."
|
||||||
|
msgstr "تصدير حالات كل المميزات."
|
||||||
|
|
||||||
268
src/Twain.Web/Localization/ar/OrchardCore.Flows.po
Normal file
268
src/Twain.Web/Localization/ar/OrchardCore.Flows.po
Normal file
@@ -0,0 +1,268 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Flows.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 746\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:09\n"
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["The Widget content item with id {0} has no matching {1} content type definition.", widget.ContentItem.ContentItemId, widget.ContentItem.ContentType]);
|
||||||
|
#: OrchardCore.Flows\Drivers\FlowPartDisplayDriver.cs:73
|
||||||
|
msgctxt "OrchardCore.Flows.Drivers.FlowPartDisplayDriver"
|
||||||
|
msgid "The Widget content item with id {0} has no matching {1} content type definition."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["Publishing this content item may erase created content. Fix any content type issues beforehand."]);
|
||||||
|
#: OrchardCore.Flows\Drivers\FlowPartDisplayDriver.cs:86
|
||||||
|
msgctxt "OrchardCore.Flows.Drivers.FlowPartDisplayDriver"
|
||||||
|
msgid "Publishing this content item may erase created content. Fix any content type issues beforehand."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["A BagPart allows to add content items directly within another content item"];
|
||||||
|
#: OrchardCore.Flows\GraphQL\BagPartQueryObjectType.cs:16
|
||||||
|
msgctxt "OrchardCore.Flows.GraphQL.BagPartQueryObjectType"
|
||||||
|
msgid "A BagPart allows to add content items directly within another content item"
|
||||||
|
msgstr "يمكن لـ BagPart من إضافة عناصر محتوى ضمن عنصر محتوى آخر"
|
||||||
|
|
||||||
|
#. Description = S["A FlowPart allows to add content items directly within another content item"];
|
||||||
|
#: OrchardCore.Flows\GraphQL\FlowPartQueryObjectType.cs:13
|
||||||
|
msgctxt "OrchardCore.Flows.GraphQL.FlowPartQueryObjectType"
|
||||||
|
msgid "A FlowPart allows to add content items directly within another content item"
|
||||||
|
msgstr "يمكن لـ FlowPart من إضافة عناصر محتوى ضمن عنصر محتوى آخر"
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(Prefix, nameof(model.Source), S["Content type source must be set with a valid value."]);
|
||||||
|
#: OrchardCore.Flows\Settings\BagPartSettingsDisplayDriver.cs:63
|
||||||
|
msgctxt "OrchardCore.Flows.Settings.BagPartSettingsDisplayDriver"
|
||||||
|
msgid "Content type source must be set with a valid value."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(Prefix, nameof(model.Stereotypes), S["Please provide a Stereotype."]);
|
||||||
|
#: OrchardCore.Flows\Settings\BagPartSettingsDisplayDriver.cs:74
|
||||||
|
msgctxt "OrchardCore.Flows.Settings.BagPartSettingsDisplayDriver"
|
||||||
|
msgid "Please provide a Stereotype."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(Prefix, nameof(model.ContainedContentTypes), S["At least one content type must be selected."]);
|
||||||
|
#: OrchardCore.Flows\Settings\BagPartSettingsDisplayDriver.cs:91
|
||||||
|
msgctxt "OrchardCore.Flows.Settings.BagPartSettingsDisplayDriver"
|
||||||
|
msgid "At least one content type must be selected."
|
||||||
|
msgstr "لا بد من اختيار نوع محتوى واحد على الأقل."
|
||||||
|
|
||||||
|
#. href="javascript:;">@T["Add {0}", type.DisplayName]</a>
|
||||||
|
#: OrchardCore.Flows\Views\BagPart.Edit.cshtml:69
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPart.Edit"
|
||||||
|
msgid "Add {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Add Item"]
|
||||||
|
#: OrchardCore.Flows\Views\BagPart.Edit.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPart.Edit"
|
||||||
|
msgid "Add Item"
|
||||||
|
msgstr "إضافة عنصر"
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Flows\Views\BagPart.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPart.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Source">@T["Contained Content Types"]</label>
|
||||||
|
#. <label asp-for="ContainedContentTypes">@T["Contained Content Types"]</label>
|
||||||
|
#: OrchardCore.Flows\Views\BagPartSettings.Edit.cshtml:5
|
||||||
|
#: OrchardCore.Flows\Views\BagPartSettings.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPartSettings.Edit"
|
||||||
|
msgid "Contained Content Types"
|
||||||
|
msgstr "أنواع المحتوى الضمنية"
|
||||||
|
|
||||||
|
#. @T["Content Types"]
|
||||||
|
#: OrchardCore.Flows\Views\BagPartSettings.Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPartSettings.Edit"
|
||||||
|
msgid "Content Types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Stereotype"] <span class="hint">@T["All content types of these Stereotypes"]</span>
|
||||||
|
#: OrchardCore.Flows\Views\BagPartSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPartSettings.Edit"
|
||||||
|
msgid "Stereotype"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Stereotype"] <span class="hint">@T["All content types of these Stereotypes"]</span>
|
||||||
|
#: OrchardCore.Flows\Views\BagPartSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPartSettings.Edit"
|
||||||
|
msgid "All content types of these Stereotypes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The content types that this bag can contain, e.g. Slide for a Slide Show."]</span>
|
||||||
|
#: OrchardCore.Flows\Views\BagPartSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPartSettings.Edit"
|
||||||
|
msgid "The content types that this bag can contain, e.g. Slide for a Slide Show."
|
||||||
|
msgstr "أنوع المحتوى التي يمكن أ يحويها الـ Bag هذا، هي على سبيل المثال: \"شريحة\" ضمن \"شرائع عرض\"."
|
||||||
|
|
||||||
|
#. <label asp-for="Stereotypes">@T["Stereotypes"]</label>
|
||||||
|
#: OrchardCore.Flows\Views\BagPartSettings.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPartSettings.Edit"
|
||||||
|
msgid "Stereotypes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Stereotypes of the content types that this bag can contain. You may define multiple Stereotypes using the comma (,) as a separator"]</span>
|
||||||
|
#: OrchardCore.Flows\Views\BagPartSettings.Edit.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPartSettings.Edit"
|
||||||
|
msgid "The Stereotypes of the content types that this bag can contain. You may define multiple Stereotypes using the comma (,) as a separator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayType">@T["Display Type"]</label>
|
||||||
|
#: OrchardCore.Flows\Views\BagPartSettings.Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPartSettings.Edit"
|
||||||
|
msgid "Display Type"
|
||||||
|
msgstr "إظهار النوع"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The display type to use when rendering the content items. Default is Summary."]</span>
|
||||||
|
#: OrchardCore.Flows\Views\BagPartSettings.Edit.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Flows.Views.BagPartSettings.Edit"
|
||||||
|
msgid "The display type to use when rendering the content items. Default is Summary."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["{0} <span class=\"hint dashed\">{1}</span>", contentItem.DisplayText, contentType]
|
||||||
|
#: OrchardCore.Flows\Views\ContentCard-BagPart.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Flows.Views.ContentCard-BagPart.Edit"
|
||||||
|
msgid "{0} <span class=\"hint dashed\">{1}</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-danger widget-delete" data-title="@T["Delete"]" data-message="@T["Are you sure you want to remove this item?"]"><i class="fa fa-trash" aria-hidden="true"></i></button>
|
||||||
|
#: OrchardCore.Flows\Views\ContentCard-BagPart.Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Flows.Views.ContentCard-BagPart.Edit"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-danger widget-delete" data-title="@T["Delete"]" data-message="@T["Are you sure you want to remove this item?"]"><i class="fa fa-trash" aria-hidden="true"></i></button>
|
||||||
|
#: OrchardCore.Flows\Views\ContentCard-BagPart.Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Flows.Views.ContentCard-BagPart.Edit"
|
||||||
|
msgid "Are you sure you want to remove this item?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span data-content-type-display-text="@contentTypeDisplayText" class="widget-editor-header-text">@T["{0} {1}", contentItemDisplayText, contentTypeDisplayText]</span>
|
||||||
|
#: OrchardCore.Flows\Views\ContentCard-FlowPart.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Flows.Views.ContentCard-FlowPart.Edit"
|
||||||
|
msgid "{0} {1}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" class="toggleAll btn btn-secondary btn-sm" onclick="toggleWidgets();" title="@T["Toggle all widgets"]">
|
||||||
|
#: OrchardCore.Flows\Views\ContentCard-FlowPart.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Flows.Views.ContentCard-FlowPart.Edit"
|
||||||
|
msgid "Toggle all widgets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" title="@T["Insert Widget"]" class="btn btn-primary btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
#: OrchardCore.Flows\Views\ContentCard-FlowPart.Edit.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Flows.Views.ContentCard-FlowPart.Edit"
|
||||||
|
msgid "Insert Widget"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-danger widget-delete" data-title="@T["Delete"]" data-message="@T["Are you sure you want to remove this item?"]"><i class="fa fa-trash" aria-hidden="true"></i></button>
|
||||||
|
#: OrchardCore.Flows\Views\ContentCard-FlowPart.Edit.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Flows.Views.ContentCard-FlowPart.Edit"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-danger widget-delete" data-title="@T["Delete"]" data-message="@T["Are you sure you want to remove this item?"]"><i class="fa fa-trash" aria-hidden="true"></i></button>
|
||||||
|
#: OrchardCore.Flows\Views\ContentCard-FlowPart.Edit.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Flows.Views.ContentCard-FlowPart.Edit"
|
||||||
|
msgid "Are you sure you want to remove this item?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="d-none" asp-for="Alignment" id="@Html.IdFor(x => x.Alignment)_Left" type="radio" autocomplete="off" value="Left"><i class="fa fa-align-left" aria-hidden="true"></i> @T["Left"]
|
||||||
|
#: OrchardCore.Flows\Views\FlowMetadata.Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowMetadata.Edit"
|
||||||
|
msgid "Left"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="d-none" asp-for="Alignment" id="@Html.IdFor(x => x.Alignment)_Center" type="radio" autocomplete="off" value="Center"><i class="fa fa-align-center" aria-hidden="true"></i> @T["Center"]
|
||||||
|
#: OrchardCore.Flows\Views\FlowMetadata.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowMetadata.Edit"
|
||||||
|
msgid "Center"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="d-none" asp-for="Alignment" id="@Html.IdFor(x => x.Alignment)_Right" type="radio" autocomplete="off" value="Right"><i class="fa fa-align-right" aria-hidden="true"></i> @T["Right"]
|
||||||
|
#: OrchardCore.Flows\Views\FlowMetadata.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowMetadata.Edit"
|
||||||
|
msgid "Right"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="d-none" asp-for="Alignment" id="@Html.IdFor(x => x.Alignment)_Justify" type="radio" autocomplete="off" value="Justify"><i class="fa fa-align-justify" aria-hidden="true"></i> @T["Justify"]
|
||||||
|
#: OrchardCore.Flows\Views\FlowMetadata.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowMetadata.Edit"
|
||||||
|
msgid "Justify"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="d-none" asp-for="Size" id="@Html.IdFor(x => x.Size)_25" type="radio" autocomplete="off" value="25">@T["25%"]
|
||||||
|
#: OrchardCore.Flows\Views\FlowMetadata.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowMetadata.Edit"
|
||||||
|
msgid "25%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="d-none" asp-for="Size" id="@Html.IdFor(x => x.Size)_33" type="radio" autocomplete="off" value="33">@T["33%"]
|
||||||
|
#: OrchardCore.Flows\Views\FlowMetadata.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowMetadata.Edit"
|
||||||
|
msgid "33%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="d-none" asp-for="Size" id="@Html.IdFor(x => x.Size)_50" type="radio" autocomplete="off" value="50">@T["50%"]
|
||||||
|
#: OrchardCore.Flows\Views\FlowMetadata.Edit.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowMetadata.Edit"
|
||||||
|
msgid "50%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="d-none" asp-for="Size" id="@Html.IdFor(x => x.Size)_66" type="radio" autocomplete="off" value="66">@T["66%"]
|
||||||
|
#: OrchardCore.Flows\Views\FlowMetadata.Edit.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowMetadata.Edit"
|
||||||
|
msgid "66%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="d-none" asp-for="Size" id="@Html.IdFor(x => x.Size)_75" type="radio" autocomplete="off" value="75">@T["75%"]
|
||||||
|
#: OrchardCore.Flows\Views\FlowMetadata.Edit.cshtml:42
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowMetadata.Edit"
|
||||||
|
msgid "75%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="d-none" asp-for="Size" id="@Html.IdFor(x => x.Size)_100" type="radio" autocomplete="off" value="100">@T["100%"]
|
||||||
|
#: OrchardCore.Flows\Views\FlowMetadata.Edit.cshtml:45
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowMetadata.Edit"
|
||||||
|
msgid "100%"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" title="@T["Add Widget"]" class="btn btn-primary btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
#: OrchardCore.Flows\Views\FlowPart.Edit.cshtml:66
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowPart.Edit"
|
||||||
|
msgid "Add Widget"
|
||||||
|
msgstr "إضافة Widget"
|
||||||
|
|
||||||
|
#. <a class="dropdown-item add-widget btn-sm" href="javascript:;">@T["No widgets found."]</a>
|
||||||
|
#: OrchardCore.Flows\Views\FlowPart.Edit.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowPart.Edit"
|
||||||
|
msgid "No widgets found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Flows\Views\FlowPart.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowPart.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="ContainedContentTypes">@T["Restrict Content Types"]</label>
|
||||||
|
#: OrchardCore.Flows\Views\FlowPartSettings.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowPartSettings.Edit"
|
||||||
|
msgid "Restrict Content Types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The content types that this flow can contain."]</span>
|
||||||
|
#: OrchardCore.Flows\Views\FlowPartSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Flows.Views.FlowPartSettings.Edit"
|
||||||
|
msgid "The content types that this flow can contain."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
792
src/Twain.Web/Localization/ar/OrchardCore.Forms.po
Normal file
792
src/Twain.Web/Localization/ar/OrchardCore.Forms.po
Normal file
@@ -0,0 +1,792 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Forms.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 748\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:10\n"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix + '.' + nameof(SelectPartEditViewModel.Options), S["The options are written in an incorrect format."]);
|
||||||
|
#: OrchardCore.Forms\Drivers\SelectPartDisplayDriver.cs:60
|
||||||
|
msgctxt "OrchardCore.Forms.Drivers.SelectPartDisplayDriver"
|
||||||
|
msgid "The options are written in an incorrect format."
|
||||||
|
msgstr "كتبت الخيارات بصيغة خاطئة."
|
||||||
|
|
||||||
|
#. public override LocalizedString DisplayText => S["Add Model Validation Error Task"];
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\AddModelValidationErrorTask.cs:27
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.AddModelValidationErrorTask"
|
||||||
|
msgid "Add Model Validation Error Task"
|
||||||
|
msgstr "مهمة إضافة تحقق من الخطأ المودل"
|
||||||
|
|
||||||
|
#. public override LocalizedString Category => S["Validation"];
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\AddModelValidationErrorTask.cs:29
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.AddModelValidationErrorTask"
|
||||||
|
msgid "Validation"
|
||||||
|
msgstr "تحقق"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"]);
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\AddModelValidationErrorTask.cs:45
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.AddModelValidationErrorTask"
|
||||||
|
msgid "Done"
|
||||||
|
msgstr "تم"
|
||||||
|
|
||||||
|
#. public override LocalizedString DisplayText => S["Bind Model State Task"];
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\BindModelStateTask.cs:31
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.BindModelStateTask"
|
||||||
|
msgid "Bind Model State Task"
|
||||||
|
msgstr "مهمة حالة المودل المرتبطة"
|
||||||
|
|
||||||
|
#. public override LocalizedString Category => S["Validation"];
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\BindModelStateTask.cs:33
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.BindModelStateTask"
|
||||||
|
msgid "Validation"
|
||||||
|
msgstr "تحقق"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"]);
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\BindModelStateTask.cs:37
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.BindModelStateTask"
|
||||||
|
msgid "Done"
|
||||||
|
msgstr "تم"
|
||||||
|
|
||||||
|
#. public override LocalizedString DisplayText => S["Validate Antiforgery Token Task"];
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateAntiforgeryTokenTask.cs:31
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateAntiforgeryTokenTask"
|
||||||
|
msgid "Validate Antiforgery Token Task"
|
||||||
|
msgstr "مهمة التحقق من الـ Antiforgery Token"
|
||||||
|
|
||||||
|
#. public override LocalizedString Category => S["Validation"];
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateAntiforgeryTokenTask.cs:33
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateAntiforgeryTokenTask"
|
||||||
|
msgid "Validation"
|
||||||
|
msgstr "تحقق"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateAntiforgeryTokenTask.cs:39
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateAntiforgeryTokenTask"
|
||||||
|
msgid "Done"
|
||||||
|
msgstr "تم"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateAntiforgeryTokenTask.cs:39
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateAntiforgeryTokenTask"
|
||||||
|
msgid "Valid"
|
||||||
|
msgstr "صحيح"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateAntiforgeryTokenTask.cs:39
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateAntiforgeryTokenTask"
|
||||||
|
msgid "Invalid"
|
||||||
|
msgstr "غير صحيح"
|
||||||
|
|
||||||
|
#. public override LocalizedString DisplayText => S["Validate Form Field Task"];
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateFormFieldTask.cs:31
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateFormFieldTask"
|
||||||
|
msgid "Validate Form Field Task"
|
||||||
|
msgstr "مهمة التحقق من حقل النموذج"
|
||||||
|
|
||||||
|
#. public override LocalizedString Category => S["Validation"];
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateFormFieldTask.cs:33
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateFormFieldTask"
|
||||||
|
msgid "Validation"
|
||||||
|
msgstr "تحقق"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateFormFieldTask.cs:49
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateFormFieldTask"
|
||||||
|
msgid "Done"
|
||||||
|
msgstr "تم"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateFormFieldTask.cs:49
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateFormFieldTask"
|
||||||
|
msgid "Valid"
|
||||||
|
msgstr "صحيح"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateFormFieldTask.cs:49
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateFormFieldTask"
|
||||||
|
msgid "Invalid"
|
||||||
|
msgstr "غير صحيح"
|
||||||
|
|
||||||
|
#. public override LocalizedString DisplayText => S["Validate Form Task"];
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateFormTask.cs:27
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateFormTask"
|
||||||
|
msgid "Validate Form Task"
|
||||||
|
msgstr "مهمة التحقق من النموذج"
|
||||||
|
|
||||||
|
#. public override LocalizedString Category => S["Validation"];
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateFormTask.cs:29
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateFormTask"
|
||||||
|
msgid "Validation"
|
||||||
|
msgstr "تحقق"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateFormTask.cs:35
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateFormTask"
|
||||||
|
msgid "Valid"
|
||||||
|
msgstr "صحيح"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.Forms\Workflows\Activities\ValidateFormTask.cs:35
|
||||||
|
msgctxt "OrchardCore.Forms.Workflows.Activities.ValidateFormTask"
|
||||||
|
msgid "Invalid"
|
||||||
|
msgstr "غير صحيح"
|
||||||
|
|
||||||
|
#. <h4><i class="fa fa-exclamation-triangle" aria-hidden="true"></i>@Model.Activity.GetTitleOrDefault(() => T["Add Form Validation Error"])</h4>
|
||||||
|
#: OrchardCore.Forms\Views\Items\AddModelValidationErrorTask.Fields.Design.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.AddModelValidationErrorTask.Fields.Design"
|
||||||
|
msgid "Add Form Validation Error"
|
||||||
|
msgstr "إضافة التحقق من الخطأ للنموذج"
|
||||||
|
|
||||||
|
#. <span>@T["<em>{0}</em>: <em>{1}</em>", Model.Activity.Key, Model.Activity.ErrorMessage]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\AddModelValidationErrorTask.Fields.Design.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.AddModelValidationErrorTask.Fields.Design"
|
||||||
|
msgid "<em>{0}</em>: <em>{1}</em>"
|
||||||
|
msgstr "<em>{1}</em> :<em>{0}</em>"
|
||||||
|
|
||||||
|
#. <label asp-for="Key">@T["Key"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\AddModelValidationErrorTask.Fields.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.AddModelValidationErrorTask.Fields.Edit"
|
||||||
|
msgid "Key"
|
||||||
|
msgstr "مفتاح"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The name of the form field that has an invalid value."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\AddModelValidationErrorTask.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.AddModelValidationErrorTask.Fields.Edit"
|
||||||
|
msgid "The name of the form field that has an invalid value."
|
||||||
|
msgstr "اسم الحقل الذي يحتوي على قيمة غير صحيحة."
|
||||||
|
|
||||||
|
#. <label asp-for="ErrorMessage">@T["Error Message"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\AddModelValidationErrorTask.Fields.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.AddModelValidationErrorTask.Fields.Edit"
|
||||||
|
msgid "Error Message"
|
||||||
|
msgstr "رسالة الخطأ"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The validation error message to display."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\AddModelValidationErrorTask.Fields.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.AddModelValidationErrorTask.Fields.Edit"
|
||||||
|
msgid "The validation error message to display."
|
||||||
|
msgstr "رسالة التحقق الخاطيء."
|
||||||
|
|
||||||
|
#. <h4 class="card-title"><i class="fa fa-exclamation-triangle" aria-hidden="true"></i>@T["Add Form Validation Error"]</h4>
|
||||||
|
#: OrchardCore.Forms\Views\Items\AddModelValidationErrorTask.Fields.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.AddModelValidationErrorTask.Fields.Thumbnail"
|
||||||
|
msgid "Add Form Validation Error"
|
||||||
|
msgstr "إضافة التحقق من الخطأ للنموذج"
|
||||||
|
|
||||||
|
#. <p>@T["Adds a validation error to the model state."]</p>
|
||||||
|
#: OrchardCore.Forms\Views\Items\AddModelValidationErrorTask.Fields.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.AddModelValidationErrorTask.Fields.Thumbnail"
|
||||||
|
msgid "Adds a validation error to the model state."
|
||||||
|
msgstr "اضف خطأ التحقق لحالة الـ model."
|
||||||
|
|
||||||
|
#. <h4><i class="fa fa-clone" aria-hidden="true"></i>@Model.Activity.GetTitleOrDefault(() => T["Bind Form Model State"])</h4>
|
||||||
|
#: OrchardCore.Forms\Views\Items\BindModelStateTask.Fields.Design.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.BindModelStateTask.Fields.Design"
|
||||||
|
msgid "Bind Form Model State"
|
||||||
|
msgstr "ربط حالة الـ model"
|
||||||
|
|
||||||
|
#. <h4 class="card-title"><i class="fa fa-clone" aria-hidden="true"></i>@T["Bind Form to Model State"]</h4>
|
||||||
|
#: OrchardCore.Forms\Views\Items\BindModelStateTask.Fields.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.BindModelStateTask.Fields.Thumbnail"
|
||||||
|
msgid "Bind Form to Model State"
|
||||||
|
msgstr "ربط النموذج بحالة الـ model"
|
||||||
|
|
||||||
|
#. <p>@T["Binds submitted form fields to the model state."]</p>
|
||||||
|
#: OrchardCore.Forms\Views\Items\BindModelStateTask.Fields.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.BindModelStateTask.Fields.Thumbnail"
|
||||||
|
msgid "Binds submitted form fields to the model state."
|
||||||
|
msgstr "ربط حقول النموذج بحالة الـ model."
|
||||||
|
|
||||||
|
#. <label asp-for="Text">@T["Text"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ButtonPart.Fields.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ButtonPart.Fields.Edit"
|
||||||
|
msgid "Text"
|
||||||
|
msgstr "نص"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The text to display on the button."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ButtonPart.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ButtonPart.Fields.Edit"
|
||||||
|
msgid "The text to display on the button."
|
||||||
|
msgstr "نص الإزرار المراد عرضه."
|
||||||
|
|
||||||
|
#. <label asp-for="Type">@T["Type"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ButtonPart.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ButtonPart.Fields.Edit"
|
||||||
|
msgid "Type"
|
||||||
|
msgstr "نوع"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The button type."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ButtonPart.Fields.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ButtonPart.Fields.Edit"
|
||||||
|
msgid "The button type."
|
||||||
|
msgstr "نوع الزر."
|
||||||
|
|
||||||
|
#. <label asp-for="LabelOption">@T["Label option"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementLabelPart.Fields.Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementLabelPart.Fields.Edit"
|
||||||
|
msgid "Label option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="@LabelOptions.None">@T["None"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementLabelPart.Fields.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementLabelPart.Fields.Edit"
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="@LabelOptions.Standard">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementLabelPart.Fields.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementLabelPart.Fields.Edit"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="@LabelOptions.ScreenReaders">@T["Screen Readers"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementLabelPart.Fields.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementLabelPart.Fields.Edit"
|
||||||
|
msgid "Screen Readers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The type of label to create for this field."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementLabelPart.Fields.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementLabelPart.Fields.Edit"
|
||||||
|
msgid "The type of label to create for this field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Label">@T["Label Text"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementLabelPart.Fields.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementLabelPart.Fields.Edit"
|
||||||
|
msgid "Label Text"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The text to display in the label."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementLabelPart.Fields.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementLabelPart.Fields.Edit"
|
||||||
|
msgid "The text to display in the label."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Id">@T["ID"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementPart.Fields.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementPart.Fields.Edit"
|
||||||
|
msgid "ID"
|
||||||
|
msgstr "معرف"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The ID to render on this form element."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementPart.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementPart.Fields.Edit"
|
||||||
|
msgid "The ID to render on this form element."
|
||||||
|
msgstr "رقم المعرف (ID) المراد عرضه لهذا الحقل."
|
||||||
|
|
||||||
|
#. <label asp-for="ValidationOption">@T["Validation option"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementValidationPart.Fields.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementValidationPart.Fields.Edit"
|
||||||
|
msgid "Validation option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="@ValidationOptions.None">@T["None"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementValidationPart.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementValidationPart.Fields.Edit"
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="@ValidationOptions.Standard">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementValidationPart.Fields.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementValidationPart.Fields.Edit"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The type of validation to create for this field."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormElementValidationPart.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormElementValidationPart.Fields.Edit"
|
||||||
|
msgid "The type of validation to create for this field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormInputElementPart.Fields.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormInputElementPart.Fields.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الاسم"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The name to render on this form element."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormInputElementPart.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormInputElementPart.Fields.Edit"
|
||||||
|
msgid "The name to render on this form element."
|
||||||
|
msgstr "الاسم الظاهر عند عرض هذا الحقل."
|
||||||
|
|
||||||
|
#. <label asp-for="Action">@T["Action"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormPart.Fields.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormPart.Fields.Edit"
|
||||||
|
msgid "Action"
|
||||||
|
msgstr "إجراء"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The URL to submit the form to."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormPart.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormPart.Fields.Edit"
|
||||||
|
msgid "The URL to submit the form to."
|
||||||
|
msgstr "عنوان URL لإرسال النموذج إليه."
|
||||||
|
|
||||||
|
#. <label asp-for="Method">@T["Method"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormPart.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormPart.Fields.Edit"
|
||||||
|
msgid "Method"
|
||||||
|
msgstr "الطريقة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The HTTP method to use when submitting the form."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormPart.Fields.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormPart.Fields.Edit"
|
||||||
|
msgid "The HTTP method to use when submitting the form."
|
||||||
|
msgstr "أسلوب الـ HTTP المراد استخدامه عند إرسال النموذج."
|
||||||
|
|
||||||
|
#. <label asp-for="EncType">@T["EncType"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormPart.Fields.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormPart.Fields.Edit"
|
||||||
|
msgid "EncType"
|
||||||
|
msgstr "نوع الترميز"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The enctype to use when submitting the form using POST method."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormPart.Fields.Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormPart.Fields.Edit"
|
||||||
|
msgid "The enctype to use when submitting the form using POST method."
|
||||||
|
msgstr "نوع ترميز البيانات المراد إستخدامه عند إرسال النموذج باستخدام طريقة الـ POST."
|
||||||
|
|
||||||
|
#. <label asp-for="EnableAntiForgeryToken" class="form-check-label">@T["Anti Forgery Token"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormPart.Fields.Edit.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormPart.Fields.Edit"
|
||||||
|
msgid "Anti Forgery Token"
|
||||||
|
msgstr "رمز مكافحة التزوير"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Check to generate an Anti Forgery Token in the form."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\FormPart.Fields.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.FormPart.Fields.Edit"
|
||||||
|
msgid "Check to generate an Anti Forgery Token in the form."
|
||||||
|
msgstr "تحقق لتوليد رمز مكافحة التزوير في النموذج."
|
||||||
|
|
||||||
|
#. <label asp-for="Type">@T["Type"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Type"
|
||||||
|
msgstr "نوع"
|
||||||
|
|
||||||
|
#. <option value="text">@T["Text"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Text"
|
||||||
|
msgstr "نص"
|
||||||
|
|
||||||
|
#. <option value="number">@T["Number"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Number"
|
||||||
|
msgstr "رقم"
|
||||||
|
|
||||||
|
#. <option value="email">@T["Email"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Email"
|
||||||
|
msgstr "بريد إلكتروني"
|
||||||
|
|
||||||
|
#. <option value="tel">@T["Phone"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Phone"
|
||||||
|
msgstr "هاتف"
|
||||||
|
|
||||||
|
#. <option value="date">@T["Date"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Date"
|
||||||
|
msgstr "تاريخ"
|
||||||
|
|
||||||
|
#. <option value="time">@T["Time"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Time"
|
||||||
|
msgstr "الوقت"
|
||||||
|
|
||||||
|
#. <option value="datetime">@T["DateTime"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "DateTime"
|
||||||
|
msgstr "التاريخ والوقت"
|
||||||
|
|
||||||
|
#. <option value="datetime-local">@T["Local DateTime"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Local DateTime"
|
||||||
|
msgstr "التاريخ والوقت المحلي"
|
||||||
|
|
||||||
|
#. <option value="month">@T["Month"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Month"
|
||||||
|
msgstr "شهر"
|
||||||
|
|
||||||
|
#. <option value="week">@T["Week"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Week"
|
||||||
|
msgstr "أسبوع"
|
||||||
|
|
||||||
|
#. <option value="hidden">@T["Hidden"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Hidden"
|
||||||
|
msgstr "مخفي"
|
||||||
|
|
||||||
|
#. <option value="password">@T["Password"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Password"
|
||||||
|
msgstr "كلمة المرور"
|
||||||
|
|
||||||
|
#. <option value="checkbox">@T["Checkbox"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Checkbox"
|
||||||
|
msgstr "حقل اختيار (Checkbox)"
|
||||||
|
|
||||||
|
#. <option value="color">@T["Color"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Color"
|
||||||
|
msgstr "لون"
|
||||||
|
|
||||||
|
#. <option value="range">@T["Range"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Range"
|
||||||
|
msgstr "مدى رقمي"
|
||||||
|
|
||||||
|
#. <option value="file">@T["File"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "File"
|
||||||
|
msgstr "ملف"
|
||||||
|
|
||||||
|
#. <option value="url">@T["Url"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Url"
|
||||||
|
msgstr "الرابط"
|
||||||
|
|
||||||
|
#. <option value="image">@T["Image"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Image"
|
||||||
|
msgstr "صورة"
|
||||||
|
|
||||||
|
#. <option value="reset">@T["Reset"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr "إعادة تعيين"
|
||||||
|
|
||||||
|
#. <option value="search">@T["Search"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <option value="submit">@T["Submit"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Submit"
|
||||||
|
msgstr "إرسال"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The button type."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:31
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "The button type."
|
||||||
|
msgstr "نوع الزر."
|
||||||
|
|
||||||
|
#. <label asp-for="Placeholder">@T["Placeholder Text"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Placeholder Text"
|
||||||
|
msgstr "النص البديل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The text to display when the field has no value."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "The text to display when the field has no value."
|
||||||
|
msgstr "النص المراد عرضه عند خلو الحقل من أي قيمة."
|
||||||
|
|
||||||
|
#. <label asp-for="DefaultValue">@T["Default Value"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "Default Value"
|
||||||
|
msgstr "القيمة الافتراضية"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default value for this field."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\InputPart.Fields.Edit.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.InputPart.Fields.Edit"
|
||||||
|
msgid "The default value for this field."
|
||||||
|
msgstr "القيمة الافتراضية لهذا الحقل."
|
||||||
|
|
||||||
|
#. <label asp-for="For">@T["For"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\LabelPart.Fields.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.LabelPart.Fields.Edit"
|
||||||
|
msgid "For"
|
||||||
|
msgstr "مرتبط بـ"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The ID of the form element to associate with this label."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\LabelPart.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.LabelPart.Fields.Edit"
|
||||||
|
msgid "The ID of the form element to associate with this label."
|
||||||
|
msgstr "رقم المعرف (ID) للحقل المرتبط بهذه التسمية."
|
||||||
|
|
||||||
|
#. <input type="text" class="form-control" v-model="optionText" placeholder="@T["Enter the text"]" />
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Enter the text"
|
||||||
|
msgstr "أدخل النص"
|
||||||
|
|
||||||
|
#. <input type="text" class="form-control courier" v-model="optionValue" placeholder="@T["Enter a value"]" />
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Enter a value"
|
||||||
|
msgstr "أدخل القيمة"
|
||||||
|
|
||||||
|
#. <label :for=" partId + '_' + option.key + '_id'" class="form-check-label" title="@T["Set as default"]" >
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Set as default"
|
||||||
|
msgstr "تعيين كافتراضي"
|
||||||
|
|
||||||
|
#. <a v-on:click.prevent.stop="remove" href="#" title="@T["Remove element from list"]" class="btn">
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Remove element from list"
|
||||||
|
msgstr "حذف العنصر من القائمة"
|
||||||
|
|
||||||
|
#. <th scope="col">@T["Option Text"]</th>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Option Text"
|
||||||
|
msgstr "نص الخيار"
|
||||||
|
|
||||||
|
#. <th scope="col">@T["Value"]</th>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:44
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Value"
|
||||||
|
msgstr "القيمة"
|
||||||
|
|
||||||
|
#. <th scope="col" colspan="3">@T["Default?"]</th>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:45
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Default?"
|
||||||
|
msgstr "افتراضي؟"
|
||||||
|
|
||||||
|
#. <a v-on:click="add()" class="btn btn-light w-100 btn-sm"><i class="fas fa-plus small" aria-hidden="true"></i> @T["Add an option"]</a>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:59
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Add an option"
|
||||||
|
msgstr "إضافة خيار"
|
||||||
|
|
||||||
|
#. <h5 class="modal-title">@T["Edit Data"]</h5>
|
||||||
|
#. <a href="#" v-on:click.prevent.stop="showModal = true" class="float-end" title="@T["Edit Data"]"><i class="fas fa-edit" aria-hidden="true"></i></a>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:73
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:123
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Edit Data"
|
||||||
|
msgstr "تحرير البيانات"
|
||||||
|
|
||||||
|
#. <label for="select-options-textarea">@T["Options"]</label>
|
||||||
|
#. <label asp-for="Options">@T["Options"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:78
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:122
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "الخيارات"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["A JSON representation of the allowed values, e.g. {0}", "[ { text: 'First option', value: 'option1' }, { text: 'Second option', value: 'option2' } ]"]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:82
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "A JSON representation of the allowed values, e.g. {0}"
|
||||||
|
msgstr "تمثيل القيم المسموح بها بصيغة JSON، على سبيل المثال {0}"
|
||||||
|
|
||||||
|
#. <label for="options-default-value">@T["Default value"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:85
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Default value"
|
||||||
|
msgstr "القيمة الافتراضية"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["(Optional) The value to assign to the select field."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:87
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "(Optional) The value to assign to the select field."
|
||||||
|
msgstr "(اختياري) القيمة الافتراضية المسندة للحقل المختار."
|
||||||
|
|
||||||
|
#. v-on:click="closeModal(true)">@T["OK"]</button>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:93
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "موافق"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" v-on:click="closeModal(false)">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:94
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <label asp-for="Editor">@T["Editor"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:109
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Editor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="@SelectEditorOption.Dropdown">@T["Dropdown"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:111
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Dropdown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="@SelectEditorOption.Checkbox">@T["Checkbox"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:112
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Checkbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="@SelectEditorOption.Radio">@T["Radio"]</option>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:113
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "Radio"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The editor style to use for this field."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\SelectPart.Fields.Edit.cshtml:115
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.SelectPart.Fields.Edit"
|
||||||
|
msgid "The editor style to use for this field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Placeholder">@T["Placeholder Text"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\TextAreaPart.Fields.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.TextAreaPart.Fields.Edit"
|
||||||
|
msgid "Placeholder Text"
|
||||||
|
msgstr "النص البديل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The text to display when the textarea has no value."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\TextAreaPart.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.TextAreaPart.Fields.Edit"
|
||||||
|
msgid "The text to display when the textarea has no value."
|
||||||
|
msgstr "النص المراد عرضه عند خلو الحقل النصي Textarea من أي قيمة."
|
||||||
|
|
||||||
|
#. <label asp-for="DefaultValue">@T["Default Value"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\TextAreaPart.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.TextAreaPart.Fields.Edit"
|
||||||
|
msgid "Default Value"
|
||||||
|
msgstr "القيمة الافتراضية"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default value for this textarea."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\TextAreaPart.Fields.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.TextAreaPart.Fields.Edit"
|
||||||
|
msgid "The default value for this textarea."
|
||||||
|
msgstr "القيمة الافتراضية لهذا الحقل النصي Textarea."
|
||||||
|
|
||||||
|
#. <h4><i class="fa fa-shield-alt" aria-hidden="true"></i>@Model.Activity.GetTitleOrDefault(() => T["Validate Antiforgery Token"])</h4>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateAntiforgeryTokenTask.Fields.Design.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateAntiforgeryTokenTask.Fields.Design"
|
||||||
|
msgid "Validate Antiforgery Token"
|
||||||
|
msgstr "التحقق من Antiforgery Token"
|
||||||
|
|
||||||
|
#. <h4 class="card-title"><i class="fa fa-shield-alt" aria-hidden="true"></i>@T["Validate Antiforgery Token"]</h4>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateAntiforgeryTokenTask.Fields.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateAntiforgeryTokenTask.Fields.Thumbnail"
|
||||||
|
msgid "Validate Antiforgery Token"
|
||||||
|
msgstr "التحقق من Antiforgery Token"
|
||||||
|
|
||||||
|
#. <p>@T["Validates the antiforgery token for the current HTTP context in which the workflow executes."]</p>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateAntiforgeryTokenTask.Fields.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateAntiforgeryTokenTask.Fields.Thumbnail"
|
||||||
|
msgid "Validates the antiforgery token for the current HTTP context in which the workflow executes."
|
||||||
|
msgstr "التحقق من الـ Antiforgery Token لسياق طلب الـ HTTP الحالي، المنفذ من مسير العمل."
|
||||||
|
|
||||||
|
#. <h4><i class="fa fa-shield-alt" aria-hidden="true"></i>@Model.Activity.GetTitleOrDefault(() => T["Validate Form Field"])</h4>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormFieldTask.Fields.Design.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormFieldTask.Fields.Design"
|
||||||
|
msgid "Validate Form Field"
|
||||||
|
msgstr "التحقق من حقل النموذج"
|
||||||
|
|
||||||
|
#. <span>@T["Validate <em>{0}</em>", Model.Activity.FieldName]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormFieldTask.Fields.Design.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormFieldTask.Fields.Design"
|
||||||
|
msgid "Validate <em>{0}</em>"
|
||||||
|
msgstr "التحقق من <em>{0}</em>"
|
||||||
|
|
||||||
|
#. <label asp-for="FieldName">@T["Field Name"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormFieldTask.Fields.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormFieldTask.Fields.Edit"
|
||||||
|
msgid "Field Name"
|
||||||
|
msgstr "اسم الحقل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The name of the form field to validate."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormFieldTask.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormFieldTask.Fields.Edit"
|
||||||
|
msgid "The name of the form field to validate."
|
||||||
|
msgstr "اسم حقل النموذج المراد التحقق منه."
|
||||||
|
|
||||||
|
#. <label asp-for="ErrorMessage">@T["Error Message"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormFieldTask.Fields.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormFieldTask.Fields.Edit"
|
||||||
|
msgid "Error Message"
|
||||||
|
msgstr "رسالة الخطأ"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The validation error message to display."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormFieldTask.Fields.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormFieldTask.Fields.Edit"
|
||||||
|
msgid "The validation error message to display."
|
||||||
|
msgstr "رسالة التحقق الخاطيء المراد عرضها."
|
||||||
|
|
||||||
|
#. <h4 class="card-title"><i class="fa fa-shield-alt" aria-hidden="true"></i>@T["Validate Form Field"]</h4>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormFieldTask.Fields.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormFieldTask.Fields.Thumbnail"
|
||||||
|
msgid "Validate Form Field"
|
||||||
|
msgstr "التحقق من حقل النموذج"
|
||||||
|
|
||||||
|
#. <p>@T["Validates a specific form field."]</p>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormFieldTask.Fields.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormFieldTask.Fields.Thumbnail"
|
||||||
|
msgid "Validates a specific form field."
|
||||||
|
msgstr "التحقق من صحة حقل محدد في النموذج."
|
||||||
|
|
||||||
|
#. <h4><i class="fa fa-shield-alt" aria-hidden="true"></i>@Model.Activity.GetTitleOrDefault(() => T["Validate Form"])</h4>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormTask.Fields.Design.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormTask.Fields.Design"
|
||||||
|
msgid "Validate Form"
|
||||||
|
msgstr "التحقق من صحة النموذج"
|
||||||
|
|
||||||
|
#. <h4 class="card-title"><i class="fa fa-shield-alt" aria-hidden="true"></i>@T["Validate Form"]</h4>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormTask.Fields.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormTask.Fields.Thumbnail"
|
||||||
|
msgid "Validate Form"
|
||||||
|
msgstr "التحقق من صحة النموذج"
|
||||||
|
|
||||||
|
#. <p>@T["Checks whether the submitted form contains any validation errors."]</p>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidateFormTask.Fields.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidateFormTask.Fields.Thumbnail"
|
||||||
|
msgid "Checks whether the submitted form contains any validation errors."
|
||||||
|
msgstr "التحقق مما إذا كان النموذج المرسل يحتوي على أخطاء."
|
||||||
|
|
||||||
|
#. <label asp-for="For">@T["For"]</label>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidationPart.Fields.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidationPart.Fields.Edit"
|
||||||
|
msgid "For"
|
||||||
|
msgstr "مرتبط بـ"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The field name that this validation is for."]</span>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidationPart.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidationPart.Fields.Edit"
|
||||||
|
msgid "The field name that this validation is for."
|
||||||
|
msgstr "اسم الحقل المتعلق بهذا التحقق."
|
||||||
|
|
||||||
|
#. <div class="hint">@T["Displays a list of validation errors."]</div>
|
||||||
|
#: OrchardCore.Forms\Views\Items\ValidationSummaryPart.Fields.Edit.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Forms.Views.Items.ValidationSummaryPart.Fields.Edit"
|
||||||
|
msgid "Displays a list of validation errors."
|
||||||
|
msgstr "عرض قائمة برسائل أخطاء التحقق."
|
||||||
|
|
||||||
142
src/Twain.Web/Localization/ar/OrchardCore.GitHub.po
Normal file
142
src/Twain.Web/Localization/ar/OrchardCore.GitHub.po
Normal file
@@ -0,0 +1,142 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.GitHub.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 750\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Security"], security => security
|
||||||
|
#: OrchardCore.GitHub\AdminMenu.cs:23
|
||||||
|
msgctxt "OrchardCore.GitHub.AdminMenuGitHubLogin"
|
||||||
|
msgid "Security"
|
||||||
|
msgstr "الأمان"
|
||||||
|
|
||||||
|
#. .Add(S["Authentication"], authentication => authentication
|
||||||
|
#: OrchardCore.GitHub\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.GitHub.AdminMenuGitHubLogin"
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr "المصادقة"
|
||||||
|
|
||||||
|
#. .Add(S["GitHub"], S["GitHub"].PrefixPosition(), settings => settings
|
||||||
|
#. .Add(S["GitHub"], S["GitHub"].PrefixPosition(), settings => settings
|
||||||
|
#: OrchardCore.GitHub\AdminMenu.cs:25
|
||||||
|
#: OrchardCore.GitHub\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.GitHub.AdminMenuGitHubLogin"
|
||||||
|
msgid "GitHub"
|
||||||
|
msgstr "جيت هب"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["ClientID is required"], new string[] { nameof(settings.ClientID) });
|
||||||
|
#: OrchardCore.GitHub\Services\GithubAuthenticationService.cs:64
|
||||||
|
msgctxt "OrchardCore.GitHub.Services.GitHubAuthenticationService"
|
||||||
|
msgid "ClientID is required"
|
||||||
|
msgstr "معرف العميل مطلوب"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["ClientSecret is required"], new string[] { nameof(settings.ClientSecret) });
|
||||||
|
#: OrchardCore.GitHub\Services\GithubAuthenticationService.cs:69
|
||||||
|
msgctxt "OrchardCore.GitHub.Services.GitHubAuthenticationService"
|
||||||
|
msgid "ClientSecret is required"
|
||||||
|
msgstr "الرمز السري للعميل مطلوب"
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "API key is required")]
|
||||||
|
#: OrchardCore.GitHub\ViewModels\GithubAuthenticationSettingsViewModel.cs:7
|
||||||
|
msgctxt "OrchardCore.GitHub.ViewModels.GitHubAuthenticationSettingsViewModel"
|
||||||
|
msgid "API key is required"
|
||||||
|
msgstr "مفتاح API مطلوب"
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "API secret key is required")]
|
||||||
|
#: OrchardCore.GitHub\ViewModels\GithubAuthenticationSettingsViewModel.cs:10
|
||||||
|
msgctxt "OrchardCore.GitHub.ViewModels.GitHubAuthenticationSettingsViewModel"
|
||||||
|
msgid "API secret key is required"
|
||||||
|
msgstr "مفتاح API السري مطلوب"
|
||||||
|
|
||||||
|
#. [RegularExpression(@"\/[-A-Za-z0-9+&@#\/%?=~_|!:,.;]+[-A-Za-z0-9+&@#\/%=~_|]", ErrorMessage = "Invalid path")]
|
||||||
|
#: OrchardCore.GitHub\ViewModels\GithubAuthenticationSettingsViewModel.cs:13
|
||||||
|
msgctxt "OrchardCore.GitHub.ViewModels.GitHubAuthenticationSettingsViewModel"
|
||||||
|
msgid "Invalid path"
|
||||||
|
msgstr "مسار غير صالح"
|
||||||
|
|
||||||
|
#. @T["The current tenant will be reloaded when the settings are saved."]
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "ستتم إعادة تحميل الـ tenant الحالية عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/GitHub/#authenticate-with-github" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="alert alert-danger">@T["An error occurred while decrypting a setting. Please apply and save."]</p>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "An error occurred while decrypting a setting. Please apply and save."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h3>@T["GitHub Authentication Settings"]</h3>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "GitHub Authentication Settings"
|
||||||
|
msgstr "إعدادات مصادقة جيت هب"
|
||||||
|
|
||||||
|
#. <label asp-for="ClientID">@T["Client ID"]</label>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "Client ID"
|
||||||
|
msgstr "معرف العميل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Client ID defined in the general tab of your <a target=\"_blank\" href=\"https://github.com/settings/apps\">GitHub App</a>."]</span>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "The Client ID defined in the general tab of your <a target=\"_blank\" href=\"https://github.com/settings/apps\">GitHub App</a>."
|
||||||
|
msgstr "معرف العميل موجود في التبويب العام لـ <a target=\"_blank\" href=\"https://github.com/settings/apps\">تطبيق جيت هب</a>."
|
||||||
|
|
||||||
|
#. <label asp-for="ClientSecret">@T["Client secret"]</label>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "Client secret"
|
||||||
|
msgstr "الرمز السري للعميل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The secret for your app."]</span>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "The secret for your app."
|
||||||
|
msgstr "الرمز السري لتطبيقك."
|
||||||
|
|
||||||
|
#. <label asp-for="CallbackUrl">@T["CallbackPath"]</label>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:36
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "CallbackPath"
|
||||||
|
msgstr "مسار الإستدعاء المرجعي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."]</span>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:39
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."
|
||||||
|
msgstr "المسار المطلوب داخل المسار الأساسي للتطبيق حيث سيتم إرجاع وكيل المستخدم إليه. الـ middleware سوف تعالج الطلب عند وصوله."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SaveTokens">@T["Store tokens"]</label>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:46
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "Store tokens"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Store external authentication tokens for reuse"]</span>
|
||||||
|
#: OrchardCore.GitHub\Views\GithubAuthenticationSettings.Edit.cshtml:47
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.GithubAuthenticationSettings.Edit"
|
||||||
|
msgid "Store external authentication tokens for reuse"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fab fa-github" aria-hidden="true"></i></span><span class="title">@T["GitHub"]</span>
|
||||||
|
#: OrchardCore.GitHub\Views\NavigationItemText-github.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.GitHub.Views.NavigationItemText-github.Id"
|
||||||
|
msgid "GitHub"
|
||||||
|
msgstr "جيت هب"
|
||||||
|
|
||||||
296
src/Twain.Web/Localization/ar/OrchardCore.Google.po
Normal file
296
src/Twain.Web/Localization/ar/OrchardCore.Google.po
Normal file
@@ -0,0 +1,296 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Google.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 752\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Security"], security => security
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:23
|
||||||
|
msgctxt "OrchardCore.Google.GoogleAuthenticationAdminMenu"
|
||||||
|
msgid "Security"
|
||||||
|
msgstr "الأمان"
|
||||||
|
|
||||||
|
#. .Add(S["Authentication"], authentication => authentication
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.Google.GoogleAuthenticationAdminMenu"
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr "المصادقة"
|
||||||
|
|
||||||
|
#. .Add(S["Google"], S["Google"].PrefixPosition(), settings => settings
|
||||||
|
#. .Add(S["Google"], S["Google"].PrefixPosition(), settings => settings
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:25
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Google.GoogleAuthenticationAdminMenu"
|
||||||
|
msgid "Google"
|
||||||
|
msgstr "قوقل"
|
||||||
|
|
||||||
|
#. builder.Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:50
|
||||||
|
msgctxt "OrchardCore.Google.GoogleAnalyticsAdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:51
|
||||||
|
msgctxt "OrchardCore.Google.GoogleAnalyticsAdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Google Analytics"], S["Google Analytics"].PrefixPosition(), settings => settings
|
||||||
|
#. .Add(S["Google Analytics"], S["Google Analytics"].PrefixPosition(), settings => settings
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:52
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:52
|
||||||
|
msgctxt "OrchardCore.Google.GoogleAnalyticsAdminMenu"
|
||||||
|
msgid "Google Analytics"
|
||||||
|
msgstr "تحليلات قوقل"
|
||||||
|
|
||||||
|
#. builder.Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:78
|
||||||
|
msgctxt "OrchardCore.Google.GoogleTagManagerAdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:79
|
||||||
|
msgctxt "OrchardCore.Google.GoogleTagManagerAdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Google Tag Manager"], S["Google Tag Manager"].PrefixPosition(), settings => settings
|
||||||
|
#. .Add(S["Google Tag Manager"], S["Google Tag Manager"].PrefixPosition(), settings => settings
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:80
|
||||||
|
#: OrchardCore.Google\AdminMenu.cs:80
|
||||||
|
msgctxt "OrchardCore.Google.GoogleTagManagerAdminMenu"
|
||||||
|
msgid "Google Tag Manager"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<GoogleAuthenticationSettings, GoogleAuthenticationDeploymentStartup>(S => S["Google Authentication Settings"], S => S["Exports the Google Authentication settings."]);
|
||||||
|
#: OrchardCore.Google\Startup.cs:89
|
||||||
|
msgctxt "OrchardCore.Google.GoogleAuthenticationDeploymentStartup"
|
||||||
|
msgid "Google Authentication Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<GoogleAuthenticationSettings, GoogleAuthenticationDeploymentStartup>(S => S["Google Authentication Settings"], S => S["Exports the Google Authentication settings."]);
|
||||||
|
#: OrchardCore.Google\Startup.cs:89
|
||||||
|
msgctxt "OrchardCore.Google.GoogleAuthenticationDeploymentStartup"
|
||||||
|
msgid "Exports the Google Authentication settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<GoogleAnalyticsSettings, GoogleAnalyticsDeploymentStartup>(S => S["Google Analytics Settings"], S => S["Exports the Google Analytics settings."]);
|
||||||
|
#: OrchardCore.Google\Startup.cs:99
|
||||||
|
msgctxt "OrchardCore.Google.GoogleAnalyticsDeploymentStartup"
|
||||||
|
msgid "Google Analytics Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<GoogleAnalyticsSettings, GoogleAnalyticsDeploymentStartup>(S => S["Google Analytics Settings"], S => S["Exports the Google Analytics settings."]);
|
||||||
|
#: OrchardCore.Google\Startup.cs:99
|
||||||
|
msgctxt "OrchardCore.Google.GoogleAnalyticsDeploymentStartup"
|
||||||
|
msgid "Exports the Google Analytics settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<GoogleTagManagerSettings, GoogleTagManagerDeploymentStartup>(S => S["Google Tag Manager Settings"], S => S["Exports the Google Tag Manager settings."]);
|
||||||
|
#: OrchardCore.Google\Startup.cs:109
|
||||||
|
msgctxt "OrchardCore.Google.GoogleTagManagerDeploymentStartup"
|
||||||
|
msgid "Google Tag Manager Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<GoogleTagManagerSettings, GoogleTagManagerDeploymentStartup>(S => S["Google Tag Manager Settings"], S => S["Exports the Google Tag Manager settings."]);
|
||||||
|
#: OrchardCore.Google\Startup.cs:109
|
||||||
|
msgctxt "OrchardCore.Google.GoogleTagManagerDeploymentStartup"
|
||||||
|
msgid "Exports the Google Tag Manager settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "ClientID key is required")]
|
||||||
|
#: OrchardCore.Google\Authentication\ViewModels\GoogleAuthenticationSettingsViewModel.cs:7
|
||||||
|
msgctxt "OrchardCore.Google.Authentication.ViewModels.GoogleAuthenticationSettingsViewModel"
|
||||||
|
msgid "ClientID key is required"
|
||||||
|
msgstr "معرف العميل مطلوب"
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "ClientSecret is required")]
|
||||||
|
#: OrchardCore.Google\Authentication\ViewModels\GoogleAuthenticationSettingsViewModel.cs:10
|
||||||
|
msgctxt "OrchardCore.Google.Authentication.ViewModels.GoogleAuthenticationSettingsViewModel"
|
||||||
|
msgid "ClientSecret is required"
|
||||||
|
msgstr "الرمز السري للعميل مطلوب"
|
||||||
|
|
||||||
|
#. [RegularExpression(@"\/[-A-Za-z0-9+&@#\/%?=~_|!:,.;]+[-A-Za-z0-9+&@#\/%=~_|]", ErrorMessage = "Invalid path")]
|
||||||
|
#: OrchardCore.Google\Authentication\ViewModels\GoogleAuthenticationSettingsViewModel.cs:13
|
||||||
|
msgctxt "OrchardCore.Google.Authentication.ViewModels.GoogleAuthenticationSettingsViewModel"
|
||||||
|
msgid "Invalid path"
|
||||||
|
msgstr "مسار غير صالح"
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Google/#google-analytics" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAnalyticsSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAnalyticsSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h3>@T["Google Analytics Settings"]</h3>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAnalyticsSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAnalyticsSettings.Edit"
|
||||||
|
msgid "Google Analytics Settings"
|
||||||
|
msgstr "إعدادات تحليلات قوقل"
|
||||||
|
|
||||||
|
#. <label asp-for="TrackingID">@T["Tracking ID"]</label>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAnalyticsSettings.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAnalyticsSettings.Edit"
|
||||||
|
msgid "Tracking ID"
|
||||||
|
msgstr "معرف التتبع"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The tracking ID defined in your Google Analytics account."]</span>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAnalyticsSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAnalyticsSettings.Edit"
|
||||||
|
msgid "The tracking ID defined in your Google Analytics account."
|
||||||
|
msgstr "معرف التتبع معرف في حسابك لتحليلات قوقل."
|
||||||
|
|
||||||
|
#. @T["The current tenant will be reloaded when the settings are saved."]
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "سيتم إعادة تحميل الـ tenant عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Google/#google-authentication" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="alert alert-danger">@T["An error occurred while decrypting a setting. Please apply and save."]</p>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "An error occurred while decrypting a setting. Please apply and save."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h3>@T["Google Authentication Settings"]</h3>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "Google Authentication Settings"
|
||||||
|
msgstr "إعدادات مصادقة قوقل"
|
||||||
|
|
||||||
|
#. <label asp-for="ClientID">@T["Client ID"]</label>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "Client ID"
|
||||||
|
msgstr "معرف العميل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The client id defined in Google API console for the application."]</span>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "The client id defined in Google API console for the application."
|
||||||
|
msgstr "معرف العميل موجود في واجهة برمجة التطبيقات لقوقل للتطبيق."
|
||||||
|
|
||||||
|
#. <label asp-for="ClientSecret">@T["API secret key"]</label>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "API secret key"
|
||||||
|
msgstr "المفتاح السري للـ API"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The client secret defined in Google API console for the application."]</span>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "The client secret defined in Google API console for the application."
|
||||||
|
msgstr "شفرة أمان العميل معرفة في واجهة التطبيقات البرمجية لقوقل للتطبيق."
|
||||||
|
|
||||||
|
#. <label asp-for="CallbackPath">@T["CallbackPath"]</label>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "CallbackPath"
|
||||||
|
msgstr "مسار الإستدعاء المرجعي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."]</span>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."
|
||||||
|
msgstr "المسار المطلوب داخل المسار الأساسي للتطبيق حيث سيتم إرجاع وكيل المستخدم إليه. الـ middleware سوف تعالج الطلب عند وصوله."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SaveTokens">@T["Store tokens"]</label>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:46
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "Store tokens"
|
||||||
|
msgstr "الرموز المحزنة"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Store external authentication tokens for reuse"]</span>
|
||||||
|
#: OrchardCore.Google\Views\GoogleAuthenticationSettings.Edit.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleAuthenticationSettings.Edit"
|
||||||
|
msgid "Store external authentication tokens for reuse"
|
||||||
|
msgstr "تخزين رمز المصادقة الخارجية لإعادة الاستخدام"
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Google/#google-tag-manager" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Google\Views\GoogleTagManagerSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleTagManagerSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h3>@T["Google Tag Manager Settings"]</h3>
|
||||||
|
#: OrchardCore.Google\Views\GoogleTagManagerSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleTagManagerSettings.Edit"
|
||||||
|
msgid "Google Tag Manager Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="ContainerID">@T["Container ID"]</label>
|
||||||
|
#: OrchardCore.Google\Views\GoogleTagManagerSettings.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleTagManagerSettings.Edit"
|
||||||
|
msgid "Container ID"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The container ID defined in your Google Tag Manager account."]</span>
|
||||||
|
#: OrchardCore.Google\Views\GoogleTagManagerSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Google.Views.GoogleTagManagerSettings.Edit"
|
||||||
|
msgid "The container ID defined in your Google Tag Manager account."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-google" aria-hidden="true"></i></span><span class="title">@T["Google"]</span>
|
||||||
|
#: OrchardCore.Google\Views\NavigationItemText-google.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Google.Views.NavigationItemText-google.Id"
|
||||||
|
msgid "Google"
|
||||||
|
msgstr "قوقل"
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-google" aria-hidden="true"></i></span><span class="title">@T["Google Analytics"]</span>
|
||||||
|
#: OrchardCore.Google\Views\NavigationItemText-googleAnalytics.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Google.Views.NavigationItemText-googleAnalytics.Id"
|
||||||
|
msgid "Google Analytics"
|
||||||
|
msgstr "تحليلات قوقل"
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-google" aria-hidden="true"></i></span><span class="title">@T["Google Tag Manager"]</span>
|
||||||
|
#: OrchardCore.Google\Views\NavigationItemText-googleTagManager.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Google.Views.NavigationItemText-googleTagManager.Id"
|
||||||
|
msgid "Google Tag Manager"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Google Analytics Settings"]</h5>
|
||||||
|
#: OrchardCore.Google\Views\Items\GoogleAnalyticsDeploymentStep.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Google.Views.Items.GoogleAnalyticsDeploymentStep.Edit"
|
||||||
|
msgid "Google Analytics Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Google Analytics Settings"]</h5>
|
||||||
|
#: OrchardCore.Google\Views\Items\GoogleAnalyticsDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Google.Views.Items.GoogleAnalyticsDeploymentStep.Summary"
|
||||||
|
msgid "Google Analytics Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds Google Analytics settings to the plan."]</span>
|
||||||
|
#: OrchardCore.Google\Views\Items\GoogleAnalyticsDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Google.Views.Items.GoogleAnalyticsDeploymentStep.Summary"
|
||||||
|
msgid "Adds Google Analytics settings to the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Google Analytics Settings"]</h4>
|
||||||
|
#: OrchardCore.Google\Views\Items\GoogleAnalyticsDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Google.Views.Items.GoogleAnalyticsDeploymentStep.Thumbnail"
|
||||||
|
msgid "Google Analytics Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports the Google Analytics settings."]</p>
|
||||||
|
#: OrchardCore.Google\Views\Items\GoogleAnalyticsDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Google.Views.Items.GoogleAnalyticsDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports the Google Analytics settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
170
src/Twain.Web/Localization/ar/OrchardCore.Html.po
Normal file
170
src/Twain.Web/Localization/ar/OrchardCore.Html.po
Normal file
@@ -0,0 +1,170 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Html.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 754\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:12\n"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(viewModel.Html), S["{0} doesn't contain a valid Liquid expression. Details: {1}", partName, string.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.Html\Drivers\HtmlBodyPartDisplayDriver.cs:73
|
||||||
|
msgctxt "OrchardCore.Html.Drivers.HtmlBodyPartDisplayDriver"
|
||||||
|
msgid "{0} doesn't contain a valid Liquid expression. Details: {1}"
|
||||||
|
msgstr "{0} لا يحتوي على عبارة Liquid صحيحة. للتفاصيل: {1}"
|
||||||
|
|
||||||
|
#. Description = S["Content stored as HTML."];
|
||||||
|
#: OrchardCore.Html\GraphQL\HtmlBodyQueryObjectType.cs:26
|
||||||
|
msgctxt "OrchardCore.Html.GraphQL.HtmlBodyQueryObjectType"
|
||||||
|
msgid "Content stored as HTML."
|
||||||
|
msgstr "المحتوى المخزن كـ HTML."
|
||||||
|
|
||||||
|
#. .Description(S["the HTML content"])
|
||||||
|
#: OrchardCore.Html\GraphQL\HtmlBodyQueryObjectType.cs:30
|
||||||
|
msgctxt "OrchardCore.Html.GraphQL.HtmlBodyQueryObjectType"
|
||||||
|
msgid "the HTML content"
|
||||||
|
msgstr "محتوى HTML"
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(Prefix + "." + nameof(MonacoSettingsViewModel.Options), S["The options are written in an incorrect format."]);
|
||||||
|
#: OrchardCore.Html\Settings\HtmlBodyPartMonacoEditorSettingsDriver.cs:49
|
||||||
|
msgctxt "OrchardCore.Html.Settings.HtmlBodyPartMonacoEditorSettingsDriver"
|
||||||
|
msgid "The options are written in an incorrect format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(Prefix + "." + nameof(TrumbowygSettingsViewModel.Options), S["The options are written in an incorrect format."]);
|
||||||
|
#: OrchardCore.Html\Settings\HtmlBodyPartTrumbowygEditorSettingsDriver.cs:45
|
||||||
|
msgctxt "OrchardCore.Html.Settings.HtmlBodyPartTrumbowygEditorSettingsDriver"
|
||||||
|
msgid "The options are written in an incorrect format."
|
||||||
|
msgstr "تم كتابة الخيارات بصيغة خاطئة."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The body of the content item."]</span>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPart-Monaco.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPart-Monaco.Edit"
|
||||||
|
msgid "The body of the content item."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="Monaco" selected="@(currentEditor == "Monaco")">@T["Monaco editor"]</option>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPart-Monaco.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPart-Monaco.Option"
|
||||||
|
msgid "Monaco editor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The body of the content item."]</span>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPart-Trumbowyg.Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPart-Trumbowyg.Edit"
|
||||||
|
msgid "The body of the content item."
|
||||||
|
msgstr "المحتوى لعنصر المحتوى."
|
||||||
|
|
||||||
|
#. <option value="Trumbowyg" selected="@(currentEditor == "Trumbowyg")">@T["Trumbowyg editor"]</option>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPart-Trumbowyg.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPart-Trumbowyg.Option"
|
||||||
|
msgid "Trumbowyg editor"
|
||||||
|
msgstr "محرر Trumbowyg"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The body of the content item."]</span>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPart-Wysiwyg.Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPart-Wysiwyg.Edit"
|
||||||
|
msgid "The body of the content item."
|
||||||
|
msgstr "المحتوى لعنصر المحتوى."
|
||||||
|
|
||||||
|
#. <option value="Wysiwyg" selected="@(currentEditor == "Wysiwyg")">@T["Wysiwyg editor"]</option>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPart-Wysiwyg.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPart-Wysiwyg.Option"
|
||||||
|
msgid "Wysiwyg editor"
|
||||||
|
msgstr "محرر Wysiwyg"
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentDisplayMode)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPart.DisplayOption.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPart.DisplayOption"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The body of the content item."]</span>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPart.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPart.Edit"
|
||||||
|
msgid "The body of the content item."
|
||||||
|
msgstr "المحتوى لعنصر المحتوى."
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPart.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPart.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <label asp-for="Options">@T["Enter the editor options, language is always set to `html` when saved."]</label>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPartMonacoSettings.Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPartMonacoSettings.Edit"
|
||||||
|
msgid "Enter the editor options, language is always set to `html` when saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint"><a href="https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.IStandaloneEditorConstructionOptions.html" target="_blank">@T["Documentation for options"]</a></span>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPartMonacoSettings.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPartMonacoSettings.Edit"
|
||||||
|
msgid "Documentation for options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SanitizeHtml">@T["Sanitize Html"]</label>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPartSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPartSettings.Edit"
|
||||||
|
msgid "Sanitize Html"
|
||||||
|
msgstr "تطهير الـ Html"
|
||||||
|
|
||||||
|
#. @T["Whether the Html is sanitized to prevent custom scripts."]
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPartSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPartSettings.Edit"
|
||||||
|
msgid "Whether the Html is sanitized to prevent custom scripts."
|
||||||
|
msgstr "ما إذا كان Html قد تم تطهيره لمنع السكربتات المخصصة."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/core/Sanitizer" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPartSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPartSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="InsertMediaWithUrl">@T["Insert Media with url"]</label>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPartTrumbowygSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPartTrumbowygSettings.Edit"
|
||||||
|
msgid "Insert Media with url"
|
||||||
|
msgstr "ادرج وسائط متعددة مع الرابط"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether the url is used when selected from Insert Media (By default, the Shortcode is inserted)."]</span>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPartTrumbowygSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPartTrumbowygSettings.Edit"
|
||||||
|
msgid "Whether the url is used when selected from Insert Media (By default, the Shortcode is inserted)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Options">@T["Enter the editor options"]</label>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPartTrumbowygSettings.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPartTrumbowygSettings.Edit"
|
||||||
|
msgid "Enter the editor options"
|
||||||
|
msgstr "ادخل خيارات المحرر"
|
||||||
|
|
||||||
|
#. <span class="hint"><a href="https://alex-d.github.io/Trumbowyg/documentation/#button-pane" target="_blank">@T["Documentation for options"]</a></span>
|
||||||
|
#: OrchardCore.Html\Views\HtmlBodyPartTrumbowygSettings.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Html.Views.HtmlBodyPartTrumbowygSettings.Edit"
|
||||||
|
msgid "Documentation for options"
|
||||||
|
msgstr "توثيق الخيارات"
|
||||||
|
|
||||||
|
#. <h5 class="modal-title">@T["Select Media"]</h5>
|
||||||
|
#: OrchardCore.Html\Views\Media-HtmlBodyPart.Modal.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Html.Views.Media-HtmlBodyPart.Modal"
|
||||||
|
msgid "Select Media"
|
||||||
|
msgstr "إختر وسائط"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-primary" id="mediaBodySelectButton">@T["OK"]</button>
|
||||||
|
#: OrchardCore.Html\Views\Media-HtmlBodyPart.Modal.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Html.Views.Media-HtmlBodyPart.Modal"
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "موافق"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.Html\Views\Media-HtmlBodyPart.Modal.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Html.Views.Media-HtmlBodyPart.Modal"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
112
src/Twain.Web/Localization/ar/OrchardCore.Https.po
Normal file
112
src/Twain.Web/Localization/ar/OrchardCore.Https.po
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Https.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 756\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. .Add(S["Security"], security => security
|
||||||
|
#: OrchardCore.Https\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Https.AdminMenu"
|
||||||
|
msgid "Security"
|
||||||
|
msgstr "الأمان"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Https\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Https.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "إعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["HTTPS"], S["HTTPS"].PrefixPosition(), entry => entry
|
||||||
|
#. .Add(S["HTTPS"], S["HTTPS"].PrefixPosition(), entry => entry
|
||||||
|
#: OrchardCore.Https\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.Https\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Https.AdminMenu"
|
||||||
|
msgid "HTTPS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<HttpsSettings, DeploymentStartup>(S => S["Https settings"], S => S["Exports the Https settings."]);
|
||||||
|
#: OrchardCore.Https\Startup.cs:70
|
||||||
|
msgctxt "OrchardCore.Https.DeploymentStartup"
|
||||||
|
msgid "Https settings"
|
||||||
|
msgstr "إعدادات الـ Https"
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<HttpsSettings, DeploymentStartup>(S => S["Https settings"], S => S["Exports the Https settings."]);
|
||||||
|
#: OrchardCore.Https\Startup.cs:70
|
||||||
|
msgctxt "OrchardCore.Https.DeploymentStartup"
|
||||||
|
msgid "Exports the Https settings."
|
||||||
|
msgstr "تصدير إعدادات الـ Https."
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["For safety, Enabling require HTTPS over HTTP has been prevented."]);
|
||||||
|
#: OrchardCore.Https\Drivers\HttpsSettingsDisplayDriver.cs:55
|
||||||
|
msgctxt "OrchardCore.Https.Drivers.HttpsSettingsDisplayDriver"
|
||||||
|
msgid "For safety, Enabling require HTTPS over HTTP has been prevented."
|
||||||
|
msgstr "للسلامة، منع تمكين الـ HTTPS عبر الـ HTTP."
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The current tenant will be reloaded when the settings are saved."]</p>
|
||||||
|
#: OrchardCore.Https\Views\HttpsSettings.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Https.Views.HttpsSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "سيتم إعادة تحميل الـ tenant عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="RequireHttps">@T["Require HTTPS"]</label>
|
||||||
|
#: OrchardCore.Https\Views\HttpsSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Https.Views.HttpsSettings.Edit"
|
||||||
|
msgid "Require HTTPS"
|
||||||
|
msgstr "تتطلب HTTPS"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Require HTTPS for all requests"]</span>
|
||||||
|
#: OrchardCore.Https\Views\HttpsSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Https.Views.HttpsSettings.Edit"
|
||||||
|
msgid "Require HTTPS for all requests"
|
||||||
|
msgstr "مطلوب HTTPS لكل الطلبات"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="EnableStrictTransportSecurity">@T["Enable HSTS"]</label>
|
||||||
|
#: OrchardCore.Https\Views\HttpsSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Https.Views.HttpsSettings.Edit"
|
||||||
|
msgid "Enable HSTS"
|
||||||
|
msgstr "تمكين HSTS"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Indicates to browsers that connecting without transport security (e.g SSL or TLS) isn't allowed."]</span>
|
||||||
|
#: OrchardCore.Https\Views\HttpsSettings.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Https.Views.HttpsSettings.Edit"
|
||||||
|
msgid "Indicates to browsers that connecting without transport security (e.g SSL or TLS) isn't allowed."
|
||||||
|
msgstr "إشعار المتصفحات بأن الربط بدون أمان (مثل SSL أو TLS) غير مسموح."
|
||||||
|
|
||||||
|
#. <div class="alert alert-danger">@T["This option should be enabled with caution, as it may prevent users from connecting if HTTPS was later disabled or wasn't available."]</div>
|
||||||
|
#: OrchardCore.Https\Views\HttpsSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Https.Views.HttpsSettings.Edit"
|
||||||
|
msgid "This option should be enabled with caution, as it may prevent users from connecting if HTTPS was later disabled or wasn't available."
|
||||||
|
msgstr "هذا الخيار يجب تفعيله بحذر, كما أنه قد يمنع المستخدمين من الإتصال إذا تم تعطيل الـ HTTPS في وقت لاحق أو لم يكن متوفر."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="RequireHttpsPermanent">@T["Require HTTPS Permanent"]</label>
|
||||||
|
#: OrchardCore.Https\Views\HttpsSettings.Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Https.Views.HttpsSettings.Edit"
|
||||||
|
msgid "Require HTTPS Permanent"
|
||||||
|
msgstr "تتطلب HTTPS دائماً"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Specifies whether a permanent redirect, 308 Moved Permanently, should be used instead of a temporary redirect, 307 Found, when redirecting to HTTPS"]</span>
|
||||||
|
#: OrchardCore.Https\Views\HttpsSettings.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Https.Views.HttpsSettings.Edit"
|
||||||
|
msgid "Specifies whether a permanent redirect, 308 Moved Permanently, should be used instead of a temporary redirect, 307 Found, when redirecting to HTTPS"
|
||||||
|
msgstr "تحديد ما إذا كان إعادة التوجيه, 308 نقل بشكل دائم, يجب إستخدامه عوضاً عن إعادة التوجيه المؤقت, 307 موجود, عندما يتم إعادة التوجيه إلى الـ HTTPS"
|
||||||
|
|
||||||
|
#. <label asp-for="SslPort">@T["SSL Port"]</label>
|
||||||
|
#: OrchardCore.Https\Views\HttpsSettings.Edit.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Https.Views.HttpsSettings.Edit"
|
||||||
|
msgid "SSL Port"
|
||||||
|
msgstr "منفذ SSL"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The SSL Port Number, leave empty to let the middleware try to determinate it."]</span>
|
||||||
|
#: OrchardCore.Https\Views\HttpsSettings.Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Https.Views.HttpsSettings.Edit"
|
||||||
|
msgid "The SSL Port Number, leave empty to let the middleware try to determinate it."
|
||||||
|
msgstr "رقم منفذ الـ SSL، اتركه فارغاً للسماح للـ middleware بتحديده."
|
||||||
|
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Infrastructure.Abstractions.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 758\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-03-05 10:47\n"
|
||||||
|
|
||||||
|
#. throw new InvalidOperationException(S["Switch \"{0}\" was not found", commandSwitch.Key]);
|
||||||
|
#: OrchardCore.Infrastructure.Abstractions\Commands\DefaultCommandHandler.cs:45
|
||||||
|
msgctxt "OrchardCore.Environment.Commands.DefaultCommandHandler"
|
||||||
|
msgid "Switch \"{0}\" was not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. throw new InvalidOperationException(S["A property \"{0}\" exists but is not decorated with \"{1}\"", commandSwitch.Key, typeof(OrchardSwitchAttribute).Name]);
|
||||||
|
#: OrchardCore.Infrastructure.Abstractions\Commands\DefaultCommandHandler.cs:49
|
||||||
|
msgctxt "OrchardCore.Environment.Commands.DefaultCommandHandler"
|
||||||
|
msgid "A property \"{0}\" exists but is not decorated with \"{1}\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. string message = S["Error converting value \"{0}\" to \"{1}\" for switch \"{2}\"",
|
||||||
|
#: OrchardCore.Infrastructure.Abstractions\Commands\DefaultCommandHandler.cs:61
|
||||||
|
msgctxt "OrchardCore.Environment.Commands.DefaultCommandHandler"
|
||||||
|
msgid "Error converting value \"{0}\" to \"{1}\" for switch \"{2}\""
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. throw new InvalidOperationException(S["Command arguments \"{0}\" don't match command definition", string.Join(" ", arguments)]);
|
||||||
|
#: OrchardCore.Infrastructure.Abstractions\Commands\DefaultCommandHandler.cs:77
|
||||||
|
msgctxt "OrchardCore.Environment.Commands.DefaultCommandHandler"
|
||||||
|
msgid "Command arguments \"{0}\" don't match command definition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. throw new InvalidOperationException(S["Method \"{0}\" does not support switch \"{1}\".", methodInfo.Name, commandSwitch]);
|
||||||
|
#: OrchardCore.Infrastructure.Abstractions\Commands\DefaultCommandHandler.cs:176
|
||||||
|
msgctxt "OrchardCore.Environment.Commands.DefaultCommandHandler"
|
||||||
|
msgid "Method \"{0}\" does not support switch \"{1}\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
44
src/Twain.Web/Localization/ar/OrchardCore.Infrastructure.po
Normal file
44
src/Twain.Web/Localization/ar/OrchardCore.Infrastructure.po
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Infrastructure.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 760\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 19:01\n"
|
||||||
|
|
||||||
|
#. throw new Exception(S["Multiple commands found matching arguments \"{0}\". Commands available: {1}.",
|
||||||
|
#: OrchardCore.Infrastructure\Commands\DefaultCommandManager.cs:38
|
||||||
|
msgctxt "OrchardCore.Environment.Commands.DefaultCommandManager"
|
||||||
|
msgid "Multiple commands found matching arguments \"{0}\". Commands available: {1}."
|
||||||
|
msgstr "توجد عة أوامر تطابق المتغييرات {0}. الأوامر المتاحة: {1}."
|
||||||
|
|
||||||
|
#. throw new Exception(S["No command found matching arguments \"{0}\". Commands available: {1}.",
|
||||||
|
#: OrchardCore.Infrastructure\Commands\DefaultCommandManager.cs:41
|
||||||
|
msgctxt "OrchardCore.Environment.Commands.DefaultCommandManager"
|
||||||
|
msgid "No command found matching arguments \"{0}\". Commands available: {1}."
|
||||||
|
msgstr "لا يوجد أمر يطابق المتغييرات {0}. الأوامر المتاحة: {1}."
|
||||||
|
|
||||||
|
#. await Context.Output.WriteLineAsync(S["List of available commands:"]);
|
||||||
|
#: OrchardCore.Infrastructure\Commands\Builtin\HelpCommand.cs:25
|
||||||
|
msgctxt "OrchardCore.Environment.Commands.Builtin.HelpCommand"
|
||||||
|
msgid "List of available commands:"
|
||||||
|
msgstr "قائمة بالأوامر المتاحة:"
|
||||||
|
|
||||||
|
#. await Context.Output.WriteLineAsync(S["Command {0} doesn't exist", command]);
|
||||||
|
#: OrchardCore.Infrastructure\Commands\Builtin\HelpCommand.cs:49
|
||||||
|
msgctxt "OrchardCore.Environment.Commands.Builtin.HelpCommand"
|
||||||
|
msgid "Command {0} doesn't exist"
|
||||||
|
msgstr "الأمر {0} غير موجود"
|
||||||
|
|
||||||
|
#. return S["{0}.{1}: no help text", descriptor.MethodInfo.DeclaringType?.FullName, descriptor.MethodInfo.Name];
|
||||||
|
#: OrchardCore.Infrastructure\Commands\Builtin\HelpCommand.cs:70
|
||||||
|
msgctxt "OrchardCore.Environment.Commands.Builtin.HelpCommand"
|
||||||
|
msgid "{0}.{1}: no help text"
|
||||||
|
msgstr "{0}.{1}: لا يوجد نص مساعده"
|
||||||
|
|
||||||
348
src/Twain.Web/Localization/ar/OrchardCore.Layers.po
Normal file
348
src/Twain.Web/Localization/ar/OrchardCore.Layers.po
Normal file
@@ -0,0 +1,348 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Layers.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 762\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:14\n"
|
||||||
|
|
||||||
|
#. .Add(S["Design"], design => design
|
||||||
|
#: OrchardCore.Layers\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Layers.AdminMenu"
|
||||||
|
msgid "Design"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Layers\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Layers.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Zones"], S["Zones"].PrefixPosition(), zones => zones
|
||||||
|
#. .Add(S["Zones"], S["Zones"].PrefixPosition(), zones => zones
|
||||||
|
#: OrchardCore.Layers\AdminMenu.cs:28
|
||||||
|
#: OrchardCore.Layers\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.Layers.AdminMenu"
|
||||||
|
msgid "Zones"
|
||||||
|
msgstr "المناطق"
|
||||||
|
|
||||||
|
#. .Add(S["Widgets"], S["Widgets"].PrefixPosition(), widgets => widgets
|
||||||
|
#. .Add(S["Widgets"], S["Widgets"].PrefixPosition(), widgets => widgets
|
||||||
|
#: OrchardCore.Layers\AdminMenu.cs:33
|
||||||
|
#: OrchardCore.Layers\AdminMenu.cs:33
|
||||||
|
msgctxt "OrchardCore.Layers.AdminMenu"
|
||||||
|
msgid "Widgets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["The Widget content item with id {0} has no matching {1} content type definition.", widget.ContentItem.ContentItemId, widget.ContentItem.ContentType]);
|
||||||
|
#: OrchardCore.Layers\Controllers\AdminController.cs:120
|
||||||
|
msgctxt "OrchardCore.Layers.Controllers.AdminController"
|
||||||
|
msgid "The Widget content item with id {0} has no matching {1} content type definition."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Layer deleted successfully."]);
|
||||||
|
#: OrchardCore.Layers\Controllers\AdminController.cs:276
|
||||||
|
msgctxt "OrchardCore.Layers.Controllers.AdminController"
|
||||||
|
msgid "Layer deleted successfully."
|
||||||
|
msgstr "تم حذف الطبقة بنجاح."
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["The layer couldn't be deleted: you must remove any associated widgets first."]);
|
||||||
|
#: OrchardCore.Layers\Controllers\AdminController.cs:280
|
||||||
|
msgctxt "OrchardCore.Layers.Controllers.AdminController"
|
||||||
|
msgid "The layer couldn't be deleted: you must remove any associated widgets first."
|
||||||
|
msgstr "لا يمكن حذف الطبقة: عليك أولاً إزالة أي الحاجيات المرتبطة بها."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LayerEditViewModel.Name), S["The layer name is required."]);
|
||||||
|
#: OrchardCore.Layers\Controllers\AdminController.cs:356
|
||||||
|
msgctxt "OrchardCore.Layers.Controllers.AdminController"
|
||||||
|
msgid "The layer name is required."
|
||||||
|
msgstr "إسم الطبقة مطلوب."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LayerEditViewModel.Name), S["The layer name already exists."]);
|
||||||
|
#: OrchardCore.Layers\Controllers\AdminController.cs:360
|
||||||
|
msgctxt "OrchardCore.Layers.Controllers.AdminController"
|
||||||
|
msgid "The layer name already exists."
|
||||||
|
msgstr "إسم الطبقة موجود مسبقاً."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Condition added successfully."]);
|
||||||
|
#: OrchardCore.Layers\Controllers\LayerRuleController.cs:130
|
||||||
|
msgctxt "OrchardCore.Layers.Controllers.LayerRuleController"
|
||||||
|
msgid "Condition added successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Condition updated successfully."]);
|
||||||
|
#: OrchardCore.Layers\Controllers\LayerRuleController.cs:199
|
||||||
|
msgctxt "OrchardCore.Layers.Controllers.LayerRuleController"
|
||||||
|
msgid "Condition updated successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["The condition has validation errors."]);
|
||||||
|
#: OrchardCore.Layers\Controllers\LayerRuleController.cs:203
|
||||||
|
msgctxt "OrchardCore.Layers.Controllers.LayerRuleController"
|
||||||
|
msgid "The condition has validation errors."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Condition deleted successfully."]);
|
||||||
|
#: OrchardCore.Layers\Controllers\LayerRuleController.cs:237
|
||||||
|
msgctxt "OrchardCore.Layers.Controllers.LayerRuleController"
|
||||||
|
msgid "Condition deleted successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(Prefix, "LayerMetadata.Zone", S["Zone is missing"]);
|
||||||
|
#: OrchardCore.Layers\Drivers\LayerMetadataWelder.cs:77
|
||||||
|
msgctxt "OrchardCore.Layers.Drivers.LayerMetadataWelder"
|
||||||
|
msgid "Zone is missing"
|
||||||
|
msgstr "المنطقة مفقوده"
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(Prefix, "LayerMetadata.Layer", S["Layer is missing"]);
|
||||||
|
#: OrchardCore.Layers\Drivers\LayerMetadataWelder.cs:82
|
||||||
|
msgctxt "OrchardCore.Layers.Drivers.LayerMetadataWelder"
|
||||||
|
msgid "Layer is missing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Site layers define the rules and zone placement for widgets."],
|
||||||
|
#: OrchardCore.Layers\GraphQL\SiteLayersQuery.cs:31
|
||||||
|
msgctxt "OrchardCore.Layers.GraphQL.SiteLayersQuery"
|
||||||
|
msgid "Site layers define the rules and zone placement for widgets."
|
||||||
|
msgstr "طبقات الموقع تعرف القواعد والمناطق المستبدله للـ widgets."
|
||||||
|
|
||||||
|
#. <label asp-for="Title">@T["Title"]</label>
|
||||||
|
#: OrchardCore.Layers\Views\LayerMetadata.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerMetadata.Edit"
|
||||||
|
msgid "Title"
|
||||||
|
msgstr "العنوان"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="LayerMetadata.RenderTitle">@T["Render title"]</label>
|
||||||
|
#: OrchardCore.Layers\Views\LayerMetadata.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerMetadata.Edit"
|
||||||
|
msgid "Render title"
|
||||||
|
msgstr "رسم العنوان"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["If checked, the title will be rendered with the widget."]</span>
|
||||||
|
#: OrchardCore.Layers\Views\LayerMetadata.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerMetadata.Edit"
|
||||||
|
msgid "If checked, the title will be rendered with the widget."
|
||||||
|
msgstr "اذا مختار, العنوان سوف يتم عرضه في الـ widget."
|
||||||
|
|
||||||
|
#. <label asp-for="LayerMetadata.Layer">@T["The layer the widget should be associated with."]</label>
|
||||||
|
#: OrchardCore.Layers\Views\LayerMetadata.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerMetadata.Edit"
|
||||||
|
msgid "The layer the widget should be associated with."
|
||||||
|
msgstr "الطبقة المرتبطة بالـ widget."
|
||||||
|
|
||||||
|
#. <label asp-for="Zones">@T["Available zones for Layers"]</label>
|
||||||
|
#: OrchardCore.Layers\Views\LayerSettings.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerSettings.Edit"
|
||||||
|
msgid "Available zones for Layers"
|
||||||
|
msgstr "المناطق المتاحة للطبقات"
|
||||||
|
|
||||||
|
#. @T["A comma separated list of values, representing the available zones for <a href=\"{0}\">widgets</a>. Note that you'll need to render these zones in the layout template, as they do not automatically render.",
|
||||||
|
#: OrchardCore.Layers\Views\LayerSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerSettings.Edit"
|
||||||
|
msgid "A comma separated list of values, representing the available zones for <a href=\"{0}\">widgets</a>. Note that you'll need to render these zones in the layout template, as they do not automatically render."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Layer"])</h1></zone>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Create.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Create"
|
||||||
|
msgid "Create Layer"
|
||||||
|
msgstr "إنشاء طبقة"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Create.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Create"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <label asp-for="Description">@T["Description"]</label>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Create.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Create"
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "الوصف"
|
||||||
|
|
||||||
|
#. <input class="button" type="submit" value="@T["Create"]" />
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Create.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Create"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "إنشاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Layer - {0}", Model.Name])</h1></zone>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Edit"
|
||||||
|
msgid "Edit Layer - {0}"
|
||||||
|
msgstr "تحرير طبقة - {0}"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <label asp-for="Description">@T["Description"]</label>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Edit"
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "الوصف"
|
||||||
|
|
||||||
|
#. <div class="d-none" id="ruleOrderErrorMessage" data-message="@T["Error updating rule order"]"></div>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Edit.cshtml:31
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Edit"
|
||||||
|
msgid "Error updating rule order"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="button mt-3" type="submit" value="@T["Save"]" />
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Widgets and Layers"])</h1></zone>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Edit Widgets and Layers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Widget successfully moved. <a href=\"javascript:console.log('submit');$('#undo-form').submit();\"><strong>Undo</strong></a>."]
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Widget successfully moved. <a href=\"javascript:console.log('submit');$('#undo-form').submit();\"><strong>Undo</strong></a>."
|
||||||
|
msgstr "تم نقل الـ widgets بنجاح. <a href=\"javascript:console.log('submit');$('#undo-form').submit();\"><strong>تراجع</strong></a>."
|
||||||
|
|
||||||
|
#. <h3>@T["Zones"]</h3>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Zones"
|
||||||
|
msgstr "المناطق"
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["Please <a href=\"{0}\">define the available zones</a> before adding Widgets", Url.Action("Index", "Admin", new { area = "OrchardCore.Settings", groupId = LayerSiteSettingsDisplayDriver.GroupId })]</p>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Please <a href=\"{0}\">define the available zones</a> before adding Widgets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Add Widget"]
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:79
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Add Widget"
|
||||||
|
msgstr "إضافة Widget"
|
||||||
|
|
||||||
|
#. <span>@T["No widgets found."]</span>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:100
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "No widgets found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["No layers found."]</span>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:105
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "No layers found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h3>@T["Layers"]</h3>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:114
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Layers"
|
||||||
|
msgstr "الطبقات"
|
||||||
|
|
||||||
|
#. @T["Select a layer to reveal its associated widgets."]
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:117
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Select a layer to reveal its associated widgets."
|
||||||
|
msgstr "اختر الطبقة للكشف عن الـ widgets المرتبطة بها."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Layers/#rules" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:118
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-primary btn-sm" href="@Url.Action("Edit", "Admin", new { area = "OrchardCore.Layers", name = layer.Name })">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:133
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. <a class="btn btn-danger btn-sm" href="@Url.Action("Delete", "Admin", new { area = "OrchardCore.Layers", name = layer.Name })" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:134
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["Please <a href=\"{0}\">create a layer</a> before adding Widgets", Url.Action("Create", "Admin", new { area = "OrchardCore.Layers" })]</p>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:147
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Please <a href=\"{0}\">create a layer</a> before adding Widgets"
|
||||||
|
msgstr "الرجاء <a href=\"{0}\">إنشاء طبقة</a> قبل إضافة الـ Widgets"
|
||||||
|
|
||||||
|
#. <a class="button btn-sm" href="@Url.Action("Create", "Admin", new { area = "OrchardCore.Layers" })">@T["Add"]</a>
|
||||||
|
#: OrchardCore.Layers\Views\Admin\Index.cshtml:150
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Admin.Index"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "إضافة"
|
||||||
|
|
||||||
|
#. <h5>@T["All Layers"]</h5>
|
||||||
|
#: OrchardCore.Layers\Views\Items\AllLayersDeploymentStep.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Items.AllLayersDeploymentStep.Edit"
|
||||||
|
msgid "All Layers"
|
||||||
|
msgstr "كل الطبقات"
|
||||||
|
|
||||||
|
#. <h5>@T["All Layers"]</h5>
|
||||||
|
#: OrchardCore.Layers\Views\Items\AllLayersDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Items.AllLayersDeploymentStep.Summary"
|
||||||
|
msgid "All Layers"
|
||||||
|
msgstr "كل الطبقات"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds all layers to the plan."]</span>
|
||||||
|
#: OrchardCore.Layers\Views\Items\AllLayersDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Items.AllLayersDeploymentStep.Summary"
|
||||||
|
msgid "Adds all layers to the plan."
|
||||||
|
msgstr "إضافة كل الطبقات إلى الخطة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["All Layers"]</h4>
|
||||||
|
#: OrchardCore.Layers\Views\Items\AllLayersDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Items.AllLayersDeploymentStep.Thumbnail"
|
||||||
|
msgid "All Layers"
|
||||||
|
msgstr "كل الطبقات"
|
||||||
|
|
||||||
|
#. <p>@T["Exports all layers."]</p>
|
||||||
|
#: OrchardCore.Layers\Views\Items\AllLayersDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Layers.Views.Items.AllLayersDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports all layers."
|
||||||
|
msgstr "تصدير كل الطبقات."
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Rule"])</h1></zone>
|
||||||
|
#: OrchardCore.Layers\Views\LayerRule\Create.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerRule.Create"
|
||||||
|
msgid "Create Rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.Layers\Views\LayerRule\Create.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerRule.Create"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Edit" asp-route-controller="Admin" asp-route-name="@Model.Name">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Layers\Views\LayerRule\Create.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerRule.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Rule"])</h1></zone>
|
||||||
|
#: OrchardCore.Layers\Views\LayerRule\Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerRule.Edit"
|
||||||
|
msgid "Edit Rule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Layers\Views\LayerRule\Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Layers.Views.LayerRule.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
38
src/Twain.Web/Localization/ar/OrchardCore.Liquid.po
Normal file
38
src/Twain.Web/Localization/ar/OrchardCore.Liquid.po
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Liquid.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 764\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 19:01\n"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(viewModel.Liquid), S["The Liquid Body doesn't contain a valid Liquid expression. Details: {0}", string.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.Liquid\Drivers\LiquidPartDisplayDriver.cs:46
|
||||||
|
msgctxt "OrchardCore.Liquid.Drivers.LiquidPartDisplayDriver"
|
||||||
|
msgid "The Liquid Body doesn't contain a valid Liquid expression. Details: {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Liquid">@T["Body"]</label>
|
||||||
|
#: OrchardCore.Liquid\Views\LiquidPart.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Liquid.Views.LiquidPart.Edit"
|
||||||
|
msgid "Body"
|
||||||
|
msgstr "المحتوى"
|
||||||
|
|
||||||
|
#. @T["The body of the content item, in Liquid format."]
|
||||||
|
#: OrchardCore.Liquid\Views\LiquidPart.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Liquid.Views.LiquidPart.Edit"
|
||||||
|
msgid "The body of the content item, in Liquid format."
|
||||||
|
msgstr "محتوى العنصر، على تنسيق Liquid."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Liquid" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Liquid\Views\LiquidPart.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Liquid.Views.LiquidPart.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
270
src/Twain.Web/Localization/ar/OrchardCore.Lists.po
Normal file
270
src/Twain.Web/Localization/ar/OrchardCore.Lists.po
Normal file
@@ -0,0 +1,270 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Lists.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 766\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:14\n"
|
||||||
|
|
||||||
|
#. Description = S["the list part of the content item"];
|
||||||
|
#: OrchardCore.Lists\GraphQL\ContainedInputObjectType.cs:13
|
||||||
|
msgctxt "OrchardCore.Lists.GraphQL.ContainedInputObjectType"
|
||||||
|
msgid "the list part of the content item"
|
||||||
|
msgstr "جزء القائمة الخاص بعنصر المحتوى"
|
||||||
|
|
||||||
|
#. AddScalarFilterFields<IdGraphType>("listContentItemId", S["the content item id of the parent list of the content item to filter"]);
|
||||||
|
#: OrchardCore.Lists\GraphQL\ContainedInputObjectType.cs:15
|
||||||
|
msgctxt "OrchardCore.Lists.GraphQL.ContainedInputObjectType"
|
||||||
|
msgid "the content item id of the parent list of the content item to filter"
|
||||||
|
msgstr "التصفية برقم معرف (ID) عنصر المحتوى بالقائمة الأصل"
|
||||||
|
|
||||||
|
#. Description = S["Represents a link to the parent content item, and the order that content item is represented."];
|
||||||
|
#: OrchardCore.Lists\GraphQL\ContainedQueryObjectType.cs:12
|
||||||
|
msgctxt "OrchardCore.Lists.GraphQL.ContainedQueryObjectType"
|
||||||
|
msgid "Represents a link to the parent content item, and the order that content item is represented."
|
||||||
|
msgstr "عرض الرابط لعنصر المحتوى الأصل، والترتيب التسلسلي الخاص به."
|
||||||
|
|
||||||
|
#. Description = S["Represents a collection of content items."];
|
||||||
|
#: OrchardCore.Lists\GraphQL\ListQueryObjectType.cs:25
|
||||||
|
msgctxt "OrchardCore.Lists.GraphQL.ListQueryObjectType"
|
||||||
|
msgid "Represents a collection of content items."
|
||||||
|
msgstr "عرض تشكيلة من عناصر المحتوى."
|
||||||
|
|
||||||
|
#. throw new Exception(S["The specified Blog Post doesn't exist anymore. Please create a new Blog Post."]);
|
||||||
|
#: OrchardCore.Lists\RemotePublishing\MetaWeblogHandler.cs:371
|
||||||
|
msgctxt "OrchardCore.Lists.RemotePublishing.MetaWeblogHandler"
|
||||||
|
msgid "The specified Blog Post doesn't exist anymore. Please create a new Blog Post."
|
||||||
|
msgstr "التدوينة المحددة عير موجودة."
|
||||||
|
|
||||||
|
#. throw new InvalidOperationException(S["Not authorized to delete this content"].Value);
|
||||||
|
#. throw new InvalidOperationException(S["Not authorized to delete this content"].Value);
|
||||||
|
#: OrchardCore.Lists\RemotePublishing\MetaWeblogHandler.cs:431
|
||||||
|
#: OrchardCore.Lists\RemotePublishing\MetaWeblogHandler.cs:498
|
||||||
|
msgctxt "OrchardCore.Lists.RemotePublishing.MetaWeblogHandler"
|
||||||
|
msgid "Not authorized to delete this content"
|
||||||
|
msgstr "غير مصرح لك بحذف هذا المحتوى"
|
||||||
|
|
||||||
|
#. throw new InvalidOperationException(S["The username or e-mail or password provided is incorrect."].Value);
|
||||||
|
#: OrchardCore.Lists\RemotePublishing\MetaWeblogHandler.cs:447
|
||||||
|
msgctxt "OrchardCore.Lists.RemotePublishing.MetaWeblogHandler"
|
||||||
|
msgid "The username or e-mail or password provided is incorrect."
|
||||||
|
msgstr "اسم المستخدم أو البريد الإلكتروني أو كلمة المرور غير صحيحة."
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(nameof(model.ContainedContentTypes), S["At least one content type must be selected."]);
|
||||||
|
#: OrchardCore.Lists\Settings\ListPartSettingsDisplayDriver.cs:58
|
||||||
|
msgctxt "OrchardCore.Lists.Settings.ListPartSettingsDisplayDriver"
|
||||||
|
msgid "At least one content type must be selected."
|
||||||
|
msgstr "لا بد من اختيار نوع محتوى واحد على الأقل."
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The list is empty"]</p>
|
||||||
|
#: OrchardCore.Lists\Views\ListPart.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPart"
|
||||||
|
msgid "The list is empty"
|
||||||
|
msgstr "القائمة فارغه"
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentDisplayMode)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Lists\Views\ListPart.DisplayOption.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPart.DisplayOption"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="EditTypePart" asp-controller="Admin" asp-route-area="OrchardCore.ContentTypes" asp-route-id="@Model.ListPart.ContentItem.ContentType" asp-route-name="ListPart">@T["Please specify at least one contained content type."]</a>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:48
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "Please specify at least one contained content type."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <i class="fa fa-filter" title="@T["Filters"]" aria-hidden="true"></i>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:60
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "Filters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="dropdown-item" href="?Status=Draft">@T["Only draft items"]</a>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:64
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "Only draft items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="dropdown-item" href="?Status=Published">@T["Only published items"]</a>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:65
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "Only published items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="dropdown-item" href="?Status=Owner">@T["Owned by me"]</a>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:66
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "Owned by me"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input name="@nameof(ListPartFilterViewModel.DisplayText)" value="@Model.ListPartFilterViewModel.DisplayText" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:70
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Edit {0}", @Model.ListPart.ContentItem.DisplayText]
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "Edit {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Create {0}", contentTypeDefinition.DisplayName]
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:81
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "Create {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Create"]
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:87
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div id="update-order-error-message" class="d-none" data-message="@T["There was an error when updating the order of the items."]" />
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:128
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "There was an error when updating the order of the items."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The list is empty."]</p>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartDetailAdmin.cshtml:133
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartDetailAdmin"
|
||||||
|
msgid "The list is empty."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="FeedProxyUrl">@T["Feed proxy Url"]</label>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartFeed.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartFeed.Edit"
|
||||||
|
msgid "Feed proxy Url"
|
||||||
|
msgstr "رابط التغذية الخاص بالوكيل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Provide a custom public url which will be used to proxy the local rss feed."]</span>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartFeed.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartFeed.Edit"
|
||||||
|
msgid "Provide a custom public url which will be used to proxy the local rss feed."
|
||||||
|
msgstr "قم بتوفير عنوان مخصص عام ليستخدم كتغذية للـ rss."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The current feed is available at <a href=\"{0}\" target=\"_blank\">{0}</a>.", Url.Action("Index", "Feed", new { area = "OrchardCore.Feeds", ContentItemId = Model.ContentItem.ContentItemId }, Context.Request.Scheme)]</span>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartFeed.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartFeed.Edit"
|
||||||
|
msgid "The current feed is available at <a href=\"{0}\" target=\"_blank\">{0}</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="FeedItemsCount">@T["Feed items count"]</label>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartFeed.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartFeed.Edit"
|
||||||
|
msgid "Feed items count"
|
||||||
|
msgstr "عدد عناصر التغذية"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The number of elements to display in the feed."]</span>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartFeed.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartFeed.Edit"
|
||||||
|
msgid "The number of elements to display in the feed."
|
||||||
|
msgstr "عدد العناصر التي سيتم عرضها في التغذية."
|
||||||
|
|
||||||
|
#. <label asp-for="PageSize">@T["Page Size"]</label>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartSettings.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartSettings.Edit"
|
||||||
|
msgid "Page Size"
|
||||||
|
msgstr "حجم الصفحة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The number of items to display per page."]</span>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartSettings.Edit"
|
||||||
|
msgid "The number of items to display per page."
|
||||||
|
msgstr "عدد العناصر التي سيتم عرضها في كل صفحة."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="EnableOrdering">@T["Enable Ordering"]</label>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartSettings.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartSettings.Edit"
|
||||||
|
msgid "Enable Ordering"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check this option to enable manual ordering of items."]</span>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartSettings.Edit"
|
||||||
|
msgid "Check this option to enable manual ordering of items."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="ContainedContentTypes">@T["Contained Content Types"]</label>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartSettings.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartSettings.Edit"
|
||||||
|
msgid "Contained Content Types"
|
||||||
|
msgstr "أنواع محتوى ضمنية"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The content types that this list can contain, e.g. Blog Post for a Blog."]</span>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartSettings.Edit"
|
||||||
|
msgid "The content types that this list can contain, e.g. Blog Post for a Blog."
|
||||||
|
msgstr "أنواع المحتوى التي يمكن أن تحويها هذه القائمة، على سبيل المثال: تدوينة لمدونة."
|
||||||
|
|
||||||
|
#. <a class="btn btn-sm btn-secondary" admin-for="@Model.ContentItem">@T["List Items"]</a>
|
||||||
|
#: OrchardCore.Lists\Views\ListPartSummaryAdmin.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Lists.Views.ListPartSummaryAdmin"
|
||||||
|
msgid "List Items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Lists"]</h5>
|
||||||
|
#: OrchardCore.Lists\Views\Items\ListsAdminNode.Fields.TreeEdit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Lists.Views.Items.ListsAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Lists"
|
||||||
|
msgstr "القوائم"
|
||||||
|
|
||||||
|
#. <label asp-for="IconForContentItems">@T["Icon for the content items"]</label>
|
||||||
|
#: OrchardCore.Lists\Views\Items\ListsAdminNode.Fields.TreeEdit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Lists.Views.Items.ListsAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Icon for the content items"
|
||||||
|
msgstr "أيقونة لعناصر المحتوى"
|
||||||
|
|
||||||
|
#. @T["Icon"]
|
||||||
|
#. @T["Icon"]
|
||||||
|
#: OrchardCore.Lists\Views\Items\ListsAdminNode.Fields.TreeEdit.cshtml:32
|
||||||
|
#: OrchardCore.Lists\Views\Items\ListsAdminNode.Fields.TreeEdit.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Lists.Views.Items.ListsAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Icon"
|
||||||
|
msgstr "أيقونة"
|
||||||
|
|
||||||
|
#. @T["Add parent menu item"]
|
||||||
|
#: OrchardCore.Lists\Views\Items\ListsAdminNode.Fields.TreeEdit.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Lists.Views.Items.ListsAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Add parent menu item"
|
||||||
|
msgstr "أضف عنصر أصل للقائمة"
|
||||||
|
|
||||||
|
#. <label asp-for="IconForParentLink">@T["Icon for the parent menu item"]</label>
|
||||||
|
#: OrchardCore.Lists\Views\Items\ListsAdminNode.Fields.TreeEdit.cshtml:58
|
||||||
|
msgctxt "OrchardCore.Lists.Views.Items.ListsAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Icon for the parent menu item"
|
||||||
|
msgstr "أيقونة للعنصر الأصل بالقائمة"
|
||||||
|
|
||||||
|
#. <h5 class="modal-title">@T["Pick an icon"]</h5>
|
||||||
|
#: OrchardCore.Lists\Views\Items\ListsAdminNode.Fields.TreeEdit.cshtml:95
|
||||||
|
msgctxt "OrchardCore.Lists.Views.Items.ListsAdminNode.Fields.TreeEdit"
|
||||||
|
msgid "Pick an icon"
|
||||||
|
msgstr "اختر أيقونة"
|
||||||
|
|
||||||
|
#. <span class="text-muted dashed">@T["Lists"]</span>
|
||||||
|
#: OrchardCore.Lists\Views\Items\ListsAdminNode.Fields.TreeSummary.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Lists.Views.Items.ListsAdminNode.Fields.TreeSummary"
|
||||||
|
msgid "Lists"
|
||||||
|
msgstr "القوائم"
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Lists"]</h4>
|
||||||
|
#: OrchardCore.Lists\Views\Items\ListsAdminNode.Fields.TreeThumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Lists.Views.Items.ListsAdminNode.Fields.TreeThumbnail"
|
||||||
|
msgid "Lists"
|
||||||
|
msgstr "القوائم"
|
||||||
|
|
||||||
|
#. <p>@T["Adds links for list content items"]</p>
|
||||||
|
#: OrchardCore.Lists\Views\Items\ListsAdminNode.Fields.TreeThumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Lists.Views.Items.ListsAdminNode.Fields.TreeThumbnail"
|
||||||
|
msgid "Adds links for list content items"
|
||||||
|
msgstr "إضافة روابط لعناصر محتوى القائمة"
|
||||||
|
|
||||||
326
src/Twain.Web/Localization/ar/OrchardCore.Localization.Core.po
Normal file
326
src/Twain.Web/Localization/ar/OrchardCore.Localization.Core.po
Normal file
@@ -0,0 +1,326 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Localization.Core.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 768\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 19:07\n"
|
||||||
|
|
||||||
|
#. public string AssociatedMetadataTypeTypeDescriptorMetadataTypeContainsUnknownProperties => S["The associated metadata type for type '{0}' contains the following unknown properties or fields: {1}. Please make sure that the names of these members match the names of the properties on the main type."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:17
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The associated metadata type for type '{0}' contains the following unknown properties or fields: {1}. Please make sure that the names of these members match the names of the properties on the main type."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string AttributeStoreUnknownProperty => S["The type '{0}' does not contain a public property named '{1}'."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:19
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The type '{0}' does not contain a public property named '{1}'."
|
||||||
|
msgstr "النوع '{0}' لا يحتوي على خاصية عامة اسمها '{1}'."
|
||||||
|
|
||||||
|
#. public string CommonPropertyNotFound => S["The property {0}.{1} could not be found."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:21
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The property {0}.{1} could not be found."
|
||||||
|
msgstr "تعذر العثور على الخاصية {0}.{1}."
|
||||||
|
|
||||||
|
#. public string CompareAttributeMustMatch => S["'{0}' and '{1}' do not match."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:23
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "'{0}' and '{1}' do not match."
|
||||||
|
msgstr "'{0}' و '{1}' غير متطابقين."
|
||||||
|
|
||||||
|
#. public string CompareAttributeUnknownProperty => S["Could not find a property named {0}."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:25
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "Could not find a property named {0}."
|
||||||
|
msgstr "تعذر العثور على خاصية تسمى {0}."
|
||||||
|
|
||||||
|
#. public string CreditCardAttributeInvalid => S["The {0} field is not a valid credit card number."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:27
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The {0} field is not a valid credit card number."
|
||||||
|
msgstr "الحقل {0} ليس رقم بطاقة ائتمان صالح."
|
||||||
|
|
||||||
|
#. public string CustomValidationAttributeMethodMustReturnValidationResult => S["The CustomValidationAttribute method '{0}' in type '{1}' must return System.ComponentModel.DataAnnotations.ValidationResult. Use System.ComponentModel.DataAnnotations.ValidationResult.Success to represent success."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:29
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The CustomValidationAttribute method '{0}' in type '{1}' must return System.ComponentModel.DataAnnotations.ValidationResult. Use System.ComponentModel.DataAnnotations.ValidationResult.Success to represent success."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string CustomValidationAttributeMethodNotFound => S["The CustomValidationAttribute method '{0}' does not exist in type '{1}' or is not public and static."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:31
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The CustomValidationAttribute method '{0}' does not exist in type '{1}' or is not public and static."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string CustomValidationAttributeMethodRequired => S["The CustomValidationAttribute.Method was not specified."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:33
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The CustomValidationAttribute.Method was not specified."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string CustomValidationAttributeMethodSignature => S["The CustomValidationAttribute method '{0}' in type '{1}' must match the expected signature: public static ValidationResult {0}(object value, ValidationContext context). The value can be strongly typed. The ValidationContext parameter is optional."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:35
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The CustomValidationAttribute method '{0}' in type '{1}' must match the expected signature: public static ValidationResult {0}(object value, ValidationContext context). The value can be strongly typed. The ValidationContext parameter is optional."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string CustomValidationAttributeTypeConversionFailed => S["Could not convert the value of type '{0}' to '{1}' as expected by method {2}.{3}."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:37
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "Could not convert the value of type '{0}' to '{1}' as expected by method {2}.{3}."
|
||||||
|
msgstr "تعذر تحويل قيمة النوع '{0}' إلى '{1}' كما هو متوقع بالطريقة {2}.{3}."
|
||||||
|
|
||||||
|
#. public string CustomValidationAttributeTypeMustBePublic => S["The custom validation type '{0}' must be public."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:39
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The custom validation type '{0}' must be public."
|
||||||
|
msgstr "نوع التحقق المخصص '{0}' يجب أن يكون عامًا."
|
||||||
|
|
||||||
|
#. public string CustomValidationAttributeValidationError => S["{0} is not valid."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:41
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "{0} is not valid."
|
||||||
|
msgstr "{0} غير صالح."
|
||||||
|
|
||||||
|
#. public string CustomValidationAttributeValidatorTypeRequired => S["The CustomValidationAttribute.ValidatorType was not specified."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:43
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The CustomValidationAttribute.ValidatorType was not specified."
|
||||||
|
msgstr "لم يتم تحديد CustomValidationAttribute.ValidatorType."
|
||||||
|
|
||||||
|
#. public string DataTypeAttributeEmptyDataTypeString => S["The custom DataType string cannot be null or empty."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:45
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The custom DataType string cannot be null or empty."
|
||||||
|
msgstr "لا يمكن أن يكون نص البيانات المخصص فارغاً أو فارغاً."
|
||||||
|
|
||||||
|
#. public string DisplayAttributePropertyNotSet => S["The {0} property has not been set. Use the {1} method to get the value."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:47
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The {0} property has not been set. Use the {1} method to get the value."
|
||||||
|
msgstr "لم يتم تعيين الخاصية {0}. استخدم طريقة {1} للحصول على القيمة."
|
||||||
|
|
||||||
|
#. public string EmailAddressAttributeInvalid => S["The {0} field is not a valid e-mail address."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:49
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The {0} field is not a valid e-mail address."
|
||||||
|
msgstr "'{0}' عنوان البريد الإلكتروني ليس صحيحا."
|
||||||
|
|
||||||
|
#. public string EnumDataTypeAttributeTypeCannotBeNull => S["The type provided for EnumDataTypeAttribute cannot be null."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:51
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The type provided for EnumDataTypeAttribute cannot be null."
|
||||||
|
msgstr "النوع المقدم لـ EnumDataTypeAttribute لا يمكن أن يكون فارغاً."
|
||||||
|
|
||||||
|
#. public string EnumDataTypeAttributeTypeNeedsToBeAnEnum => S["The type '{0}' needs to represent an enumeration type."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:53
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The type '{0}' needs to represent an enumeration type."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string FileExtensionsAttributeInvalid => S["The {0} field only accepts files with the following extensions: {1}."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:55
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The {0} field only accepts files with the following extensions: {1}."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string LocalizableStringLocalizationFailed => S["Cannot retrieve property '{0}' because localization failed. Type '{1}' is not public or does not contain a public static string property with the name '{2}'."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:57
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "Cannot retrieve property '{0}' because localization failed. Type '{1}' is not public or does not contain a public static string property with the name '{2}'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string MaxLengthAttributeInvalidMaxLength => S["MaxLengthAttribute must have a Length value that is greater than zero. Use MaxLength() without parameters to indicate that the string or array can have the maximum allowable length."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:59
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "MaxLengthAttribute must have a Length value that is greater than zero. Use MaxLength() without parameters to indicate that the string or array can have the maximum allowable length."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string MaxLengthAttributeValidationError => S["The field {0} must be a string or array type with a maximum length of '{1}'."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:61
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The field {0} must be a string or array type with a maximum length of '{1}'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string MetadataTypeAttributeTypeCannotBeNull => S["MetadataClassType cannot be null."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:63
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "MetadataClassType cannot be null."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string MinLengthAttributeInvalidMinLength => S["MinLengthAttribute must have a Length value that is zero or greater."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:65
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "MinLengthAttribute must have a Length value that is zero or greater."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string MinLengthAttributeValidationError => S["The field {0} must be a string or array type with a minimum length of '{1}'."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:67
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The field {0} must be a string or array type with a minimum length of '{1}'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string LengthAttributeInvalidValueType => S["The field of type {0} must be a string, array or ICollection type."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:69
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The field of type {0} must be a string, array or ICollection type."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string PhoneAttributeInvalid => S["The {0} field is not a valid phone number."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:71
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The {0} field is not a valid phone number."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string RangeAttributeArbitraryTypeNotIComparable => S["The type {0} must implement {1}."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:73
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The type {0} must implement {1}."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string RangeAttributeMinGreaterThanMax => S["The maximum value '{0}' must be greater than or equal to the minimum value '{1}'."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:75
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The maximum value '{0}' must be greater than or equal to the minimum value '{1}'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string RangeAttributeMustSetMinAndMax => S["The minimum and maximum values must be set."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:77
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The minimum and maximum values must be set."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string RangeAttributeMustSetOperandType => S["The OperandType must be set when strings are used for minimum and maximum values."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:79
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The OperandType must be set when strings are used for minimum and maximum values."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string RangeAttributeValidationError => S["The field {0} must be between {1} and {2}."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:81
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The field {0} must be between {1} and {2}."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string RegexAttributeValidationError => S["The field {0} must match the regular expression '{1}'."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:83
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The field {0} must match the regular expression '{1}'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string RegularExpressionAttributeEmptyPattern => S["The pattern must be set to a valid regular expression."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:85
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The pattern must be set to a valid regular expression."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string RequiredAttributeValidationError => S["The {0} field is required."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:87
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The {0} field is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string StringLengthAttributeInvalidMaxLength => S["The maximum length must be a nonnegative integer."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:89
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The maximum length must be a nonnegative integer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string StringLengthAttributeValidationError => S["The field {0} must be a string with a maximum length of {1}."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:91
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The field {0} must be a string with a maximum length of {1}."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string StringLengthAttributeValidationErrorIncludingMinimum => S["The field {0} must be a string with a minimum length of {2} and a maximum length of {1}."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:93
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The field {0} must be a string with a minimum length of {2} and a maximum length of {1}."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string UIHintImplementationControlParameterKeyIsNotAString => S["The key parameter at position {0} with value '{1}' is not a string. Every key control parameter must be a string."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:95
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The key parameter at position {0} with value '{1}' is not a string. Every key control parameter must be a string."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string UIHintImplementationControlParameterKeyIsNull => S["The key parameter at position {0} is null. Every key control parameter must be a string."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:97
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The key parameter at position {0} is null. Every key control parameter must be a string."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string UIHintImplementationControlParameterKeyOccursMoreThanOnce => S["The key parameter at position {0} with value '{1}' occurs more than once."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:99
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The key parameter at position {0} with value '{1}' occurs more than once."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string UIHintImplementationNeedEvenNumberOfControlParameters => S["The number of control parameters must be even."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:101
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The number of control parameters must be even."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string UrlAttributeInvalid => S["The {0} field is not a valid fully-qualified http, https, or ftp URL."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:103
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The {0} field is not a valid fully-qualified http, https, or ftp URL."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string ValidationAttributeCannotSetErrorMessageAndResource => S["Either ErrorMessageString or ErrorMessageResourceName must be set, but not both."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:105
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "Either ErrorMessageString or ErrorMessageResourceName must be set, but not both."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string ValidationAttributeIsValidNotImplemented => S["IsValid(object value) has not been implemented by this class. The preferred entry point is GetValidationResult() and classes should override IsValid(object value, ValidationContext context)."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:107
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "IsValid(object value) has not been implemented by this class. The preferred entry point is GetValidationResult() and classes should override IsValid(object value, ValidationContext context)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string ValidationAttributeNeedBothResourceTypeAndResourceName => S["Both ErrorMessageResourceType and ErrorMessageResourceName need to be set on this attribute."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:109
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "Both ErrorMessageResourceType and ErrorMessageResourceName need to be set on this attribute."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string ValidationAttributeResourcePropertyNotStringType => S["The property '{0}' on resource type '{1}' is not a string type."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:111
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The property '{0}' on resource type '{1}' is not a string type."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string ValidationAttributeResourceTypeDoesNotHaveProperty => S["The resource type '{0}' does not have an accessible static property named '{1}'."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:113
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The resource type '{0}' does not have an accessible static property named '{1}'."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string ValidationAttributeValidationError => S["The field {0} is invalid."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:115
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The field {0} is invalid."
|
||||||
|
msgstr "الحقل {0} غير صالح."
|
||||||
|
|
||||||
|
#. public string ValidatorInstanceMustMatchValidationContextInstance => S["The instance provided must match the ObjectInstance on the ValidationContext supplied."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:117
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The instance provided must match the ObjectInstance on the ValidationContext supplied."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public string ValidatorPropertyValueWrongType => S["The value for property '{0}' must be of type '{1}'."];
|
||||||
|
#: OrchardCore.Localization.Core\DataAnnotations\DataAnnotationsDefaultErrorMessages.cs:119
|
||||||
|
msgctxt "OrchardCore.Localization.DataAnnotations.DataAnnotationsDefaultErrorMessages"
|
||||||
|
msgid "The value for property '{0}' must be of type '{1}'."
|
||||||
|
msgstr "قيمة الخاصية ''{0}' يجب أن تكون من النوع '{1}'."
|
||||||
|
|
||||||
112
src/Twain.Web/Localization/ar/OrchardCore.Localization.po
Normal file
112
src/Twain.Web/Localization/ar/OrchardCore.Localization.po
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Localization.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 770\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:16\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], NavigationConstants.AdminMenuConfigurationPosition, localization => localization
|
||||||
|
#: OrchardCore.Localization\AdminMenu.cs:31
|
||||||
|
msgctxt "OrchardCore.Localization.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Localization\AdminMenu.cs:32
|
||||||
|
msgctxt "OrchardCore.Localization.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Localization"], localization => localization
|
||||||
|
#: OrchardCore.Localization\AdminMenu.cs:33
|
||||||
|
msgctxt "OrchardCore.Localization.AdminMenu"
|
||||||
|
msgid "Localization"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Cultures"], S["Cultures"].PrefixPosition(), entry => entry
|
||||||
|
#. .Add(S["Cultures"], S["Cultures"].PrefixPosition(), entry => entry
|
||||||
|
#: OrchardCore.Localization\AdminMenu.cs:35
|
||||||
|
#: OrchardCore.Localization\AdminMenu.cs:35
|
||||||
|
msgctxt "OrchardCore.Localization.AdminMenu"
|
||||||
|
msgid "Cultures"
|
||||||
|
msgstr "اللغات"
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<LocalizationSettings, LocalizationDeploymentStartup>(S => S["Culture settings"], S => S["Exports the culture settings."]);
|
||||||
|
#: OrchardCore.Localization\Startup.cs:64
|
||||||
|
msgctxt "OrchardCore.Localization.LocalizationDeploymentStartup"
|
||||||
|
msgid "Culture settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<LocalizationSettings, LocalizationDeploymentStartup>(S => S["Culture settings"], S => S["Exports the culture settings."]);
|
||||||
|
#: OrchardCore.Localization\Startup.cs:64
|
||||||
|
msgctxt "OrchardCore.Localization.LocalizationDeploymentStartup"
|
||||||
|
msgid "Exports the culture settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError("SupportedCultures", S["A culture is required"]);
|
||||||
|
#: OrchardCore.Localization\Drivers\LocalizationSettingsDisplayDriver.cs:108
|
||||||
|
msgctxt "OrchardCore.Localization.Drivers.LocalizationSettingsDisplayDriver"
|
||||||
|
msgid "A culture is required"
|
||||||
|
msgstr "اللغة مطلوبة"
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["The site has been restarted for the settings to take effect."]);
|
||||||
|
#: OrchardCore.Localization\Drivers\LocalizationSettingsDisplayDriver.cs:128
|
||||||
|
msgctxt "OrchardCore.Localization.Drivers.LocalizationSettingsDisplayDriver"
|
||||||
|
msgid "The site has been restarted for the settings to take effect."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["The active cultures configured for the site."],
|
||||||
|
#: OrchardCore.Localization\GraphQL\SiteCulturesQuery.cs:38
|
||||||
|
msgctxt "OrchardCore.Localization.GraphQL.SiteCulturesQuery"
|
||||||
|
msgid "The active cultures configured for the site."
|
||||||
|
msgstr "اللغات النشطة لضبط الموقع."
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning col-xl-6">@T["The current tenant will be reloaded when the settings are saved."]</p>
|
||||||
|
#: OrchardCore.Localization\Views\LocalizationSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Localization.Views.LocalizationSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "ستتم إعادة تحميل الـ tenant الحالية عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <th>@T["Culture"]</th>
|
||||||
|
#: OrchardCore.Localization\Views\LocalizationSettings.Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Localization.Views.LocalizationSettings.Edit"
|
||||||
|
msgid "Culture"
|
||||||
|
msgstr "اللغة"
|
||||||
|
|
||||||
|
#. <th>@T["Default culture"]</th>
|
||||||
|
#: OrchardCore.Localization\Views\LocalizationSettings.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Localization.Views.LocalizationSettings.Edit"
|
||||||
|
msgid "Default culture"
|
||||||
|
msgstr "اللغة الافتراضية"
|
||||||
|
|
||||||
|
#. <a v-on:click="remove(index)" title="@T["Remove culture"]" href="javascript:void(0)" class="btn btn-secondary btn-sm" style="cursor:pointer">
|
||||||
|
#: OrchardCore.Localization\Views\LocalizationSettings.Edit.cshtml:45
|
||||||
|
msgctxt "OrchardCore.Localization.Views.LocalizationSettings.Edit"
|
||||||
|
msgid "Remove culture"
|
||||||
|
msgstr "حذف لغة"
|
||||||
|
|
||||||
|
#. <a v-on:click="add()" href="javascript:void(0)" class="btn btn-success"><i class="fas fa-plus small" aria-hidden="true"></i> @T["Add culture"]</a>
|
||||||
|
#: OrchardCore.Localization\Views\LocalizationSettings.Edit.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Localization.Views.LocalizationSettings.Edit"
|
||||||
|
msgid "Add culture"
|
||||||
|
msgstr "إضافة لغة"
|
||||||
|
|
||||||
|
#. <label>@T["Define which cultures are supported by the site."]</label>
|
||||||
|
#: OrchardCore.Localization\Views\LocalizationSettings.Edit.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Localization.Views.LocalizationSettings.Edit"
|
||||||
|
msgid "Define which cultures are supported by the site."
|
||||||
|
msgstr "تعريف أي اللغات سيتم دعمها في الموقع."
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-globe" aria-hidden="true"></i></span><span class="title">@T["Localization"]</span>
|
||||||
|
#: OrchardCore.Localization\Views\NavigationItemText-localization.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Localization.Views.NavigationItemText-localization.Id"
|
||||||
|
msgid "Localization"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
778
src/Twain.Web/Localization/ar/OrchardCore.Lucene.po
Normal file
778
src/Twain.Web/Localization/ar/OrchardCore.Lucene.po
Normal file
@@ -0,0 +1,778 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Lucene.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 772\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. .Add(S["Search"], NavigationConstants.AdminMenuSearchPosition, search => search
|
||||||
|
#. .Add(S["Search"], S["Search"].PrefixPosition(), entry => entry
|
||||||
|
#. .Add(S["Search"], S["Search"].PrefixPosition(), entry => entry
|
||||||
|
#: OrchardCore.Lucene\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Lucene\AdminMenu.cs:38
|
||||||
|
#: OrchardCore.Lucene\AdminMenu.cs:38
|
||||||
|
msgctxt "OrchardCore.Lucene.AdminMenu"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. .Add(S["Indexing"], S["Indexing"].PrefixPosition(), import => import
|
||||||
|
#. .Add(S["Indexing"], S["Indexing"].PrefixPosition(), import => import
|
||||||
|
#: OrchardCore.Lucene\AdminMenu.cs:28
|
||||||
|
#: OrchardCore.Lucene\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.Lucene.AdminMenu"
|
||||||
|
msgid "Indexing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Lucene Indices"], S["Lucene Indices"].PrefixPosition(), indexes => indexes
|
||||||
|
#. .Add(S["Lucene Indices"], S["Lucene Indices"].PrefixPosition(), indexes => indexes
|
||||||
|
#: OrchardCore.Lucene\AdminMenu.cs:29
|
||||||
|
#: OrchardCore.Lucene\AdminMenu.cs:29
|
||||||
|
msgctxt "OrchardCore.Lucene.AdminMenu"
|
||||||
|
msgid "Lucene Indices"
|
||||||
|
msgstr "فهارس Lucene"
|
||||||
|
|
||||||
|
#. .Add(S["Run Lucene Query"], S["Run Lucene Query"].PrefixPosition(), queries => queries
|
||||||
|
#. .Add(S["Run Lucene Query"], S["Run Lucene Query"].PrefixPosition(), queries => queries
|
||||||
|
#: OrchardCore.Lucene\AdminMenu.cs:33
|
||||||
|
#: OrchardCore.Lucene\AdminMenu.cs:33
|
||||||
|
msgctxt "OrchardCore.Lucene.AdminMenu"
|
||||||
|
msgid "Run Lucene Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Lucene\AdminMenu.cs:37
|
||||||
|
msgctxt "OrchardCore.Lucene.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Reset"], Value = nameof(ContentsBulkAction.Reset) },
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:129
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Rebuild"], Value = nameof(ContentsBulkAction.Rebuild) },
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:130
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Rebuild"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Remove) }
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:131
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Select(x => new SelectListItem { Text = x.Name + " (" + x.DisplayName + ")", Value = x.Name }).Prepend(new SelectListItem { Text = S["Any culture"], Value = "any" }),
|
||||||
|
#. .Select(x => new SelectListItem { Text = x.Name + " (" + x.DisplayName + ")", Value = x.Name }).Prepend(new SelectListItem { Text = S["Any culture"], Value = "any" });
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:174
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:212
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Any culture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LuceneIndexSettingsViewModel.IndexName), S["An index named {0} already exists.", model.IndexName]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:198
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "An index named {0} already exists."
|
||||||
|
msgstr "الدليل المسمى {0} موجود من مسبقاً."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LuceneIndexSettingsViewModel.IndexName), S["An index named {0} doesn't exist.", model.IndexName]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:205
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "An index named {0} doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while creating the index."]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:230
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "An error occurred while creating the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> created successfully.", model.IndexName]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:235
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> created successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while editing the index."]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:247
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "An error occurred while editing the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> modified successfully, <strong>please consider doing a rebuild on the index.</strong>", model.IndexName]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:252
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> modified successfully, <strong>please consider doing a rebuild on the index.</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> reset successfully.", id]);
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> reset successfully.", item.IndexName]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:281
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:457
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> reset successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> rebuilt successfully.", id]);
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> rebuilt successfully.", item.IndexName]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:302
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:471
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> rebuilt successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> deleted successfully.", model.IndexName]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:328
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> deleted successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while deleting the index."]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:332
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "An error occurred while deleting the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(model.DecodedQuery), S["Invalid query : {0}", e.Message]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:412
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Invalid query : {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Indices successfully removed."]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:444
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Indices successfully removed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LuceneIndexSettingsViewModel.IndexedContentTypes), S["At least one content type selection is required."]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:486
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "At least one content type selection is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LuceneIndexSettingsViewModel.IndexName), S["The index name is required."]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:491
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "The index name is required."
|
||||||
|
msgstr "إسم الفهرس مطلوب."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LuceneIndexSettingsViewModel.IndexName), S["The index name contains unallowed chars."]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\AdminController.cs:495
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.AdminController"
|
||||||
|
msgid "The index name contains unallowed chars."
|
||||||
|
msgstr "إسم الفهرس يحتوي على حروف غير مسموحة."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError("Terms", S["Incorrect query syntax."]);
|
||||||
|
#: OrchardCore.Lucene\Controllers\SearchController.cs:158
|
||||||
|
msgctxt "OrchardCore.Lucene.Controllers.SearchController"
|
||||||
|
msgid "Incorrect query syntax."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Template), S["The query field is required"]);
|
||||||
|
#: OrchardCore.Lucene\Drivers\LuceneQueryDisplayDriver.cs:63
|
||||||
|
msgctxt "OrchardCore.Lucene.Drivers.LuceneQueryDisplayDriver"
|
||||||
|
msgid "The query field is required"
|
||||||
|
msgstr "حقل الاستعلام مطلوب"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Index), S["The index field is required"]);
|
||||||
|
#: OrchardCore.Lucene\Drivers\LuceneQueryDisplayDriver.cs:68
|
||||||
|
msgctxt "OrchardCore.Lucene.Drivers.LuceneQueryDisplayDriver"
|
||||||
|
msgid "The index field is required"
|
||||||
|
msgstr "حقل الفهرس مطلوب"
|
||||||
|
|
||||||
|
#. return new HtmlString($"<option value=\"Lucene\" selected=\"selected\">{S["Lucene"]}</option>");
|
||||||
|
#. return new HtmlString($"<option value=\"Lucene\">{S["Lucene"]}</option>");
|
||||||
|
#: OrchardCore.Lucene\Shapes\LuceneContentPickerShapeProvider.cs:26
|
||||||
|
#: OrchardCore.Lucene\Shapes\LuceneContentPickerShapeProvider.cs:28
|
||||||
|
msgctxt "OrchardCore.Lucene.LuceneContentPickerShapeProvider"
|
||||||
|
msgid "Lucene"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ContentIndexSettings.Included">@T["Include this element in the index"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\ContentIndexSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.ContentIndexSettings.Edit"
|
||||||
|
msgid "Include this element in the index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to include the value of this element in the index."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\ContentIndexSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.ContentIndexSettings.Edit"
|
||||||
|
msgid "Check to include the value of this element in the index."
|
||||||
|
msgstr "اختر لتضمين القيمة لهذا العنصر في الدليل."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ContentIndexSettings.Stored">@T["Stored"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\ContentIndexSettings.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.ContentIndexSettings.Edit"
|
||||||
|
msgid "Stored"
|
||||||
|
msgstr "تم التخزين"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to be able to retrieve the value from the index."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\ContentIndexSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.ContentIndexSettings.Edit"
|
||||||
|
msgid "Check to be able to retrieve the value from the index."
|
||||||
|
msgstr "اختر لإمكانية إسترجاع القيمة من الدليل."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ContentIndexSettings.Analyzed">@T["Analyzed"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\ContentIndexSettings.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.ContentIndexSettings.Edit"
|
||||||
|
msgid "Analyzed"
|
||||||
|
msgstr "تم التحليل"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to analyze the value as readable text."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\ContentIndexSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.ContentIndexSettings.Edit"
|
||||||
|
msgid "Check to analyze the value as readable text."
|
||||||
|
msgstr "اختر لنحليل القيمة كنص قابل للقراءة."
|
||||||
|
|
||||||
|
#. <label asp-for="Index">@T["Index"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\ContentPickerFieldLuceneEditorSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.ContentPickerFieldLuceneEditorSettings.Edit"
|
||||||
|
msgid "Index"
|
||||||
|
msgstr "فهرس"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Lucene index to query for content items"]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\ContentPickerFieldLuceneEditorSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.ContentPickerFieldLuceneEditorSettings.Edit"
|
||||||
|
msgid "The Lucene index to query for content items"
|
||||||
|
msgstr "فهرس Lucene للإستعلام عن عناصر المحتوى"
|
||||||
|
|
||||||
|
#. class="btn btn-success btn-sm">@T["Run"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneQuery.Buttons.SummaryAdmin.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneQuery.Buttons.SummaryAdmin"
|
||||||
|
msgid "Run"
|
||||||
|
msgstr "تشغيل"
|
||||||
|
|
||||||
|
#. <label asp-for="Index">@T["Index"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneQuery.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "Index"
|
||||||
|
msgstr "فهرس"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The lucene index to search on"]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneQuery.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "The lucene index to search on"
|
||||||
|
msgstr "فهرس lucene للبحث"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ReturnContentItems">@T["Return Content Items"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneQuery.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "Return Content Items"
|
||||||
|
msgstr "إرجاع عناصر المحتوى"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to return the corresponding content items."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneQuery.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "Check to return the corresponding content items."
|
||||||
|
msgstr "اختر للعودة إلى عناصر المحتوى المقابلة."
|
||||||
|
|
||||||
|
#. <label asp-for="Query">@T["Query"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneQuery.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr "!ستعلام"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneQuery.Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"
|
||||||
|
msgstr "إستعلام البحث يستخدم تنسيق الـ Elasticsearch. بعض التوثيق يمكن إيجاده هنا <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Lucene query"]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneQuery.SummaryAdmin.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneQuery.SummaryAdmin"
|
||||||
|
msgid "Lucene query"
|
||||||
|
msgstr "إستعلام Lucene"
|
||||||
|
|
||||||
|
#. <label asp-for="SearchIndex">@T["Default search index"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "Default search index"
|
||||||
|
msgstr "فهرس البحث الافتراضي"
|
||||||
|
|
||||||
|
#. <option value="" selected="@(Model.SearchIndex == null)">@T["Select a search index"]</option>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "Select a search index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default index to use for the search page."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "The default index to use for the search page."
|
||||||
|
msgstr "الفهرس الافتراضي ليتم إستخدامه في صفحة البحث."
|
||||||
|
|
||||||
|
#. <div class="alert alert-warning">@T["You need to create at least an index to set as the Search index."]</div>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "You need to create at least an index to set as the Search index."
|
||||||
|
msgstr "تحتاج إلى إنشاء فهرس على الأقل لتعيينه كفهرس بحث."
|
||||||
|
|
||||||
|
#. <label asp-for="SearchFields">@T["Default searched fields"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "Default searched fields"
|
||||||
|
msgstr "حقول البحث الافتراضية"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["A comma separated list of fields to use for search pages. The default value is <code>Content.ContentItem.FullText</code>."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneSettings.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "A comma separated list of fields to use for search pages. The default value is <code>Content.ContentItem.FullText</code>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="AllowLuceneQueriesInSearch">@T["Allow Lucene queries in search forms"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneSettings.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "Allow Lucene queries in search forms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether search queries should be allowed to use <a href=\"https://lucene.apache.org/core/2_9_4/queryparsersyntax.html\">Lucene query parser syntax</a>."] <a class="seedoc" href="http://www.lucenetutorial.com/lucene-query-syntax.html" target="_blank">@T["See documentation"]</a></span>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneSettings.Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "Whether search queries should be allowed to use <a href=\"https://lucene.apache.org/core/2_9_4/queryparsersyntax.html\">Lucene query parser syntax</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether search queries should be allowed to use <a href=\"https://lucene.apache.org/core/2_9_4/queryparsersyntax.html\">Lucene query parser syntax</a>."] <a class="seedoc" href="http://www.lucenetutorial.com/lucene-query-syntax.html" target="_blank">@T["See documentation"]</a></span>
|
||||||
|
#: OrchardCore.Lucene\Views\LuceneSettings.Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-search" aria-hidden="true"></i></span><span class="title">@T["Search"]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\NavigationItemText-search.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.NavigationItemText-search.Id"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4>@T["Lucene"]</h4>
|
||||||
|
#: OrchardCore.Lucene\Views\Query-Lucene.Link.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Query-Lucene.Link"
|
||||||
|
msgid "Lucene"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["Queries a Lucene index."]</p>
|
||||||
|
#: OrchardCore.Lucene\Views\Query-Lucene.Link.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Query-Lucene.Link"
|
||||||
|
msgid "Queries a Lucene index."
|
||||||
|
msgstr "إستعلامات فهرس Lucene."
|
||||||
|
|
||||||
|
#. <a disabled="@disabled" class="btn btn-primary btn-sm" asp-route-action="Create" asp-route-controller="Admin" asp-route-id="@Model.Name" asp-area="OrchardCore.Queries">@T["Add"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Query-Lucene.Link.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Query-Lucene.Link"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "إضافة"
|
||||||
|
|
||||||
|
#. <input name="Terms" type="text" value="@Model.Terms" class="form-control form-control-lg" placeholder="@T["Enter your search term(s)"]" autofocus />
|
||||||
|
#: OrchardCore.Lucene\Views\Search-Form.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Search-Form"
|
||||||
|
msgid "Enter your search term(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-primary btn-sm">@T["Search"]</button>
|
||||||
|
#: OrchardCore.Lucene\Views\Search-Form.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Search-Form"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["There are no such results."]</p>
|
||||||
|
#: OrchardCore.Lucene\Views\Search-Results.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Search-Results"
|
||||||
|
msgid "There are no such results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Index"])</h1></zone>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Create Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Index"])</h1></zone>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Edit Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexName">@T["Index Name"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Index Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="AnalyzerName">@T["Analyzer Name"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Analyzer Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Culture">@T["Culture"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Culture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The content culture that it will index."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "The content culture that it will index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexedContentTypes">@T["Content Types"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Content Types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["The content types to index. Choose at least one."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "The content types to index. Choose at least one."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexLatest">@T["Index options"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Index options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="IndexLatest">@T["Index latest version"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:50
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Index latest version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to index draft if it exists, otherwise only the published version is indexed."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Check to index draft if it exists, otherwise only the published version is indexed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:59
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:60
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:65
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Edit.cshtml:64
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Indices"])</h1></zone>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="Edit" class="btn btn-sm btn-secondary float-end create" role="button">@T["Add Index"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Add Index"
|
||||||
|
msgstr "إضافة فهرس"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Indexes.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Indexes.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Indexes.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:44
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr "الإجراءات"
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:49
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:49
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr "هل أنت متأكد من أنك تريد {0} هذه العناصر؟"
|
||||||
|
|
||||||
|
#. <a asp-action="Query" asp-route-IndexName="@entry.Name" class="btn btn-success btn-sm">@T["Query"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:69
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr "إستعلام"
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:70
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Reset Index"
|
||||||
|
msgstr "إعادة ضبط الفهرس"
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:70
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "This will restart the indexing of all content items. Continue?"
|
||||||
|
msgstr "سوف تتم إعادة فهرسة كل عناصر المحتوى. هل تريد المتابعة؟"
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:70
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr "نعم"
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:70
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "No"
|
||||||
|
msgstr "لا"
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:70
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr "إعادة تعيين"
|
||||||
|
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Rebuild Index"
|
||||||
|
msgstr "إعادة بناء الفهرس"
|
||||||
|
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Your index will be rebuilt, which might alter some services during the process. Continue?"
|
||||||
|
msgstr "ستتم إعادة إنشاء الفهرس، الذي قد يغير بعض الخدمات أثناء العملية. هل تريد المتابعة؟"
|
||||||
|
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Rebuild"
|
||||||
|
msgstr "إعادة بناء"
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-IndexName="@entry.Name" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Delete" asp-route-IndexName="@entry.Name" class="btn btn-danger btn-sm" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no indices for the moment."]
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:83
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no indices for the moment."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:134
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Index.cshtml:145
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Index"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Lucene Query"])</h1></zone>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Lucene Query"
|
||||||
|
msgstr "إستعلام Lucene"
|
||||||
|
|
||||||
|
#. <label asp-for="IndexName">@T["Index"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Index"
|
||||||
|
msgstr "فهرس"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The lucene index to search on"]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "The lucene index to search on"
|
||||||
|
msgstr "فهرس lucene للبحث"
|
||||||
|
|
||||||
|
#. <label asp-for="DecodedQuery">@T["Template"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Template"
|
||||||
|
msgstr "قالب"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["You can use the <a href=\"{0}\">Match All query</a> to search all documents.", Html.Raw(Url.Action("Query", "Admin", new { area = "OrchardCore.Lucene", Query = matchAllQuery, IndexName = Model.IndexName }))]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "You can use the <a href=\"{0}\">Match All query</a> to search all documents."
|
||||||
|
msgstr "يمكنك إستخدام <a href=\"{0}\">كل الإستعلام المتطابقة</a> للبحث عن كل الوثائق."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"
|
||||||
|
msgstr "إستعلام البحث يستخدم تنسيق الـ Elasticsearch. بعض التوثيق يمكن إيجاده هنا <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"
|
||||||
|
|
||||||
|
#. <label asp-for="Parameters">@T["Parameters"]</label>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Parameters"
|
||||||
|
msgstr "المعايير"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["An optional Json object containing the parameter values for this query."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "An optional Json object containing the parameter values for this query."
|
||||||
|
msgstr "كائن Json إختياري يحتوي على قيم المتغيرات لهذا الإستعلام."
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-primary">@T["Query"]</button>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr "إستعلام"
|
||||||
|
|
||||||
|
#. <p><span class="text-muted">@T["Found {0} result(s) in {1} ms", Model.Count.ToString(), Model.Elapsed.TotalMilliseconds.ToString()]</span></p>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:54
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Found {0} result(s) in {1} ms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a href="@Url.Action("Create", "Admin", new { area = "OrchardCore.Queries", id = "Lucene", query = Model.DecodedQuery })" class="btn btn-success">@T["Create"]</a>
|
||||||
|
#: OrchardCore.Lucene\Views\Admin\Query.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "إنشاء"
|
||||||
|
|
||||||
|
#. <h5>@T["Search Indexes"]</h5>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Search Indexes"
|
||||||
|
msgstr "فهارس البحث"
|
||||||
|
|
||||||
|
#. @T["Include all search indexes."]
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Include all search indexes."
|
||||||
|
msgstr "تضمين كل فهارس البحث."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The search indexes to add as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The search indexes to add as part of the plan."
|
||||||
|
msgstr "فهارس البحث التي ستضاف كجزء من الخطة."
|
||||||
|
|
||||||
|
#. <h5>@T["Search Indexes"]</h5>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Summary.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Search Indexes"
|
||||||
|
msgstr "فهارس البحث"
|
||||||
|
|
||||||
|
#. <span class="badge bg-success">@T["All"]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Summary.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Summary"
|
||||||
|
msgid "All"
|
||||||
|
msgstr "الكل"
|
||||||
|
|
||||||
|
#. <span class="badge bg-warning">@T["No index selected."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Summary.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Summary"
|
||||||
|
msgid "No index selected."
|
||||||
|
msgstr "لم يتم تحديد أي فهرس."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Search Indexes"]</h4>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Search Indexes"
|
||||||
|
msgstr "فهارس البحث"
|
||||||
|
|
||||||
|
#. <p>@T["Exports all or specified search indexes."]</p>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports all or specified search indexes."
|
||||||
|
msgstr "تصدير كل الفهارس أو المحددة."
|
||||||
|
|
||||||
|
#. <h5>@T["Search Settings"]</h5>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneSettingsDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneSettingsDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Search Settings"
|
||||||
|
msgstr "إعدادات البحث"
|
||||||
|
|
||||||
|
#. <h5>@T["Search Settings"]</h5>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneSettingsDeploymentStep.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Search Settings"
|
||||||
|
msgstr "إعدادات البحث"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds search settings to the plan."]</span>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneSettingsDeploymentStep.Fields.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Adds search settings to the plan."
|
||||||
|
msgstr "إضافة إعدادات البحث للخطة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Search Settings"]</h4>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneSettingsDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Search Settings"
|
||||||
|
msgstr "إعدادات البحث"
|
||||||
|
|
||||||
|
#. <p>@T["Exports search settings."]</p>
|
||||||
|
#: OrchardCore.Lucene\Views\Items\LuceneSettingsDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Lucene.Views.Items.LuceneSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports search settings."
|
||||||
|
msgstr "تصدير إعدادات البحث."
|
||||||
|
|
||||||
182
src/Twain.Web/Localization/ar/OrchardCore.Markdown.po
Normal file
182
src/Twain.Web/Localization/ar/OrchardCore.Markdown.po
Normal file
@@ -0,0 +1,182 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Markdown.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 774\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:16\n"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(viewModel.Markdown), S["{0} doesn't contain a valid Liquid expression. Details: {1}", partName, string.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.Markdown\Drivers\MarkdownBodyPartDisplayDriver.cs:75
|
||||||
|
msgctxt "OrchardCore.Markdown.Drivers.MarkdownBodyPartDisplayDriver"
|
||||||
|
msgid "{0} doesn't contain a valid Liquid expression. Details: {1}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(viewModel.Markdown), S["{0} field doesn't contain a valid Liquid expression. Details: {1}", fieldName, string.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.Markdown\Drivers\MarkdownFieldDriver.cs:105
|
||||||
|
msgctxt "OrchardCore.Markdown.Drivers.MarkdownFieldDisplayDriver"
|
||||||
|
msgid "{0} field doesn't contain a valid Liquid expression. Details: {1}"
|
||||||
|
msgstr "الحقل {0} لا يحتوي على عبارة Liquid صحيحة. للتفاصيل: {1}"
|
||||||
|
|
||||||
|
#. Description = S["Content stored as Markdown. You can also query the HTML interpreted version of Markdown."];
|
||||||
|
#: OrchardCore.Markdown\GraphQL\MarkdownBodyQueryObjectType.cs:28
|
||||||
|
msgctxt "OrchardCore.Markdown.GraphQL.MarkdownBodyQueryObjectType"
|
||||||
|
msgid "Content stored as Markdown. You can also query the HTML interpreted version of Markdown."
|
||||||
|
msgstr "المحتوى مخزون كـ Markdown. يمكنك الإستعلام عن الـ HTML المفسر له."
|
||||||
|
|
||||||
|
#. .Description(S["the markdown value"]);
|
||||||
|
#: OrchardCore.Markdown\GraphQL\MarkdownBodyQueryObjectType.cs:31
|
||||||
|
msgctxt "OrchardCore.Markdown.GraphQL.MarkdownBodyQueryObjectType"
|
||||||
|
msgid "the markdown value"
|
||||||
|
msgstr "قيمة الـ markdown"
|
||||||
|
|
||||||
|
#. .Description(S["the HTML representation of the markdown content"])
|
||||||
|
#: OrchardCore.Markdown\GraphQL\MarkdownBodyQueryObjectType.cs:34
|
||||||
|
msgctxt "OrchardCore.Markdown.GraphQL.MarkdownBodyQueryObjectType"
|
||||||
|
msgid "the HTML representation of the markdown content"
|
||||||
|
msgstr "تمثيل HTML لمحتوى الـ markdown"
|
||||||
|
|
||||||
|
#. Description = S["Content stored as Markdown. You can also query the HTML interpreted version of Markdown."];
|
||||||
|
#: OrchardCore.Markdown\GraphQL\MarkdownFieldQueryObjectType.cs:30
|
||||||
|
msgctxt "OrchardCore.Markdown.GraphQL.MarkdownFieldQueryObjectType"
|
||||||
|
msgid "Content stored as Markdown. You can also query the HTML interpreted version of Markdown."
|
||||||
|
msgstr "المحتوى المخزن مصغر. يمكنك أيضا الاستعلام إصدار HTML يفسر مصغر."
|
||||||
|
|
||||||
|
#. .Description(S["the markdown value"]);
|
||||||
|
#: OrchardCore.Markdown\GraphQL\MarkdownFieldQueryObjectType.cs:33
|
||||||
|
msgctxt "OrchardCore.Markdown.GraphQL.MarkdownFieldQueryObjectType"
|
||||||
|
msgid "the markdown value"
|
||||||
|
msgstr "قيمة الـ markdown"
|
||||||
|
|
||||||
|
#. .Description(S["the HTML representation of the markdown content"])
|
||||||
|
#: OrchardCore.Markdown\GraphQL\MarkdownFieldQueryObjectType.cs:36
|
||||||
|
msgctxt "OrchardCore.Markdown.GraphQL.MarkdownFieldQueryObjectType"
|
||||||
|
msgid "the HTML representation of the markdown content"
|
||||||
|
msgstr "تمثيل HTML لمحتوى الـ markdown"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The markdown text of the content item."]</span>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownBodyPart-Wysiwyg.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownBodyPart-Wysiwyg.Edit"
|
||||||
|
msgid "The markdown text of the content item."
|
||||||
|
msgstr "نص الـ markdown لعنصر المحتوى."
|
||||||
|
|
||||||
|
#. <option value="Wysiwyg" selected="@(currentEditor == "Wysiwyg")">@T["Wysiwyg editor"]</option>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownBodyPart-Wysiwyg.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownBodyPart-Wysiwyg.Option"
|
||||||
|
msgid "Wysiwyg editor"
|
||||||
|
msgstr "محرر Wysiwyg"
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentDisplayMode)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownBodyPart.DisplayOption.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownBodyPart.DisplayOption"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The body of the content item, in Markdown format."]</span>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownBodyPart.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownBodyPart.Edit"
|
||||||
|
msgid "The body of the content item, in Markdown format."
|
||||||
|
msgstr "محتوى العنصر على تنسيق Markdown."
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownBodyPart.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownBodyPart.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SanitizeHtml">@T["Sanitize Html"]</label>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownBodyPartSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownBodyPartSettings.Edit"
|
||||||
|
msgid "Sanitize Html"
|
||||||
|
msgstr "تطهير الـ Html"
|
||||||
|
|
||||||
|
#. @T["Whether the Html output from the Markdown is sanitized to prevent custom scripts."]
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownBodyPartSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownBodyPartSettings.Edit"
|
||||||
|
msgid "Whether the Html output from the Markdown is sanitized to prevent custom scripts."
|
||||||
|
msgstr "ما إذا كان مخرجات ال Html من ال Markdown سيتم تطهيرها لمنع السكربتات المخصصة."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/core/Sanitizer" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownBodyPartSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownBodyPartSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="TextArea" selected="@(currentEditor == "TextArea")">@T["Multi-line"]</option>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownField-TextArea.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownField-TextArea.Option"
|
||||||
|
msgid "Multi-line"
|
||||||
|
msgstr "متعدد الأسطر"
|
||||||
|
|
||||||
|
#. <option value="Wysiwyg" selected="@(currentEditor == "Wysiwyg")">@T["Wysiwyg editor"]</option>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownField-Wysiwyg.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownField-Wysiwyg.Option"
|
||||||
|
msgid "Wysiwyg editor"
|
||||||
|
msgstr "محرر Wysiwyg"
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentDisplayMode)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownField.DisplayOption.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownField.DisplayOption"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownField.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownField.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <label asp-for="Hint">@T["Hint"]</label>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownFieldSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownFieldSettings.Edit"
|
||||||
|
msgid "Hint"
|
||||||
|
msgstr "تلميح"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The hint text to display for this field on the editor."]</span>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownFieldSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownFieldSettings.Edit"
|
||||||
|
msgid "The hint text to display for this field on the editor."
|
||||||
|
msgstr "التلميح النصي ليظهر لهذا الحقل في المحرر."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SanitizeHtml">@T["Sanitize Html"]</label>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownFieldSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownFieldSettings.Edit"
|
||||||
|
msgid "Sanitize Html"
|
||||||
|
msgstr "تطهير الـ Html"
|
||||||
|
|
||||||
|
#. @T["Whether the Html output is sanitized to prevent custom scripts."]
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownFieldSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownFieldSettings.Edit"
|
||||||
|
msgid "Whether the Html output is sanitized to prevent custom scripts."
|
||||||
|
msgstr "ما إذا كان مخرجات ال Html قد تم تطهيره لمنع السكربتات المخصصة."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/core/Sanitizer" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Markdown\Views\MarkdownFieldSettings.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.MarkdownFieldSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5 class="modal-title">@T["Select Media"]</h5>
|
||||||
|
#: OrchardCore.Markdown\Views\Media-MarkdownBodyPart.Modal.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.Media-MarkdownBodyPart.Modal"
|
||||||
|
msgid "Select Media"
|
||||||
|
msgstr "إختر وسائط"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-primary" id="mediaMarkdownSelectButton">@T["OK"]</button>
|
||||||
|
#: OrchardCore.Markdown\Views\Media-MarkdownBodyPart.Modal.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.Media-MarkdownBodyPart.Modal"
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "حسناً"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.Markdown\Views\Media-MarkdownBodyPart.Modal.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Markdown.Views.Media-MarkdownBodyPart.Modal"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
78
src/Twain.Web/Localization/ar/OrchardCore.Media.AmazonS3.po
Normal file
78
src/Twain.Web/Localization/ar/OrchardCore.Media.AmazonS3.po
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Media.AmazonS3.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 864\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:39\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Media.AmazonS3\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.Media.AmazonS3.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Media"], S["Media"].PrefixPosition(), media => media
|
||||||
|
#. .Add(S["Media"], S["Media"].PrefixPosition(), media => media
|
||||||
|
#: OrchardCore.Media.AmazonS3\AdminMenu.cs:25
|
||||||
|
#: OrchardCore.Media.AmazonS3\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Media.AmazonS3.AdminMenu"
|
||||||
|
msgid "Media"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Amazon S3 Options"], S["Amazon S3 Options"].PrefixPosition(), options => options
|
||||||
|
#. .Add(S["Amazon S3 Options"], S["Amazon S3 Options"].PrefixPosition(), options => options
|
||||||
|
#: OrchardCore.Media.AmazonS3\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Media.AmazonS3\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Media.AmazonS3.AdminMenu"
|
||||||
|
msgid "Amazon S3 Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h1>@RenderTitleSegments(T["Amazon S3 storage options"])</h1>
|
||||||
|
#: OrchardCore.Media.AmazonS3\Views\Admin\Options.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Media.AmazonS3.Views.Admin.Options"
|
||||||
|
msgid "Amazon S3 storage options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Amazon S3 storage is configured with appsettings.json."]
|
||||||
|
#: OrchardCore.Media.AmazonS3\Views\Admin\Options.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Media.AmazonS3.Views.Admin.Options"
|
||||||
|
msgid "Amazon S3 storage is configured with appsettings.json."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Media.AmazonS3/#configuration" target="_blank">@T["See documentation."]</a>
|
||||||
|
#: OrchardCore.Media.AmazonS3\Views\Admin\Options.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Media.AmazonS3.Views.Admin.Options"
|
||||||
|
msgid "See documentation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="BucketName" class="col-sm-2 col-form-label">@T["Bucket Name"]</label>
|
||||||
|
#: OrchardCore.Media.AmazonS3\Views\Admin\Options.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Media.AmazonS3.Views.Admin.Options"
|
||||||
|
msgid "Bucket Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="BasePath" class="col-sm-2 col-form-label">@T["Base Path"]</label>
|
||||||
|
#: OrchardCore.Media.AmazonS3\Views\Admin\Options.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Media.AmazonS3.Views.Admin.Options"
|
||||||
|
msgid "Base Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="CreateBucket">@T["Create Bucket"]</label>
|
||||||
|
#: OrchardCore.Media.AmazonS3\Views\Admin\Options.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Media.AmazonS3.Views.Admin.Options"
|
||||||
|
msgid "Create Bucket"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Whether a bucket is created on startup if it does not exist."]</span>
|
||||||
|
#: OrchardCore.Media.AmazonS3\Views\Admin\Options.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Media.AmazonS3.Views.Admin.Options"
|
||||||
|
msgid "Whether a bucket is created on startup if it does not exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
94
src/Twain.Web/Localization/ar/OrchardCore.Media.Azure.po
Normal file
94
src/Twain.Web/Localization/ar/OrchardCore.Media.Azure.po
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Media.Azure.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 776\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Media.Azure\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.Media.Azure.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Media"], S["Media"].PrefixPosition(), media => media
|
||||||
|
#. .Add(S["Media"], S["Media"].PrefixPosition(), media => media
|
||||||
|
#: OrchardCore.Media.Azure\AdminMenu.cs:25
|
||||||
|
#: OrchardCore.Media.Azure\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Media.Azure.AdminMenu"
|
||||||
|
msgid "Media"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Azure Blob Options"], S["Azure Blob Options"].PrefixPosition(), options => options
|
||||||
|
#. .Add(S["Azure Blob Options"], S["Azure Blob Options"].PrefixPosition(), options => options
|
||||||
|
#: OrchardCore.Media.Azure\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Media.Azure\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Media.Azure.AdminMenu"
|
||||||
|
msgid "Azure Blob Options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h1>@RenderTitleSegments(T["Azure Blob storage options"])</h1>
|
||||||
|
#: OrchardCore.Media.Azure\Views\Admin\Options.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Media.Azure.Views.Admin.Options"
|
||||||
|
msgid "Azure Blob storage options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Azure Blob storage is configured with appsettings.json."]
|
||||||
|
#: OrchardCore.Media.Azure\Views\Admin\Options.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Media.Azure.Views.Admin.Options"
|
||||||
|
msgid "Azure Blob storage is configured with appsettings.json."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Media.Azure/#configuration" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Media.Azure\Views\Admin\Options.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Media.Azure.Views.Admin.Options"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="ConnectionString" class="col-sm-2 col-form-label">@T["Connection String"]</label>
|
||||||
|
#: OrchardCore.Media.Azure\Views\Admin\Options.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Media.Azure.Views.Admin.Options"
|
||||||
|
msgid "Connection String"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Media.Azure\Views\Admin\Options.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Media.Azure.Views.Admin.Options"
|
||||||
|
msgid "Configured"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Media.Azure\Views\Admin\Options.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Media.Azure.Views.Admin.Options"
|
||||||
|
msgid "Not Configured"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="ContainerName" class="col-sm-2 col-form-label">@T["Container Name"]</label>
|
||||||
|
#: OrchardCore.Media.Azure\Views\Admin\Options.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Media.Azure.Views.Admin.Options"
|
||||||
|
msgid "Container Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="BasePath" class="col-sm-2 col-form-label">@T["Base Path"]</label>
|
||||||
|
#: OrchardCore.Media.Azure\Views\Admin\Options.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Media.Azure.Views.Admin.Options"
|
||||||
|
msgid "Base Path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="CreateContainer">@T["Create Container"]</label>
|
||||||
|
#: OrchardCore.Media.Azure\Views\Admin\Options.cshtml:42
|
||||||
|
msgctxt "OrchardCore.Media.Azure.Views.Admin.Options"
|
||||||
|
msgid "Create Container"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Whether a blob container is created on startup if it does not exist."]</span>
|
||||||
|
#: OrchardCore.Media.Azure\Views\Admin\Options.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Media.Azure.Views.Admin.Options"
|
||||||
|
msgid "Whether a blob container is created on startup if it does not exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
1412
src/Twain.Web/Localization/ar/OrchardCore.Media.po
Normal file
1412
src/Twain.Web/Localization/ar/OrchardCore.Media.po
Normal file
File diff suppressed because it is too large
Load Diff
230
src/Twain.Web/Localization/ar/OrchardCore.Menu.po
Normal file
230
src/Twain.Web/Localization/ar/OrchardCore.Menu.po
Normal file
@@ -0,0 +1,230 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Menu.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 780\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Content"], design => design
|
||||||
|
#: OrchardCore.Menu\AdminMenu.cs:33
|
||||||
|
msgctxt "OrchardCore.Menu.AdminMenu"
|
||||||
|
msgid "Content"
|
||||||
|
msgstr "محتوى"
|
||||||
|
|
||||||
|
#. .Add(S["Menus"], S["Menus"].PrefixPosition(), menus => menus
|
||||||
|
#. .Add(S["Menus"], S["Menus"].PrefixPosition(), menus => menus
|
||||||
|
#: OrchardCore.Menu\AdminMenu.cs:34
|
||||||
|
#: OrchardCore.Menu\AdminMenu.cs:34
|
||||||
|
msgctxt "OrchardCore.Menu.AdminMenu"
|
||||||
|
msgid "Menus"
|
||||||
|
msgstr "القوائم"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Menu item deleted successfully."]);
|
||||||
|
#: OrchardCore.Menu\Controllers\AdminController.cs:282
|
||||||
|
msgctxt "OrchardCore.Menu.Controllers.AdminController"
|
||||||
|
msgid "Menu item deleted successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(part.Url), S["{0} is an invalid url.", part.Url]);
|
||||||
|
#. updater.ModelState.AddModelError(nameof(part.Url), S["{0} is an invalid url.", part.Url]);
|
||||||
|
#: OrchardCore.Menu\Drivers\HtmlMenuItemPartDisplayDriver.cs:101
|
||||||
|
#: OrchardCore.Menu\Drivers\HtmlMenuItemPartDisplayDriver.cs:109
|
||||||
|
msgctxt "OrchardCore.Menu.Drivers.HtmlMenuItemPartDisplayDriver"
|
||||||
|
msgid "{0} is an invalid url."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(part.Url), S["{0} is an invalid url.", part.Url]);
|
||||||
|
#. updater.ModelState.AddModelError(nameof(part.Url), S["{0} is an invalid url.", part.Url]);
|
||||||
|
#: OrchardCore.Menu\Drivers\LinkMenuItemPartDisplayDriver.cs:96
|
||||||
|
#: OrchardCore.Menu\Drivers\LinkMenuItemPartDisplayDriver.cs:104
|
||||||
|
msgctxt "OrchardCore.Menu.Drivers.LinkMenuItemPartDisplayDriver"
|
||||||
|
msgid "{0} is an invalid url."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["The menu item content item with id {0} has no matching {1} content type definition.", menuItem.ContentItem.ContentItemId, menuItem.ContentItem.ContentType]);
|
||||||
|
#: OrchardCore.Menu\Drivers\MenuPartDisplayDriver.cs:52
|
||||||
|
msgctxt "OrchardCore.Menu.Drivers.MenuPartDisplayDriver"
|
||||||
|
msgid "The menu item content item with id {0} has no matching {1} content type definition."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["Publishing this content item may erase created content. Fix any content type issues beforehand."]);
|
||||||
|
#: OrchardCore.Menu\Drivers\MenuPartDisplayDriver.cs:59
|
||||||
|
msgctxt "OrchardCore.Menu.Drivers.MenuPartDisplayDriver"
|
||||||
|
msgid "Publishing this content item may erase created content. Fix any content type issues beforehand."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Content Menu Item"]</h5>
|
||||||
|
#: OrchardCore.Menu\Views\ContentMenuItemPart.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Menu.Views.ContentMenuItemPart.Edit"
|
||||||
|
msgid "Content Menu Item"
|
||||||
|
msgstr "عنصر قائمة محتوى"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Menu\Views\ContentMenuItemPart.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Menu.Views.ContentMenuItemPart.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Content Menu Item"]</h4>
|
||||||
|
#: OrchardCore.Menu\Views\ContentMenuItemPart.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Menu.Views.ContentMenuItemPart.Thumbnail"
|
||||||
|
msgid "Content Menu Item"
|
||||||
|
msgstr "عنصر قائمة محتوى"
|
||||||
|
|
||||||
|
#. <p>@T["Links to a Content url."]</p>
|
||||||
|
#: OrchardCore.Menu\Views\ContentMenuItemPart.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Menu.Views.ContentMenuItemPart.Thumbnail"
|
||||||
|
msgid "Links to a Content url."
|
||||||
|
msgstr "روابط إلى رابط المحتوى."
|
||||||
|
|
||||||
|
#. <h5>@T["Html Menu Item"]</h5>
|
||||||
|
#: OrchardCore.Menu\Views\HtmlMenuItemPart.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Menu.Views.HtmlMenuItemPart.Edit"
|
||||||
|
msgid "Html Menu Item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Menu\Views\HtmlMenuItemPart.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Menu.Views.HtmlMenuItemPart.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Url">@T["Url"]</label>
|
||||||
|
#: OrchardCore.Menu\Views\HtmlMenuItemPart.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Menu.Views.HtmlMenuItemPart.Edit"
|
||||||
|
msgid "Url"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Html">@T["Html"]</label>
|
||||||
|
#: OrchardCore.Menu\Views\HtmlMenuItemPart.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Menu.Views.HtmlMenuItemPart.Edit"
|
||||||
|
msgid "Html"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Html Menu Item"]</h4>
|
||||||
|
#: OrchardCore.Menu\Views\HtmlMenuItemPart.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Menu.Views.HtmlMenuItemPart.Thumbnail"
|
||||||
|
msgid "Html Menu Item"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Links to a custom url with HTML."]</p>
|
||||||
|
#: OrchardCore.Menu\Views\HtmlMenuItemPart.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Menu.Views.HtmlMenuItemPart.Thumbnail"
|
||||||
|
msgid "Links to a custom url with HTML."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SanitizeHtml">@T["Sanitize Html"]</label>
|
||||||
|
#: OrchardCore.Menu\Views\HtmlMenuItemPartSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Menu.Views.HtmlMenuItemPartSettings.Edit"
|
||||||
|
msgid "Sanitize Html"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Whether the Html is sanitized to prevent custom scripts."]
|
||||||
|
#: OrchardCore.Menu\Views\HtmlMenuItemPartSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Menu.Views.HtmlMenuItemPartSettings.Edit"
|
||||||
|
msgid "Whether the Html is sanitized to prevent custom scripts."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/core/Sanitizer" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Menu\Views\HtmlMenuItemPartSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Menu.Views.HtmlMenuItemPartSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Link Menu Item"]</h5>
|
||||||
|
#: OrchardCore.Menu\Views\LinkMenuItemPart.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Menu.Views.LinkMenuItemPart.Edit"
|
||||||
|
msgid "Link Menu Item"
|
||||||
|
msgstr "رابط عنصر قائمة"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Menu\Views\LinkMenuItemPart.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Menu.Views.LinkMenuItemPart.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <label asp-for="Url">@T["Url"]</label>
|
||||||
|
#: OrchardCore.Menu\Views\LinkMenuItemPart.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Menu.Views.LinkMenuItemPart.Edit"
|
||||||
|
msgid "Url"
|
||||||
|
msgstr "الرابط"
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Link Menu Item"]</h4>
|
||||||
|
#: OrchardCore.Menu\Views\LinkMenuItemPart.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Menu.Views.LinkMenuItemPart.Thumbnail"
|
||||||
|
msgid "Link Menu Item"
|
||||||
|
msgstr "رابط عنصر قائمة"
|
||||||
|
|
||||||
|
#. <p>@T["Links to a custom url."]</p>
|
||||||
|
#: OrchardCore.Menu\Views\LinkMenuItemPart.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Menu.Views.LinkMenuItemPart.Thumbnail"
|
||||||
|
msgid "Links to a custom url."
|
||||||
|
msgstr "رابط إلى عنوان مخصص."
|
||||||
|
|
||||||
|
#. @T["Edit"]
|
||||||
|
#: OrchardCore.Menu\Views\MenuItem.Admin.cshtml:38
|
||||||
|
msgctxt "OrchardCore.Menu.Views.MenuItem.Admin"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. @T["Add"]
|
||||||
|
#: OrchardCore.Menu\Views\MenuItem.Admin.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Menu.Views.MenuItem.Admin"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "إضافة"
|
||||||
|
|
||||||
|
#. @T["Delete"]
|
||||||
|
#: OrchardCore.Menu\Views\MenuItem.Admin.cshtml:50
|
||||||
|
msgctxt "OrchardCore.Menu.Views.MenuItem.Admin"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. <a class="btn btn-primary btn-sm thumbnail-link-create" asp-route-action="Create" asp-route-controller="Admin" asp-route-id="@Model.MenuItemType" asp-route-menuContentItemId="@Model.MenuContentItemId" asp-route-area="OrchardCore.Menu">@T["Add"]</a>
|
||||||
|
#: OrchardCore.Menu\Views\MenuItem.Thumbnail.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Menu.Views.MenuItem.Thumbnail"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "إضافة"
|
||||||
|
|
||||||
|
#. @T["Add Menu Item"]
|
||||||
|
#: OrchardCore.Menu\Views\MenuPart.Edit.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Menu.Views.MenuPart.Edit"
|
||||||
|
msgid "Add Menu Item"
|
||||||
|
msgstr "إضافة عنصر قائمة"
|
||||||
|
|
||||||
|
#. <h5 class="modal-title" id="available-menu-items-title">@T["Available Menu Items"]</h5>
|
||||||
|
#: OrchardCore.Menu\Views\MenuPart.Edit.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Menu.Views.MenuPart.Edit"
|
||||||
|
msgid "Available Menu Items"
|
||||||
|
msgstr "عناصر القائمة المتوفرة"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.Menu\Views\MenuPart.Edit.cshtml:66
|
||||||
|
msgctxt "OrchardCore.Menu.Views.MenuPart.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <div id="msg-leave" style="display:none" data>@T["You have reordered the navigation."]</div>
|
||||||
|
#: OrchardCore.Menu\Views\MenuPart.Edit.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Menu.Views.MenuPart.Edit"
|
||||||
|
msgid "You have reordered the navigation."
|
||||||
|
msgstr "قمت بترتيب القوائم."
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["New {0}", typeDisplayName])</h1></zone>
|
||||||
|
#: OrchardCore.Menu\Views\Admin\Create.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Menu.Views.Admin.Create"
|
||||||
|
msgid "New {0}"
|
||||||
|
msgstr "جديد {0}"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit {0}", typeDisplayName])</h1></zone>
|
||||||
|
#: OrchardCore.Menu\Views\Admin\Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Menu.Views.Admin.Edit"
|
||||||
|
msgid "Edit {0}"
|
||||||
|
msgstr "تحرير {0}"
|
||||||
|
|
||||||
@@ -0,0 +1,312 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Microsoft.Authentication.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 782\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Security"], security => security
|
||||||
|
#: OrchardCore.Microsoft.Authentication\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.AdminMenuMicrosoftAccount"
|
||||||
|
msgid "Security"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Authentication"], authentication => authentication
|
||||||
|
#: OrchardCore.Microsoft.Authentication\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.AdminMenuMicrosoftAccount"
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Microsoft"], S["Microsoft"].PrefixPosition(), client => client
|
||||||
|
#. .Add(S["Microsoft"], S["Microsoft"].PrefixPosition(), client => client
|
||||||
|
#: OrchardCore.Microsoft.Authentication\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Microsoft.Authentication\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.AdminMenuMicrosoftAccount"
|
||||||
|
msgid "Microsoft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. builder.Add(S["Security"], security => security
|
||||||
|
#: OrchardCore.Microsoft.Authentication\AdminMenu.cs:55
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.AdminMenuAAD"
|
||||||
|
msgid "Security"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Authentication"], authentication => authentication
|
||||||
|
#: OrchardCore.Microsoft.Authentication\AdminMenu.cs:56
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.AdminMenuAAD"
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Azure Active Directory"], S["Azure Active Directory"].PrefixPosition(), client => client
|
||||||
|
#. .Add(S["Azure Active Directory"], S["Azure Active Directory"].PrefixPosition(), client => client
|
||||||
|
#: OrchardCore.Microsoft.Authentication\AdminMenu.cs:57
|
||||||
|
#: OrchardCore.Microsoft.Authentication\AdminMenu.cs:57
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.AdminMenuAAD"
|
||||||
|
msgid "Azure Active Directory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["DisplayName is required"], new string[] { nameof(settings.DisplayName) });
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Services\AzureADService.cs:65
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Services.AzureADService"
|
||||||
|
msgid "DisplayName is required"
|
||||||
|
msgstr "الإسم الظاهر مطلوب"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["AppId is required"], new string[] { nameof(settings.AppId) });
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Services\AzureADService.cs:70
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Services.AzureADService"
|
||||||
|
msgid "AppId is required"
|
||||||
|
msgstr "رقم التطبيق مطلوب"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["TenantId is required"], new string[] { nameof(settings.TenantId) });
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Services\AzureADService.cs:75
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Services.AzureADService"
|
||||||
|
msgid "TenantId is required"
|
||||||
|
msgstr "معرف الـ tenant مطلوب"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["AppId is required"], new string[] { nameof(settings.AppId) });
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Services\MicrosoftAccountService.cs:64
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Services.MicrosoftAccountService"
|
||||||
|
msgid "AppId is required"
|
||||||
|
msgstr "رقم التطبيق مطلوب"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["AppSecret is required"], new string[] { nameof(settings.AppSecret) });
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Services\MicrosoftAccountService.cs:69
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Services.MicrosoftAccountService"
|
||||||
|
msgid "AppSecret is required"
|
||||||
|
msgstr "أمان التطبيق مطلوب"
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "Application Id is required")]
|
||||||
|
#: OrchardCore.Microsoft.Authentication\ViewModels\AzureADSettingsViewModel.cs:10
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.ViewModels.AzureADSettingsViewModel"
|
||||||
|
msgid "Application Id is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "Tenant Id is required")]
|
||||||
|
#: OrchardCore.Microsoft.Authentication\ViewModels\AzureADSettingsViewModel.cs:13
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.ViewModels.AzureADSettingsViewModel"
|
||||||
|
msgid "Tenant Id is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. [RegularExpression(@"\/[-A-Za-z0-9+&@#\/%?=~_|!:,.;]+[-A-Za-z0-9+&@#\/%=~_|]", ErrorMessage = "Invalid path")]
|
||||||
|
#: OrchardCore.Microsoft.Authentication\ViewModels\AzureADSettingsViewModel.cs:16
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.ViewModels.AzureADSettingsViewModel"
|
||||||
|
msgid "Invalid path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "Application Id is required")]
|
||||||
|
#: OrchardCore.Microsoft.Authentication\ViewModels\MicrosoftAccountSettingsViewModel.cs:7
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.ViewModels.MicrosoftAccountSettingsViewModel"
|
||||||
|
msgid "Application Id is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "Application Secret is required")]
|
||||||
|
#: OrchardCore.Microsoft.Authentication\ViewModels\MicrosoftAccountSettingsViewModel.cs:10
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.ViewModels.MicrosoftAccountSettingsViewModel"
|
||||||
|
msgid "Application Secret is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. [RegularExpression(@"\/[-A-Za-z0-9+&@#\/%?=~_|!:,.;]+[-A-Za-z0-9+&@#\/%=~_|]", ErrorMessage = "Invalid path")]
|
||||||
|
#: OrchardCore.Microsoft.Authentication\ViewModels\MicrosoftAccountSettingsViewModel.cs:13
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.ViewModels.MicrosoftAccountSettingsViewModel"
|
||||||
|
msgid "Invalid path"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["The current tenant will be reloaded when the settings are saved."]
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "سيتم إعادة تحميل الـ tenant عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Microsoft.Authentication/#azure-active-directory" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h3>@T["Azure AD Authentication Settings"]</h3>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "Azure AD Authentication Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label>@T["Display Name"]</label>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "Display Name"
|
||||||
|
msgstr "الإسم الظاهر"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The display name of the provider."]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "The display name of the provider."
|
||||||
|
msgstr "الإسم الظاهر للمزود."
|
||||||
|
|
||||||
|
#. <label>@T["AppId"]</label>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "AppId"
|
||||||
|
msgstr "معرف التطبيق"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Application ID found on the Azure AD App registration parameters."]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "The Application ID found on the Azure AD App registration parameters."
|
||||||
|
msgstr "معرف التطبيق موجود في معلمات تسجيل التطبيق في الـ Azure Active Directory."
|
||||||
|
|
||||||
|
#. <label>@T["TenantId"]</label>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "TenantId"
|
||||||
|
msgstr "معرف الـ tenant"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Tenant (Directory) ID found on the Azure AD App registration parameters."]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "The Tenant (Directory) ID found on the Azure AD App registration parameters."
|
||||||
|
msgstr "معرف الـ tenant موجود على معلمات تسجيل التطبيق لـ Azure Active Directory."
|
||||||
|
|
||||||
|
#. <label>@T["CallbackPath"]</label>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "CallbackPath"
|
||||||
|
msgstr "مسار الإستدعاء المرجعي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."
|
||||||
|
msgstr "المسار المطلوب داخل المسار الأساسي للتطبيق حيث سيتم إرجاع وكيل المستخدم إليه. الـ middleware سوف تعالج الطلب عند وصوله."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SaveTokens">@T["Store tokens"]</label>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:42
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "Store tokens"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Store external authentication tokens for reuse"]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\AzureADSettings.Edit.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.AzureADSettings.Edit"
|
||||||
|
msgid "Store external authentication tokens for reuse"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["The current tenant will be reloaded when the settings are saved."]
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "سيتم إعادة تحميل الـ tenant عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Microsoft.Authentication/#microsoft-account" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="alert alert-danger">@T["An error occurred while decrypting a setting. Please apply and save."]</p>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "An error occurred while decrypting a setting. Please apply and save."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h3>@T["Microsoft Account Authentication Settings"]</h3>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "Microsoft Account Authentication Settings"
|
||||||
|
msgstr "إعدادات مصادقة حساب مايكروسوفت"
|
||||||
|
|
||||||
|
#. <label>@T["AppId"]</label>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "AppId"
|
||||||
|
msgstr "معرف التطبيق"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Application ID found on the Microsoft developer portal parameters."]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "The Application ID found on the Microsoft developer portal parameters."
|
||||||
|
msgstr "معرف التطبيق موجود في بوابة التطوير لمايكروسوفت."
|
||||||
|
|
||||||
|
#. <label>@T["Secret Key"]</label>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "Secret Key"
|
||||||
|
msgstr "المفتاح السري"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Application secret key found on the Microsoft developer portal parameters."]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "The Application secret key found on the Microsoft developer portal parameters."
|
||||||
|
msgstr "شفرة أمان التطبيق موجودة في بوابة التطوير لمايكروسوفت."
|
||||||
|
|
||||||
|
#. <label>@T["CallbackPath"]</label>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:31
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "CallbackPath"
|
||||||
|
msgstr "مسار الإستدعاء المرجعي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."
|
||||||
|
msgstr "المسار المطلوب داخل المسار الأساسي للتطبيق حيث سيتم إرجاع وكيل المستخدم إليه. الـ middleware سوف تعالج الطلب عند وصوله."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SaveTokens">@T["Store tokens"]</label>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "Store tokens"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Store external authentication tokens for reuse"]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\MicrosoftAccountSettings.Edit.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.MicrosoftAccountSettings.Edit"
|
||||||
|
msgid "Store external authentication tokens for reuse"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fas fa-cloud" aria-hidden="true"></i></span><span class="title">@T["Azure Active Directory"]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\NavigationItemText-azuread.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.NavigationItemText-azuread.Id"
|
||||||
|
msgid "Azure Active Directory"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fab fa-microsoft" aria-hidden="true"></i></span><span class="title">@T["Microsoft"]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\NavigationItemText-microsoft.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.NavigationItemText-microsoft.Id"
|
||||||
|
msgid "Microsoft"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Azure AD Settings"]</h5>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\Items\AzureADDeploymentStep.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.Items.AzureADDeploymentStep.Edit"
|
||||||
|
msgid "Azure AD Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Azure AD Settings"]</h5>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\Items\AzureADDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.Items.AzureADDeploymentStep.Summary"
|
||||||
|
msgid "Azure AD Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds Azure AD settings to the plan."]</span>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\Items\AzureADDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.Items.AzureADDeploymentStep.Summary"
|
||||||
|
msgid "Adds Azure AD settings to the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Azure AD Settings"]</h4>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\Items\AzureADDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.Items.AzureADDeploymentStep.Thumbnail"
|
||||||
|
msgid "Azure AD Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports the Azure AD settings."]</p>
|
||||||
|
#: OrchardCore.Microsoft.Authentication\Views\Items\AzureADDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Microsoft.Authentication.Views.Items.AzureADDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports the Azure AD settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
48
src/Twain.Web/Localization/ar/OrchardCore.Navigation.po
Normal file
48
src/Twain.Web/Localization/ar/OrchardCore.Navigation.po
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Navigation.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 784\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-06-01 18:41\n"
|
||||||
|
|
||||||
|
#. var firstText = FirstText ?? S["<<"];
|
||||||
|
#: OrchardCore.Navigation\PagerShapes.cs:182
|
||||||
|
msgctxt "OrchardCore.Navigation.PagerShapes"
|
||||||
|
msgid "<<"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. var previousText = PreviousText ?? S["<"];
|
||||||
|
#. var previousText = PreviousText ?? S["<"];
|
||||||
|
#: OrchardCore.Navigation\PagerShapes.cs:183
|
||||||
|
#: OrchardCore.Navigation\PagerShapes.cs:371
|
||||||
|
msgctxt "OrchardCore.Navigation.PagerShapes"
|
||||||
|
msgid "<"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. var nextText = NextText ?? S[">"];
|
||||||
|
#. var nextText = NextText ?? S[">"];
|
||||||
|
#: OrchardCore.Navigation\PagerShapes.cs:184
|
||||||
|
#: OrchardCore.Navigation\PagerShapes.cs:372
|
||||||
|
msgctxt "OrchardCore.Navigation.PagerShapes"
|
||||||
|
msgid ">"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. var lastText = LastText ?? S[">>"];
|
||||||
|
#: OrchardCore.Navigation\PagerShapes.cs:185
|
||||||
|
msgctxt "OrchardCore.Navigation.PagerShapes"
|
||||||
|
msgid ">>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. var gapText = GapText ?? S["..."];
|
||||||
|
#: OrchardCore.Navigation\PagerShapes.cs:186
|
||||||
|
msgctxt "OrchardCore.Navigation.PagerShapes"
|
||||||
|
msgid "..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
1806
src/Twain.Web/Localization/ar/OrchardCore.OpenId.po
Normal file
1806
src/Twain.Web/Localization/ar/OrchardCore.OpenId.po
Normal file
File diff suppressed because it is too large
Load Diff
356
src/Twain.Web/Localization/ar/OrchardCore.Placements.po
Normal file
356
src/Twain.Web/Localization/ar/OrchardCore.Placements.po
Normal file
@@ -0,0 +1,356 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Placements.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 788\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:20\n"
|
||||||
|
|
||||||
|
#. .Add(S["Design"], design => design
|
||||||
|
#: OrchardCore.Placements\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Placements.AdminMenu"
|
||||||
|
msgid "Design"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Placements"], S["Placements"].PrefixPosition(), import => import
|
||||||
|
#. .Add(S["Placements"], S["Placements"].PrefixPosition(), import => import
|
||||||
|
#: OrchardCore.Placements\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Placements\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Placements.AdminMenu"
|
||||||
|
msgid "Placements"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Remove) }
|
||||||
|
#: OrchardCore.Placements\Controllers\AdminController.cs:94
|
||||||
|
msgctxt "OrchardCore.Placements.Controllers.AdminController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["Placement rules for \"{0}\" already exists. Please edit existing rule.", viewModel.ShapeType]);
|
||||||
|
#: OrchardCore.Placements\Controllers\AdminController.cs:180
|
||||||
|
msgctxt "OrchardCore.Placements.Controllers.AdminController"
|
||||||
|
msgid "Placement rules for \"{0}\" already exists. Please edit existing rule."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["The \"{0}\" placement have been saved.", viewModel.ShapeType]);
|
||||||
|
#: OrchardCore.Placements\Controllers\AdminController.cs:197
|
||||||
|
msgctxt "OrchardCore.Placements.Controllers.AdminController"
|
||||||
|
msgid "The \"{0}\" placement have been saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.WarningAsync(H["The \"{0}\" placement is empty.", viewModel.ShapeType]);
|
||||||
|
#: OrchardCore.Placements\Controllers\AdminController.cs:201
|
||||||
|
msgctxt "OrchardCore.Placements.Controllers.AdminController"
|
||||||
|
msgid "The \"{0}\" placement is empty."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["The \"{0}\" placement has been deleted.", viewModel.ShapeType]);
|
||||||
|
#. await _notifier.SuccessAsync(H["The \"{0}\" placement has been deleted.", shapeType]);
|
||||||
|
#: OrchardCore.Placements\Controllers\AdminController.cs:208
|
||||||
|
#: OrchardCore.Placements\Controllers\AdminController.cs:240
|
||||||
|
msgctxt "OrchardCore.Placements.Controllers.AdminController"
|
||||||
|
msgid "The \"{0}\" placement has been deleted."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while parsing the placement<br/>{0}", jsonException.Message]);
|
||||||
|
#: OrchardCore.Placements\Controllers\AdminController.cs:213
|
||||||
|
msgctxt "OrchardCore.Placements.Controllers.AdminController"
|
||||||
|
msgid "An error occurred while parsing the placement<br/>{0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while saving the placement."]);
|
||||||
|
#: OrchardCore.Placements\Controllers\AdminController.cs:218
|
||||||
|
msgctxt "OrchardCore.Placements.Controllers.AdminController"
|
||||||
|
msgid "An error occurred while saving the placement."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Placements successfully removed."]);
|
||||||
|
#: OrchardCore.Placements\Controllers\AdminController.cs:265
|
||||||
|
msgctxt "OrchardCore.Placements.Controllers.AdminController"
|
||||||
|
msgid "Placements successfully removed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement for a {0} part", displayName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentPartDefinitionDriver.cs:29
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentPartDefinitionDriver"
|
||||||
|
msgid "Placement for a {0} part"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement for a {0} part in detail views", displayName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentPartDefinitionDriver.cs:37
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentPartDefinitionDriver"
|
||||||
|
msgid "Placement for a {0} part in detail views"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement for a {0} part in summary views", displayName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentPartDefinitionDriver.cs:45
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentPartDefinitionDriver"
|
||||||
|
msgid "Placement for a {0} part in summary views"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement in admin editor for a {0} part", displayName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentPartDefinitionDriver.cs:52
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentPartDefinitionDriver"
|
||||||
|
msgid "Placement in admin editor for a {0} part"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement for the {0} field in a {1}", displayName, partName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentPartFieldDefinitionDisplayDriver.cs:32
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentPartFieldDefinitionDisplayDriver"
|
||||||
|
msgid "Placement for the {0} field in a {1}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement for the {0} field in a {1} in detail views", displayName, partName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentPartFieldDefinitionDisplayDriver.cs:41
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentPartFieldDefinitionDisplayDriver"
|
||||||
|
msgid "Placement for the {0} field in a {1} in detail views"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement for the {0} field in a {1} in summary views", displayName, partName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentPartFieldDefinitionDisplayDriver.cs:50
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentPartFieldDefinitionDisplayDriver"
|
||||||
|
msgid "Placement for the {0} field in a {1} in summary views"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement in admin editor for the {0} field in a {1}", displayName, partName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentPartFieldDefinitionDisplayDriver.cs:58
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentPartFieldDefinitionDisplayDriver"
|
||||||
|
msgid "Placement in admin editor for the {0} field in a {1}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement for the {0} part in a {1} type", partName, displayName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentTypePartDefinitionDriver.cs:31
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentTypePartDefinitionDriver"
|
||||||
|
msgid "Placement for the {0} part in a {1} type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement for the {0} part in a {1} type in detail views", partName, displayName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentTypePartDefinitionDriver.cs:40
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentTypePartDefinitionDriver"
|
||||||
|
msgid "Placement for the {0} part in a {1} type in detail views"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement for the {0} part in a {1} type in summary views", partName, displayName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentTypePartDefinitionDriver.cs:49
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentTypePartDefinitionDriver"
|
||||||
|
msgid "Placement for the {0} part in a {1} type in summary views"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Placement in admin editor for the {0} part in a {1} type", partName, displayName]
|
||||||
|
#: OrchardCore.Placements\Settings\PlacementContentTypePartDefinitionDriver.cs:57
|
||||||
|
msgctxt "OrchardCore.Placements.Settings.PlacementContentTypePartDefinitionDriver"
|
||||||
|
msgid "Placement in admin editor for the {0} part in a {1} type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Edit placements"]
|
||||||
|
#: OrchardCore.Placements\Views\PlacementSettings.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Placements.Views.PlacementSettings"
|
||||||
|
msgid "Edit placements"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(Model.Creating ? T["Create Placement"] : T["Edit Placement"])</h1></zone>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Edit"
|
||||||
|
msgid "Create Placement"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(Model.Creating ? T["Create Placement"] : T["Edit Placement"])</h1></zone>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Edit"
|
||||||
|
msgid "Edit Placement"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="ShapeType">@T["Shape type"]</label>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Edit"
|
||||||
|
msgid "Shape type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The type of the shape."]</span>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Edit.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Edit"
|
||||||
|
msgid "The type of the shape."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Nodes">@T["Placement rules"]</label>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Edit"
|
||||||
|
msgid "Placement rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="submit" name="submit" class="btn btn-primary">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="visually-hidden">@T["Toggle Dropdown"]</span>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Edit"
|
||||||
|
msgid "Toggle Dropdown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="dropdown-item" name="submit" type="submit" value="SaveAndContinue">@T["and continue"]</button>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Edit.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Edit"
|
||||||
|
msgid "and continue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="Delete" asp-route-area="OrchardCore.Placements" asp-route-shapeType="@Model.ShapeType" class="btn btn-danger" role="button" data-url-af="UnsafeUrl RemoveUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Edit.cshtml:46
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Edit"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" href="@returnUrl">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Edit.cshtml:49
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Placements"])</h1></zone>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "Placements"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="Create" class="btn btn-secondary create" role="button" asp-route-returnUrl="@FullRequestPath">@T["Add Placement"]</a>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "Add Placement"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.ShapePlacements.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.ShapePlacements.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.ShapePlacements.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-shapeType="@entry.ShapeType" asp-route-returnUrl="@FullRequestPath" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:68
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Delete" asp-route-shapeType="@entry.ShapeType" asp-route-returnUrl="@FullRequestPath" class="btn btn-danger btn-sm" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:69
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no placements at the moment."]
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:80
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no placements at the moment."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:131
|
||||||
|
#: OrchardCore.Placements\Views\Admin\Index.cshtml:142
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Admin.Index"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Placements"]</h5>
|
||||||
|
#: OrchardCore.Placements\Views\Items\PlacementsDeploymentStep.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Items.PlacementsDeploymentStep.Edit"
|
||||||
|
msgid "Placements"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Placements"]</h5>
|
||||||
|
#: OrchardCore.Placements\Views\Items\PlacementsDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Items.PlacementsDeploymentStep.Summary"
|
||||||
|
msgid "Placements"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds all placements to the plan."]</span>
|
||||||
|
#: OrchardCore.Placements\Views\Items\PlacementsDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Items.PlacementsDeploymentStep.Summary"
|
||||||
|
msgid "Adds all placements to the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["All Placements"]</h4>
|
||||||
|
#: OrchardCore.Placements\Views\Items\PlacementsDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Items.PlacementsDeploymentStep.Thumbnail"
|
||||||
|
msgid "All Placements"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports placements defined in Placements module."]</p>
|
||||||
|
#: OrchardCore.Placements\Views\Items\PlacementsDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Items.PlacementsDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports placements defined in Placements module."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="Edit" asp-route-area="OrchardCore.Placements" asp-route-shapeType="@Model.ShapeType" asp-route-returnUrl="@FullRequestPath" class="btn btn-primary btn-sm" role="button">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Placements\Views\Shared\DisplayTemplates\ShapePlacementViewModel.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Shared.DisplayTemplates.ShapePlacementViewModel"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="Delete" asp-route-area="OrchardCore.Placements" asp-route-shapeType="@Model.ShapeType" class="btn btn-danger btn-sm" role="button" data-url-af="UnsafeUrl RemoveUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Placements\Views\Shared\DisplayTemplates\ShapePlacementViewModel.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Placements.Views.Shared.DisplayTemplates.ShapePlacementViewModel"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.ProjectTemplates.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 790\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="Show">@T["Show"]</label>
|
||||||
|
#: OrchardCore.ProjectTemplates\content\OrchardCore.Templates.Cms.Module\Views\MyTestPart.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.ProjectTemplates.content.OrchardCore.Templates.Cms.Module.Views.MyTestPart.Edit"
|
||||||
|
msgid "Show"
|
||||||
|
msgstr "عرض"
|
||||||
|
|
||||||
|
#. <label asp-for="MySetting">@T["Setting"]</label>
|
||||||
|
#: OrchardCore.ProjectTemplates\content\OrchardCore.Templates.Cms.Module\Views\MyTestPartSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.ProjectTemplates.content.OrchardCore.Templates.Cms.Module.Views.MyTestPartSettings.Edit"
|
||||||
|
msgid "Setting"
|
||||||
|
msgstr "إعدادت"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The setting."]</span>
|
||||||
|
#: OrchardCore.ProjectTemplates\content\OrchardCore.Templates.Cms.Module\Views\MyTestPartSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.ProjectTemplates.content.OrchardCore.Templates.Cms.Module.Views.MyTestPartSettings.Edit"
|
||||||
|
msgid "The setting."
|
||||||
|
msgstr "الإعدادات."
|
||||||
|
|
||||||
38
src/Twain.Web/Localization/ar/OrchardCore.PublishLater.po
Normal file
38
src/Twain.Web/Localization/ar/OrchardCore.PublishLater.po
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.PublishLater.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 792\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 18:54\n"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary btn-publish-later" type="submit" name="submit.Save" value="submit.PublishLater">@T["Publish Later"]</button>
|
||||||
|
#: OrchardCore.PublishLater\Views\PublishLaterPart.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.PublishLater.Views.PublishLaterPart.Edit"
|
||||||
|
msgid "Publish Later"
|
||||||
|
msgstr "النشر لاحقا"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary btn-publish-later" type="submit" name="submit.Save" value="submit.CancelPublishLater">@T["Cancel Publish Later"]</button>
|
||||||
|
#: OrchardCore.PublishLater\Views\PublishLaterPart.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.PublishLater.Views.PublishLaterPart.Edit"
|
||||||
|
msgid "Cancel Publish Later"
|
||||||
|
msgstr "إلغاء النشر لاحقاً"
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.PublishLater\Views\PublishLaterPart.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.PublishLater.Views.PublishLaterPart.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Scheduled to be published on {0}", (object)(await DisplayAsync(await New.DateTime(Utc: Model.ScheduledPublishUtc)))]</span>
|
||||||
|
#: OrchardCore.PublishLater\Views\PublishLaterPart.SummaryAdmin.cshtml:6
|
||||||
|
msgctxt "OrchardCore.PublishLater.Views.PublishLaterPart.SummaryAdmin"
|
||||||
|
msgid "Scheduled to be published on {0}"
|
||||||
|
msgstr "مجدول ليتم نشره في {0}"
|
||||||
|
|
||||||
558
src/Twain.Web/Localization/ar/OrchardCore.Queries.po
Normal file
558
src/Twain.Web/Localization/ar/OrchardCore.Queries.po
Normal file
@@ -0,0 +1,558 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Queries.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 794\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:22\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Search"], NavigationConstants.AdminMenuSearchPosition, search => search
|
||||||
|
#: OrchardCore.Queries\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.Queries.AdminMenu"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. .Add(S["Queries"], S["Queries"].PrefixPosition(), contentItems => contentItems
|
||||||
|
#. .Add(S["Queries"], S["Queries"].PrefixPosition(), contentItems => contentItems
|
||||||
|
#: OrchardCore.Queries\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Queries\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Queries.AdminMenu"
|
||||||
|
msgid "Queries"
|
||||||
|
msgstr "استعلامات"
|
||||||
|
|
||||||
|
#. .Add(S["All queries"], "1", queries => queries
|
||||||
|
#: OrchardCore.Queries\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Queries.AdminMenu"
|
||||||
|
msgid "All queries"
|
||||||
|
msgstr "كل الاستعلامات"
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Remove) }
|
||||||
|
#: OrchardCore.Queries\Controllers\AdminController.cs:104
|
||||||
|
msgctxt "OrchardCore.Queries.Controllers.AdminController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Query created successfully."]);
|
||||||
|
#: OrchardCore.Queries\Controllers\AdminController.cs:163
|
||||||
|
msgctxt "OrchardCore.Queries.Controllers.AdminController"
|
||||||
|
msgid "Query created successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Query updated successfully."]);
|
||||||
|
#: OrchardCore.Queries\Controllers\AdminController.cs:219
|
||||||
|
msgctxt "OrchardCore.Queries.Controllers.AdminController"
|
||||||
|
msgid "Query updated successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Query deleted successfully."]);
|
||||||
|
#: OrchardCore.Queries\Controllers\AdminController.cs:246
|
||||||
|
msgctxt "OrchardCore.Queries.Controllers.AdminController"
|
||||||
|
msgid "Query deleted successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Queries successfully removed."]);
|
||||||
|
#: OrchardCore.Queries\Controllers\AdminController.cs:273
|
||||||
|
msgctxt "OrchardCore.Queries.Controllers.AdminController"
|
||||||
|
msgid "Queries successfully removed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(step.QueryName), S["Your Query is not returning content items."]);
|
||||||
|
#: OrchardCore.Queries\Deployment\QueryBasedContentDeploymentStepDriver.cs:56
|
||||||
|
msgctxt "OrchardCore.Queries.Deployment.QueryBasedContentDeploymentStepDriver"
|
||||||
|
msgid "Your Query is not returning content items."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(step.QueryParameters), S["Make sure it is a valid JSON object. Example: { key : 'value' }"]);
|
||||||
|
#: OrchardCore.Queries\Deployment\QueryBasedContentDeploymentStepDriver.cs:66
|
||||||
|
msgctxt "OrchardCore.Queries.Deployment.QueryBasedContentDeploymentStepDriver"
|
||||||
|
msgid "Make sure it is a valid JSON object. Example: { key : 'value' }"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(step.QueryParameters), S["Something is wrong with your JSON."]);
|
||||||
|
#: OrchardCore.Queries\Deployment\QueryBasedContentDeploymentStepDriver.cs:71
|
||||||
|
msgctxt "OrchardCore.Queries.Deployment.QueryBasedContentDeploymentStepDriver"
|
||||||
|
msgid "Something is wrong with your JSON."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Name), S["Name is required"]);
|
||||||
|
#: OrchardCore.Queries\Drivers\QueryDisplayDriver.cs:69
|
||||||
|
msgctxt "OrchardCore.Queries.Drivers.QueryDisplayDriver"
|
||||||
|
msgid "Name is required"
|
||||||
|
msgstr "الإسم إلزامي"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Schema), S["Invalid schema JSON supplied."]);
|
||||||
|
#: OrchardCore.Queries\Drivers\QueryDisplayDriver.cs:73
|
||||||
|
msgctxt "OrchardCore.Queries.Drivers.QueryDisplayDriver"
|
||||||
|
msgid "Invalid schema JSON supplied."
|
||||||
|
msgstr "مخطط JSON غير صالح."
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Name), S["Name contains illegal characters"]);
|
||||||
|
#: OrchardCore.Queries\Drivers\QueryDisplayDriver.cs:78
|
||||||
|
msgctxt "OrchardCore.Queries.Drivers.QueryDisplayDriver"
|
||||||
|
msgid "Name contains illegal characters"
|
||||||
|
msgstr "الإسم يحتوي على أحرف غير مسموح بها"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Name), S["A query with the same name already exists"]);
|
||||||
|
#: OrchardCore.Queries\Drivers\QueryDisplayDriver.cs:86
|
||||||
|
msgctxt "OrchardCore.Queries.Drivers.QueryDisplayDriver"
|
||||||
|
msgid "A query with the same name already exists"
|
||||||
|
msgstr "الاستعلام باسم مشابه موجود مسبقاً"
|
||||||
|
|
||||||
|
#. .Add(S["Search"], search => search
|
||||||
|
#: OrchardCore.Queries\Sql\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Queries.Sql.AdminMenu"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. .Add(S["Queries"], S["Queries"].PrefixPosition(), queries => queries
|
||||||
|
#. .Add(S["Queries"], S["Queries"].PrefixPosition(), queries => queries
|
||||||
|
#: OrchardCore.Queries\Sql\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Queries\Sql\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Queries.Sql.AdminMenu"
|
||||||
|
msgid "Queries"
|
||||||
|
msgstr "استعلامات"
|
||||||
|
|
||||||
|
#. .Add(S["Run SQL Query"], S["Run SQL Query"].PrefixPosition(), sql => sql
|
||||||
|
#. .Add(S["Run SQL Query"], S["Run SQL Query"].PrefixPosition(), sql => sql
|
||||||
|
#: OrchardCore.Queries\Sql\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.Queries\Sql\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Queries.Sql.AdminMenu"
|
||||||
|
msgid "Run SQL Query"
|
||||||
|
msgstr "تنفيذ إستعلام SQL"
|
||||||
|
|
||||||
|
#. ModelState.AddModelError("", S["An error occurred while executing the SQL query: {0}", e.Message]);
|
||||||
|
#: OrchardCore.Queries\Sql\Controllers\AdminController.cs:100
|
||||||
|
msgctxt "OrchardCore.Queries.Sql.Controllers.AdminController"
|
||||||
|
msgid "An error occurred while executing the SQL query: {0}"
|
||||||
|
msgstr "حدث خطأ أثناء تنفيذ الاستعلام: {0}"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Template), S["The query field is required"]);
|
||||||
|
#: OrchardCore.Queries\Sql\Drivers\SqlQueryDisplayDriver.cs:60
|
||||||
|
msgctxt "OrchardCore.Queries.Sql.Drivers.SqlQueryDisplayDriver"
|
||||||
|
msgid "The query field is required"
|
||||||
|
msgstr "حقل الاستعلام إلزامي"
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-search" aria-hidden="true"></i></span><span class="title">@T["Search"]</span>
|
||||||
|
#: OrchardCore.Queries\Views\NavigationItemText-search.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Queries.Views.NavigationItemText-search.Id"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <h4>@T["SQL"]</h4>
|
||||||
|
#: OrchardCore.Queries\Views\Query-Sql.Link.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query-Sql.Link"
|
||||||
|
msgid "SQL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["Queries the SQL database."]</p>
|
||||||
|
#: OrchardCore.Queries\Views\Query-Sql.Link.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query-Sql.Link"
|
||||||
|
msgid "Queries the SQL database."
|
||||||
|
msgstr "استعلامات قاعدة بيانات SQL."
|
||||||
|
|
||||||
|
#. <a class="btn btn-primary btn-sm" asp-route-action="Create" asp-route-controller="Admin" asp-route-id="@Model.Name" asp-area="OrchardCore.Queries">@T["Add"]</a>
|
||||||
|
#: OrchardCore.Queries\Views\Query-Sql.Link.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query-Sql.Link"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "إضافة"
|
||||||
|
|
||||||
|
#. class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Queries\Views\Query.Buttons.SummaryAdmin.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query.Buttons.SummaryAdmin"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Queries\Views\Query.Buttons.SummaryAdmin.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query.Buttons.SummaryAdmin"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-primary save">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Queries\Views\Query.Fields.Buttons.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query.Fields.Buttons"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. asp-route-area="OrchardCore.Queries">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Queries\Views\Query.Fields.Buttons.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query.Fields.Buttons"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Queries\Views\Query.Fields.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query.Fields.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The technical name of the query."]</span>
|
||||||
|
#: OrchardCore.Queries\Views\Query.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query.Fields.Edit"
|
||||||
|
msgid "The technical name of the query."
|
||||||
|
msgstr "الإسم الفني للاستعلام."
|
||||||
|
|
||||||
|
#. <label asp-for="Schema">@T["Schema"]</label>
|
||||||
|
#: OrchardCore.Queries\Views\Query.Fields.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query.Fields.Edit"
|
||||||
|
msgid "Schema"
|
||||||
|
msgstr "مخطط"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The schema the GraphQL API will use to return results."] <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Queries/#graphql" target="_blank">@T["See documentation"]</a></span>
|
||||||
|
#: OrchardCore.Queries\Views\Query.Fields.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query.Fields.Edit"
|
||||||
|
msgid "The schema the GraphQL API will use to return results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The schema the GraphQL API will use to return results."] <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Queries/#graphql" target="_blank">@T["See documentation"]</a></span>
|
||||||
|
#: OrchardCore.Queries\Views\Query.Fields.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query.Fields.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h1>@T["If you see this message you need to create a custom shape template for {0}", "Query-" + Model.Name + ".Link"]</h1>
|
||||||
|
#: OrchardCore.Queries\Views\Query.Link.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Query.Link"
|
||||||
|
msgid "If you see this message you need to create a custom shape template for {0}"
|
||||||
|
msgstr "إن كنت ترى هذه الرسالة، فأنت بحاجة إلى إنشاء نمودج شكلي مخصص إلى {0}"
|
||||||
|
|
||||||
|
#. class="btn btn-success btn-sm">@T["Run"]</a>
|
||||||
|
#: OrchardCore.Queries\Views\SqlQuery.Buttons.SummaryAdmin.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Queries.Views.SqlQuery.Buttons.SummaryAdmin"
|
||||||
|
msgid "Run"
|
||||||
|
msgstr "تشغيل"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ReturnDocuments">@T["Return Documents"]</label>
|
||||||
|
#: OrchardCore.Queries\Views\SqlQuery.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Queries.Views.SqlQuery.Edit"
|
||||||
|
msgid "Return Documents"
|
||||||
|
msgstr "إعادة الوثائق"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to return the corresponding documents."]</span>
|
||||||
|
#: OrchardCore.Queries\Views\SqlQuery.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Queries.Views.SqlQuery.Edit"
|
||||||
|
msgid "Check to return the corresponding documents."
|
||||||
|
msgstr "اختر للعودة إلى المستندات المقابلة."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["When checked, the result has to be a list of document ids."]</span>
|
||||||
|
#: OrchardCore.Queries\Views\SqlQuery.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Queries.Views.SqlQuery.Edit"
|
||||||
|
msgid "When checked, the result has to be a list of document ids."
|
||||||
|
msgstr "عند اختياره، ستكون النتائج في شكل قائمة بأرقام معرفات الوثائق."
|
||||||
|
|
||||||
|
#. <label asp-for="Query">@T["Query"]</label>
|
||||||
|
#: OrchardCore.Queries\Views\SqlQuery.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Queries.Views.SqlQuery.Edit"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr "استعلام"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The SQL query to execute."]</span>
|
||||||
|
#: OrchardCore.Queries\Views\SqlQuery.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Queries.Views.SqlQuery.Edit"
|
||||||
|
msgid "The SQL query to execute."
|
||||||
|
msgstr "استعلام SQL المراد تنفيذه."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["SQL query"]</span>
|
||||||
|
#: OrchardCore.Queries\Views\SqlQuery.SummaryAdmin.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Queries.Views.SqlQuery.SummaryAdmin"
|
||||||
|
msgid "SQL query"
|
||||||
|
msgstr "استعلام SQL"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["New {0} query", Model.SourceName])</h1></zone>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Create.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Create"
|
||||||
|
msgid "New {0} query"
|
||||||
|
msgstr "استعلام {0} جديد"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit '{0}' query", Model.Name])</h1></zone>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Edit"
|
||||||
|
msgid "Edit '{0}' query"
|
||||||
|
msgstr "تحرير استعلام \"{0}\""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Queries"])</h1></zone>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Queries"
|
||||||
|
msgstr "استعلامات"
|
||||||
|
|
||||||
|
#. <input id="search-box" asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary create" role="button" data-bs-toggle="modal" data-bs-target="#modalAddQuery">@T["Add Query"]</button>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Add Query"
|
||||||
|
msgstr "إضافة استعلام"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:38
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Queries.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] "عنصرين"
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Queries.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr "العناصر {0} إلى {1}"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Queries.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] " / {0} عناصر من الكل"
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:46
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no queries for the moment."]
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no queries for the moment."
|
||||||
|
msgstr "<strong>لا شي هنا!</strong> لاتوجد استعلامات في الوقت الحالي."
|
||||||
|
|
||||||
|
#. <h5 class="modal-title" id="available-query-types-title">@T["Available Query Types"]</h5>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:87
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Available Query Types"
|
||||||
|
msgstr "أنواع الاستعلامات المتاحة"
|
||||||
|
|
||||||
|
#. <p class="p-3 mb-2 bg-warning text-white">@T["You need to enable a feature which provides a query source."] <a asp-action="Features" asp-controller="Admin" asp-area="OrchardCore.Features">@T["Go to Features"]</a></p>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:93
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "You need to enable a feature which provides a query source."
|
||||||
|
msgstr "تحتاج إلى تفعيل ميزة تتيح لك استعلام المصدر."
|
||||||
|
|
||||||
|
#. <p class="p-3 mb-2 bg-warning text-white">@T["You need to enable a feature which provides a query source."] <a asp-action="Features" asp-controller="Admin" asp-area="OrchardCore.Features">@T["Go to Features"]</a></p>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:93
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Go to Features"
|
||||||
|
msgstr "انتقل إلى المميزات"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:109
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:157
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Index.cshtml:168
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Index"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["SQL Query"])</h1></zone>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "SQL Query"
|
||||||
|
msgstr "استعلام SQL"
|
||||||
|
|
||||||
|
#. <label asp-for="DecodedQuery">@T["Template"]</label>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "Template"
|
||||||
|
msgstr "قالب"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["You can <a href=\"{0}\">click here</a> to query all content items.", Html.Raw(Url.Action("Query", "Admin", new { area = "OrchardCore.Queries", Query = matchAllQuery }))]</span>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "You can <a href=\"{0}\">click here</a> to query all content items."
|
||||||
|
msgstr "يمكنك <a href=\"{0}\">النقر هنا</a> للاستعلام عن كل عناصر المحتوى."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The SQL query uses standard SQL92 syntax and is converted based on the actual database. Tables will be prefixed automatically."]</span>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "The SQL query uses standard SQL92 syntax and is converted based on the actual database. Tables will be prefixed automatically."
|
||||||
|
msgstr "الاستعلام SQL يستخدم المعيار النصي SQL92 و تم تحويله استناداً إلى قاعدة البيانات المتوفرة. ستتم إضافة سابقة ثابته إلى مسميات جداول البيانات آلياً."
|
||||||
|
|
||||||
|
#. <label asp-for="Parameters">@T["Parameters"]</label>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "Parameters"
|
||||||
|
msgstr "عوامل متغيرة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["An optional Json object containing the parameter values for this query."]</span>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "An optional Json object containing the parameter values for this query."
|
||||||
|
msgstr "كائن JSON اختياري يحتوي على قيم العامل المتغير لهذا الاستعلام."
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-primary">@T["Query"]</button>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:42
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr "استعلام"
|
||||||
|
|
||||||
|
#. <label asp-for="RawSql">@T["Final SQL Query"]</label>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "Final SQL Query"
|
||||||
|
msgstr "استعلام SQL النهائي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The query as it will be executed by the SQL database."]</span>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:54
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "The query as it will be executed by the SQL database."
|
||||||
|
msgstr "سيتم تنفيذ الاستعلام كما هو بواسطة قواعد بيانات SQL."
|
||||||
|
|
||||||
|
#. <a href="@Url.Action("Create", "Admin", new { area = "OrchardCore.Queries", id = "Sql", query = Model.DecodedQuery })" class="btn btn-success">@T["Create"]</a>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:58
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "إنشاء"
|
||||||
|
|
||||||
|
#. <span class="text-muted">@T["Query executed in {0} ms", Model.Elapsed.TotalMilliseconds]</span>
|
||||||
|
#: OrchardCore.Queries\Views\Admin\Query.cshtml:66
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Admin.Query"
|
||||||
|
msgid "Query executed in {0} ms"
|
||||||
|
msgstr "تم تنفيذ الاستعلام في مدة {0} ملي ثانية"
|
||||||
|
|
||||||
|
#. <h5>@T["All Queries"]</h5>
|
||||||
|
#: OrchardCore.Queries\Views\Items\AllQueriesDeploymentStep.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.AllQueriesDeploymentStep.Edit"
|
||||||
|
msgid "All Queries"
|
||||||
|
msgstr "كل الاستعلامات"
|
||||||
|
|
||||||
|
#. <h5>@T["All Queries"]</h5>
|
||||||
|
#: OrchardCore.Queries\Views\Items\AllQueriesDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.AllQueriesDeploymentStep.Summary"
|
||||||
|
msgid "All Queries"
|
||||||
|
msgstr "كل الاستعلامات"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds all queries to the plan."]</span>
|
||||||
|
#: OrchardCore.Queries\Views\Items\AllQueriesDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.AllQueriesDeploymentStep.Summary"
|
||||||
|
msgid "Adds all queries to the plan."
|
||||||
|
msgstr "إضافة كل الاستعلامات إلى الخطة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["All Queries"]</h4>
|
||||||
|
#: OrchardCore.Queries\Views\Items\AllQueriesDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.AllQueriesDeploymentStep.Thumbnail"
|
||||||
|
msgid "All Queries"
|
||||||
|
msgstr "كل الاستعلامات"
|
||||||
|
|
||||||
|
#. <p>@T["Exports every query."]</p>
|
||||||
|
#: OrchardCore.Queries\Views\Items\AllQueriesDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.AllQueriesDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports every query."
|
||||||
|
msgstr "تصدير كافة الاستعلامات."
|
||||||
|
|
||||||
|
#. <h5>@T["Queried Content Items"]</h5>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Queried Content Items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The name of the Query which will be used to fetch content items."]</span>
|
||||||
|
#. <div class="hint">@T["The name of the Query which will be used to fetch content items."]</div>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Edit.cshtml:11
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The name of the Query which will be used to fetch content items."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ExportAsSetupRecipe">@T["Export As Setup recipe"]</label>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Export As Setup recipe"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Check if the data should be exported as a Setup recipe."]</span>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Check if the data should be exported as a Setup recipe."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="alert alert-warning">@T["If checked, you will have to manually declare variables for content item references like Content Picker Fields, Taxonomy Fields, Tags Fields, and List item IDs and replace them where needed in the recipe. Any reference to these content items will be lost."]</div>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Edit"
|
||||||
|
msgid "If checked, you will have to manually declare variables for content item references like Content Picker Fields, Taxonomy Fields, Tags Fields, and List item IDs and replace them where needed in the recipe. Any reference to these content items will be lost."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="QueryName">@T["Query"]</label>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="alert alert-warning">@T["Note: The Query must be configured to return Documents."]</div>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Note: The Query must be configured to return Documents."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="QueryParameters">@T["Parameters"]</label>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Edit.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="hint">@T["An optional JSON object containing the parameter values for this query."]</div>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Edit.cshtml:42
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Edit"
|
||||||
|
msgid "An optional JSON object containing the parameter values for this query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Content Items fetched by a Query"]</h5>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Content Items fetched by a Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Queried Content Items"]</h4>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Thumbnail.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Queried Content Items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports all content items fetched by a Query."]</p>
|
||||||
|
#: OrchardCore.Queries\Views\Items\QueryBasedContentDeploymentStep.Fields.Thumbnail.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Queries.Views.Items.QueryBasedContentDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports all content items fetched by a Query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
32
src/Twain.Web/Localization/ar/OrchardCore.ReCaptcha.Core.po
Normal file
32
src/Twain.Web/Localization/ar/OrchardCore.ReCaptcha.Core.po
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.ReCaptcha.Core.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 796\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 18:58\n"
|
||||||
|
|
||||||
|
#. context.ModelState.AddModelError("ReCaptcha", S["Failed to validate captcha"]);
|
||||||
|
#: OrchardCore.ReCaptcha.Core\ActionFilters\ValidateReCaptchaAttribute.cs:44
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.ActionFilters.ValidateReCaptchaAttribute"
|
||||||
|
msgid "Failed to validate captcha"
|
||||||
|
msgstr "فشل التحقق من رمز التحقق البشري"
|
||||||
|
|
||||||
|
#. reportError("ReCaptcha", S["Failed to validate captcha"]);
|
||||||
|
#: OrchardCore.ReCaptcha.Core\Services\ReCaptchaService.cs:96
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Services.ReCaptchaService"
|
||||||
|
msgid "Failed to validate captcha"
|
||||||
|
msgstr "فشل التحقق من رمز التحقق البشري"
|
||||||
|
|
||||||
|
#. _logger.LogWarning(S["Language with name {0} not found", language]);
|
||||||
|
#: OrchardCore.ReCaptcha.Core\TagHelpers\ReCaptchaTagHelper.cs:99
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.TagHelpers.ReCaptchaTagHelper"
|
||||||
|
msgid "Language with name {0} not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
152
src/Twain.Web/Localization/ar/OrchardCore.ReCaptcha.po
Normal file
152
src/Twain.Web/Localization/ar/OrchardCore.ReCaptcha.po
Normal file
@@ -0,0 +1,152 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.ReCaptcha.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 798\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-10-07 22:42\n"
|
||||||
|
|
||||||
|
#. .Add(S["Security"], security => security
|
||||||
|
#: OrchardCore.ReCaptcha\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.AdminMenu"
|
||||||
|
msgid "Security"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.ReCaptcha\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["reCaptcha"], S["reCaptcha"].PrefixPosition(), registration => registration
|
||||||
|
#. .Add(S["reCaptcha"], S["reCaptcha"].PrefixPosition(), registration => registration
|
||||||
|
#: OrchardCore.ReCaptcha\AdminMenu.cs:28
|
||||||
|
#: OrchardCore.ReCaptcha\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.AdminMenu"
|
||||||
|
msgid "reCaptcha"
|
||||||
|
msgstr "إعادة رمز التحقق البشري"
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<ReCaptchaSettings, DeploymentStartup>(S => S["ReCaptcha settings"], S => S["Exports the ReCaptcha settings."]);
|
||||||
|
#: OrchardCore.ReCaptcha\Startup.cs:34
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.DeploymentStartup"
|
||||||
|
msgid "ReCaptcha settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<ReCaptchaSettings, DeploymentStartup>(S => S["ReCaptcha settings"], S => S["Exports the ReCaptcha settings."]);
|
||||||
|
#: OrchardCore.ReCaptcha\Startup.cs:34
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.DeploymentStartup"
|
||||||
|
msgid "Exports the ReCaptcha settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. public override LocalizedString DisplayText => S["Validate ReCaptcha Task"];
|
||||||
|
#: OrchardCore.ReCaptcha\Workflows\ValidateReCaptchaTask.cs:31
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Workflows.ValidateReCaptchaTask"
|
||||||
|
msgid "Validate ReCaptcha Task"
|
||||||
|
msgstr "مهمة التحقق من الـ ReCaptcha"
|
||||||
|
|
||||||
|
#. public override LocalizedString Category => S["Validation"];
|
||||||
|
#: OrchardCore.ReCaptcha\Workflows\ValidateReCaptchaTask.cs:33
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Workflows.ValidateReCaptchaTask"
|
||||||
|
msgid "Validation"
|
||||||
|
msgstr "التحقق"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.ReCaptcha\Workflows\ValidateReCaptchaTask.cs:39
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Workflows.ValidateReCaptchaTask"
|
||||||
|
msgid "Done"
|
||||||
|
msgstr "تم"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.ReCaptcha\Workflows\ValidateReCaptchaTask.cs:39
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Workflows.ValidateReCaptchaTask"
|
||||||
|
msgid "Valid"
|
||||||
|
msgstr "صالح"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Valid"], S["Invalid"]);
|
||||||
|
#: OrchardCore.ReCaptcha\Workflows\ValidateReCaptchaTask.cs:39
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Workflows.ValidateReCaptchaTask"
|
||||||
|
msgid "Invalid"
|
||||||
|
msgstr "غير صالح"
|
||||||
|
|
||||||
|
#. updater.ModelState.TryAddModelError(Constants.ReCaptchaServerResponseHeaderName, S["Captcha validation failed. Try again."]);
|
||||||
|
#: OrchardCore.ReCaptcha\Workflows\ValidateReCaptchaTask.cs:52
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Workflows.ValidateReCaptchaTask"
|
||||||
|
msgid "Captcha validation failed. Try again."
|
||||||
|
msgstr "فشل التحقق من رمز التحقق البشري. حاول مرة أخرى."
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The current tenant will be reloaded when the settings are saved."]</p>
|
||||||
|
#: OrchardCore.ReCaptcha\Views\ReCaptchaSettings.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.ReCaptchaSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "ستتم إعادة تحميل نسخة النظام الحالية (tenant) عند حفظ الإعدادت."
|
||||||
|
|
||||||
|
#. <label asp-for="SiteKey">@T["Site Key"]</label>
|
||||||
|
#: OrchardCore.ReCaptcha\Views\ReCaptchaSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.ReCaptchaSettings.Edit"
|
||||||
|
msgid "Site Key"
|
||||||
|
msgstr "مفتاح الموقع"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Your Google's reCaptcha Site Key."]</span>
|
||||||
|
#: OrchardCore.ReCaptcha\Views\ReCaptchaSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.ReCaptchaSettings.Edit"
|
||||||
|
msgid "Your Google's reCaptcha Site Key."
|
||||||
|
msgstr "مفتاح الموقع الخاص بأداة قوقل للتحقق البشري (Google's reCaptcha)."
|
||||||
|
|
||||||
|
#. <label asp-for="SecretKey">@T["Secret Key"]</label>
|
||||||
|
#: OrchardCore.ReCaptcha\Views\ReCaptchaSettings.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.ReCaptchaSettings.Edit"
|
||||||
|
msgid "Secret Key"
|
||||||
|
msgstr "المفتاح السري"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Your Google's reCaptcha Secret Key."]</span>
|
||||||
|
#: OrchardCore.ReCaptcha\Views\ReCaptchaSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.ReCaptchaSettings.Edit"
|
||||||
|
msgid "Your Google's reCaptcha Secret Key."
|
||||||
|
msgstr "المفتاح السري الخاص بأداة قوقل للتحقق البشري (Google's reCaptcha)."
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Get your reCaptcha at"] <a href="https://developers.google.com/recaptcha/" target="_blank">https://developers.google.com/recaptcha/</a></span>
|
||||||
|
#: OrchardCore.ReCaptcha\Views\ReCaptchaSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.ReCaptchaSettings.Edit"
|
||||||
|
msgid "Get your reCaptcha at"
|
||||||
|
msgstr "أحصل على أداة التحقق البشري (reCaptcha) من خلال"
|
||||||
|
|
||||||
|
#. <div class="alert alert-warning">@T["ReCaptcha settings are not configured."]</div>
|
||||||
|
#: OrchardCore.ReCaptcha\Views\Items\ReCaptchaPart.cshtml:9
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.Items.ReCaptchaPart"
|
||||||
|
msgid "ReCaptcha settings are not configured."
|
||||||
|
msgstr "لم يتم ضبط إعدادات أداة التحقق البشري (reCaptcha)."
|
||||||
|
|
||||||
|
#: OrchardCore.ReCaptcha\Views\Items\ReCaptchaPart.Fields.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.Items.ReCaptchaPart.Fields.Edit"
|
||||||
|
msgid "<a {0}>ReCaptcha settings</a> are configured."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.ReCaptcha\Views\Items\ReCaptchaPart.Fields.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.Items.ReCaptchaPart.Fields.Edit"
|
||||||
|
msgid "<a {0}>ReCaptcha settings</a> are not configured. The captcha will not be displayed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4><i class="fa fa-shield-alt" aria-hidden="true"></i>@Model.Activity.GetTitleOrDefault(() => T["Validate ReCaptcha"])</h4>
|
||||||
|
#: OrchardCore.ReCaptcha\Views\Items\ValidateReCaptchaTask.Fields.Design.cshtml:4
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.Items.ValidateReCaptchaTask.Fields.Design"
|
||||||
|
msgid "Validate ReCaptcha"
|
||||||
|
msgstr "التحقق من رمز التحقق البشري (reCaptcha)"
|
||||||
|
|
||||||
|
#. <h4 class="card-title"><i class="fa fa-shield-alt" aria-hidden="true"></i>@T["Validate ReCaptcha"]</h4>
|
||||||
|
#: OrchardCore.ReCaptcha\Views\Items\ValidateReCaptchaTask.Fields.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.Items.ValidateReCaptchaTask.Fields.Thumbnail"
|
||||||
|
msgid "Validate ReCaptcha"
|
||||||
|
msgstr "التحقق من رمز التحقق البشري (reCaptcha)"
|
||||||
|
|
||||||
|
#. <p>@T["Validates the recaptcha token for the current HTTP context in which the workflow executes."]</p>
|
||||||
|
#: OrchardCore.ReCaptcha\Views\Items\ValidateReCaptchaTask.Fields.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.ReCaptcha.Views.Items.ValidateReCaptchaTask.Fields.Thumbnail"
|
||||||
|
msgid "Validates the recaptcha token for the current HTTP context in which the workflow executes."
|
||||||
|
msgstr "التحقق من رمز التحقق البشري (reCaptcha token) لطلب HTTP الحالي والمنفذ من مسير العمل."
|
||||||
|
|
||||||
20
src/Twain.Web/Localization/ar/OrchardCore.Recipes.Core.po
Normal file
20
src/Twain.Web/Localization/ar/OrchardCore.Recipes.Core.po
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Recipes.Core.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 866\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:39\n"
|
||||||
|
|
||||||
|
#. throw new ValidationException(S["The variable '{0}' was used in the recipe but not defined. Make sure you add the '{0}' variable in the '{1}' section of the recipe.", name, _globalMethodName]);
|
||||||
|
#: OrchardCore.Recipes.Core\VariablesMethodProvider.cs:30
|
||||||
|
msgctxt "OrchardCore.Recipes.VariablesMethodProvider"
|
||||||
|
msgid "The variable '{0}' was used in the recipe but not defined. Make sure you add the '{0}' variable in the '{1}' section of the recipe."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
150
src/Twain.Web/Localization/ar/OrchardCore.Recipes.po
Normal file
150
src/Twain.Web/Localization/ar/OrchardCore.Recipes.po
Normal file
@@ -0,0 +1,150 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Recipes.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 800\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:23\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Recipes\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Recipes.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. .Add(S["Recipes"], S["Recipes"].PrefixPosition(), recipes => recipes
|
||||||
|
#. .Add(S["Recipes"], S["Recipes"].PrefixPosition(), recipes => recipes
|
||||||
|
#: OrchardCore.Recipes\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.Recipes\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Recipes.AdminMenu"
|
||||||
|
msgid "Recipes"
|
||||||
|
msgstr "الوصفات"
|
||||||
|
|
||||||
|
#. await Context.Output.WriteLineAsync(S["No recipes found."]);
|
||||||
|
#: OrchardCore.Recipes\Commands\RecipesCommands.cs:30
|
||||||
|
msgctxt "OrchardCore.Recipes.Commands.RecipesCommands"
|
||||||
|
msgid "No recipes found."
|
||||||
|
msgstr "لا توجد وصفات."
|
||||||
|
|
||||||
|
#. await Context.Output.WriteLineAsync(S["List of available recipes"]);
|
||||||
|
#: OrchardCore.Recipes\Commands\RecipesCommands.cs:34
|
||||||
|
msgctxt "OrchardCore.Recipes.Commands.RecipesCommands"
|
||||||
|
msgid "List of available recipes"
|
||||||
|
msgstr "قائمة بالوصفات المتاحة"
|
||||||
|
|
||||||
|
#. await Context.Output.WriteLineAsync(S["Recipe: {0}", recipe.Name]);
|
||||||
|
#: OrchardCore.Recipes\Commands\RecipesCommands.cs:40
|
||||||
|
msgctxt "OrchardCore.Recipes.Commands.RecipesCommands"
|
||||||
|
msgid "Recipe: {0}"
|
||||||
|
msgstr "الوصفه: {0}"
|
||||||
|
|
||||||
|
#. await Context.Output.WriteLineAsync(S[" Version: {0}", recipe.Version]);
|
||||||
|
#: OrchardCore.Recipes\Commands\RecipesCommands.cs:41
|
||||||
|
msgctxt "OrchardCore.Recipes.Commands.RecipesCommands"
|
||||||
|
msgid " Version: {0}"
|
||||||
|
msgstr " الإصدار: {0}"
|
||||||
|
|
||||||
|
#. await Context.Output.WriteLineAsync(S[" Tags: {0}", string.Join(",", recipe.Tags)]);
|
||||||
|
#: OrchardCore.Recipes\Commands\RecipesCommands.cs:42
|
||||||
|
msgctxt "OrchardCore.Recipes.Commands.RecipesCommands"
|
||||||
|
msgid " Tags: {0}"
|
||||||
|
msgstr " العلامات: {0}"
|
||||||
|
|
||||||
|
#. await Context.Output.WriteLineAsync(S[" Description: {0}", recipe.Description]);
|
||||||
|
#: OrchardCore.Recipes\Commands\RecipesCommands.cs:43
|
||||||
|
msgctxt "OrchardCore.Recipes.Commands.RecipesCommands"
|
||||||
|
msgid " Description: {0}"
|
||||||
|
msgstr " الوصف: {0}"
|
||||||
|
|
||||||
|
#. await Context.Output.WriteLineAsync(S[" Author: {0}", recipe.Author]);
|
||||||
|
#: OrchardCore.Recipes\Commands\RecipesCommands.cs:44
|
||||||
|
msgctxt "OrchardCore.Recipes.Commands.RecipesCommands"
|
||||||
|
msgid " Author: {0}"
|
||||||
|
msgstr " المؤلف: {0}"
|
||||||
|
|
||||||
|
#. await Context.Output.WriteLineAsync(S[" Website: {0}", recipe.WebSite]);
|
||||||
|
#: OrchardCore.Recipes\Commands\RecipesCommands.cs:45
|
||||||
|
msgctxt "OrchardCore.Recipes.Commands.RecipesCommands"
|
||||||
|
msgid " Website: {0}"
|
||||||
|
msgstr " الموقع: {0}"
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["Recipe was not found."]);
|
||||||
|
#: OrchardCore.Recipes\Controllers\AdminController.cs:99
|
||||||
|
msgctxt "OrchardCore.Recipes.Controllers.AdminController"
|
||||||
|
msgid "Recipe was not found."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["The recipe '{0}' has been run successfully.", recipe.DisplayName]);
|
||||||
|
#: OrchardCore.Recipes\Controllers\AdminController.cs:124
|
||||||
|
msgctxt "OrchardCore.Recipes.Controllers.AdminController"
|
||||||
|
msgid "The recipe '{0}' has been run successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Recipes"])</h1></zone>
|
||||||
|
#. <a id="btn-run-@Html.GenerateIdFromName(recipe.Name)" asp-action="Execute" asp-route-basePath="@recipe.BasePath" asp-route-fileName="@recipe.FileName" role="button" class="btn btn-primary btn-sm float-end" data-title="@T["Recipes"]" data-message="@T["Are you sure you want to run the recipe?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="RemoveUrl UnsafeUrl">@T["Run"]</a>
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:4
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Recipes.Views.Admin.Index"
|
||||||
|
msgid "Recipes"
|
||||||
|
msgstr "الوصفات"
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The current tenant will be reloaded when the recipe is executed."]</p>
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Recipes.Views.Admin.Index"
|
||||||
|
msgid "The current tenant will be reloaded when the recipe is executed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input id="search-box" class="form-control" placeholder="@T["Search"]" type="search" autofocus>
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Recipes.Views.Admin.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <a id="btn-run-@Html.GenerateIdFromName(recipe.Name)" asp-action="Execute" asp-route-basePath="@recipe.BasePath" asp-route-fileName="@recipe.FileName" role="button" class="btn btn-primary btn-sm float-end" data-title="@T["Recipes"]" data-message="@T["Are you sure you want to run the recipe?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="RemoveUrl UnsafeUrl">@T["Run"]</a>
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Recipes.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to run the recipe?"
|
||||||
|
msgstr "هل أنت متأكد من أنك تريد حذف هذه الوصفة؟"
|
||||||
|
|
||||||
|
#. <a id="btn-run-@Html.GenerateIdFromName(recipe.Name)" asp-action="Execute" asp-route-basePath="@recipe.BasePath" asp-route-fileName="@recipe.FileName" role="button" class="btn btn-primary btn-sm float-end" data-title="@T["Recipes"]" data-message="@T["Are you sure you want to run the recipe?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="RemoveUrl UnsafeUrl">@T["Run"]</a>
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Recipes.Views.Admin.Index"
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr "نعم"
|
||||||
|
|
||||||
|
#. <a id="btn-run-@Html.GenerateIdFromName(recipe.Name)" asp-action="Execute" asp-route-basePath="@recipe.BasePath" asp-route-fileName="@recipe.FileName" role="button" class="btn btn-primary btn-sm float-end" data-title="@T["Recipes"]" data-message="@T["Are you sure you want to run the recipe?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="RemoveUrl UnsafeUrl">@T["Run"]</a>
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Recipes.Views.Admin.Index"
|
||||||
|
msgid "No"
|
||||||
|
msgstr "لا"
|
||||||
|
|
||||||
|
#. <a id="btn-run-@Html.GenerateIdFromName(recipe.Name)" asp-action="Execute" asp-route-basePath="@recipe.BasePath" asp-route-fileName="@recipe.FileName" role="button" class="btn btn-primary btn-sm float-end" data-title="@T["Recipes"]" data-message="@T["Are you sure you want to run the recipe?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="RemoveUrl UnsafeUrl">@T["Run"]</a>
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Recipes.Views.Admin.Index"
|
||||||
|
msgid "Run"
|
||||||
|
msgstr "تشغيل"
|
||||||
|
|
||||||
|
#. @T["Setup Recipe"]
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:49
|
||||||
|
msgctxt "OrchardCore.Recipes.Views.Admin.Index"
|
||||||
|
msgid "Setup Recipe"
|
||||||
|
msgstr "تثبيت وصفة"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> Your search returned no results."]
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:70
|
||||||
|
msgctxt "OrchardCore.Recipes.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> Your search returned no results."
|
||||||
|
msgstr "<strong>لا شىء</strong> لا توجد أي نتائج للبحث."
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no recipes for the moment."]
|
||||||
|
#: OrchardCore.Recipes\Views\Admin\Index.cshtml:77
|
||||||
|
msgctxt "OrchardCore.Recipes.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no recipes for the moment."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
98
src/Twain.Web/Localization/ar/OrchardCore.ReverseProxy.po
Normal file
98
src/Twain.Web/Localization/ar/OrchardCore.ReverseProxy.po
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.ReverseProxy.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 802\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-03 08:04\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.ReverseProxy\AdminMenu.cs:22
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.ReverseProxy\AdminMenu.cs:23
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["Reverse Proxy"], S["Reverse Proxy"].PrefixPosition(), entry => entry
|
||||||
|
#. .Add(S["Reverse Proxy"], S["Reverse Proxy"].PrefixPosition(), entry => entry
|
||||||
|
#: OrchardCore.ReverseProxy\AdminMenu.cs:24
|
||||||
|
#: OrchardCore.ReverseProxy\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.AdminMenu"
|
||||||
|
msgid "Reverse Proxy"
|
||||||
|
msgstr "الوكيل العكسي"
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<ReverseProxySettings, DeploymentStartup>(S => S["Reverse Proxy settings"], S => S["Exports the Reverse Proxy settings."]);
|
||||||
|
#: OrchardCore.ReverseProxy\Startup.cs:47
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.DeploymentStartup"
|
||||||
|
msgid "Reverse Proxy settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<ReverseProxySettings, DeploymentStartup>(S => S["Reverse Proxy settings"], S => S["Exports the Reverse Proxy settings."]);
|
||||||
|
#: OrchardCore.ReverseProxy\Startup.cs:47
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.DeploymentStartup"
|
||||||
|
msgid "Exports the Reverse Proxy settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-sync" aria-hidden="true"></i></span><span class="title">@T["Reverse Proxy"]</span>
|
||||||
|
#: OrchardCore.ReverseProxy\Views\NavigationItemText-reverseproxy.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.Views.NavigationItemText-reverseproxy.Id"
|
||||||
|
msgid "Reverse Proxy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["The current tenant will be reloaded when the settings are saved."]
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.Views.ReverseProxySettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Enables the forwarding of the HTTP header X-Forwarded-For"]
|
||||||
|
#. <span class="hint">@T["Enables the forwarding of the HTTP header X-Forwarded-For"]</span>
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:11
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.Views.ReverseProxySettings.Edit"
|
||||||
|
msgid "Enables the forwarding of the HTTP header X-Forwarded-For"
|
||||||
|
msgstr "تفعيل خاصية إعادة التوجيه (X-Forwarded-For) المضمنة في ترويسة HTTP"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Current request value;"] @Context.Connection.RemoteIpAddress</span>
|
||||||
|
#. <span class="hint">@T["Current request value;"] @Context.Request.Scheme</span>
|
||||||
|
#. <span class="hint">@T["Current request value;"] @Context.Request.Host</span>
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:15
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:26
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.Views.ReverseProxySettings.Edit"
|
||||||
|
msgid "Current request value;"
|
||||||
|
msgstr "قيمة الطلب الحالي؛"
|
||||||
|
|
||||||
|
#. @T["Enables the forwarding of the HTTP header X-Forwarded-Proto"]
|
||||||
|
#. <span class="hint">@T["Enables the forwarding of the HTTP header X-Forwarded-Proto"]</span>
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:22
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:25
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.Views.ReverseProxySettings.Edit"
|
||||||
|
msgid "Enables the forwarding of the HTTP header X-Forwarded-Proto"
|
||||||
|
msgstr "تفعيل خاصية إعادة التوجيه (X-Forwarded-Proto) المضمنة في ترويسة HTTP"
|
||||||
|
|
||||||
|
#. @T["Enables the forwarding of the HTTP header X-Forwarded-Host"]
|
||||||
|
#. <span class="hint">@T["Enables the forwarding of the HTTP header X-Forwarded-Host"]</span>
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:33
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:36
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.Views.ReverseProxySettings.Edit"
|
||||||
|
msgid "Enables the forwarding of the HTTP header X-Forwarded-Host"
|
||||||
|
msgstr "تفعيل خاصية إعادة التوجيه (X-Forwarded-Host) المضمنة في ترويسة HTTP"
|
||||||
|
|
||||||
|
#. @T["Documentation available at: {0}", "https://docs.microsoft.com/en-us/aspnet/core/host-and-deploy/proxy-load-balancer?view=aspnetcore-3.0"]
|
||||||
|
#: OrchardCore.ReverseProxy\Views\ReverseProxySettings.Edit.cshtml:41
|
||||||
|
msgctxt "OrchardCore.ReverseProxy.Views.ReverseProxySettings.Edit"
|
||||||
|
msgid "Documentation available at: {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
283
src/Twain.Web/Localization/ar/OrchardCore.Roles.po
Normal file
283
src/Twain.Web/Localization/ar/OrchardCore.Roles.po
Normal file
@@ -0,0 +1,283 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Roles.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 804\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:24\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Security"], security => security
|
||||||
|
#: OrchardCore.Roles\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.Roles.AdminMenu"
|
||||||
|
msgid "Security"
|
||||||
|
msgstr "الأمان"
|
||||||
|
|
||||||
|
#. .Add(S["Roles"], S["Roles"].PrefixPosition(), roles => roles
|
||||||
|
#. .Add(S["Roles"], S["Roles"].PrefixPosition(), roles => roles
|
||||||
|
#: OrchardCore.Roles\AdminMenu.cs:25
|
||||||
|
#: OrchardCore.Roles\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Roles.AdminMenu"
|
||||||
|
msgid "Roles"
|
||||||
|
msgstr "الأدوار"
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(string.Empty, S["Invalid role name."]);
|
||||||
|
#: OrchardCore.Roles\Controllers\AdminController.cs:100
|
||||||
|
msgctxt "OrchardCore.Roles.Controllers.AdminController"
|
||||||
|
msgid "Invalid role name."
|
||||||
|
msgstr "إسم الدور غير صحيح."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(string.Empty, S["The role is already used."]);
|
||||||
|
#: OrchardCore.Roles\Controllers\AdminController.cs:105
|
||||||
|
msgctxt "OrchardCore.Roles.Controllers.AdminController"
|
||||||
|
msgid "The role is already used."
|
||||||
|
msgstr "الدور مستخدم مسبقاً."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Role created successfully."]);
|
||||||
|
#: OrchardCore.Roles\Controllers\AdminController.cs:115
|
||||||
|
msgctxt "OrchardCore.Roles.Controllers.AdminController"
|
||||||
|
msgid "Role created successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Role deleted successfully."]);
|
||||||
|
#: OrchardCore.Roles\Controllers\AdminController.cs:150
|
||||||
|
msgctxt "OrchardCore.Roles.Controllers.AdminController"
|
||||||
|
msgid "Role deleted successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["Could not delete this role."]);
|
||||||
|
#: OrchardCore.Roles\Controllers\AdminController.cs:156
|
||||||
|
msgctxt "OrchardCore.Roles.Controllers.AdminController"
|
||||||
|
msgid "Could not delete this role."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Role updated successfully."]);
|
||||||
|
#: OrchardCore.Roles\Controllers\AdminController.cs:228
|
||||||
|
msgctxt "OrchardCore.Roles.Controllers.AdminController"
|
||||||
|
msgid "Role updated successfully."
|
||||||
|
msgstr "تم تعديل الدور بنجاح."
|
||||||
|
|
||||||
|
#. var title = String.IsNullOrWhiteSpace(feature.Name) ? S["{0} Feature", feature.Id] : feature.Name;
|
||||||
|
#: OrchardCore.Roles\Controllers\AdminController.cs:276
|
||||||
|
msgctxt "OrchardCore.Roles.Controllers.AdminController"
|
||||||
|
msgid "{0} Feature"
|
||||||
|
msgstr "ميزة {0}"
|
||||||
|
|
||||||
|
#. return IdentityResult.Failed(new IdentityError { Description = S["Can't delete system roles."] });
|
||||||
|
#: OrchardCore.Roles\Services\RoleStore.cs:89
|
||||||
|
msgctxt "OrchardCore.Roles.Services.RoleStore"
|
||||||
|
msgid "Can't delete system roles."
|
||||||
|
msgstr "لا يمكن حذف أدوار النظام."
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-user-lock" aria-hidden="true"></i></span><span class="title">@T["Roles"]</span>
|
||||||
|
#: OrchardCore.Roles\Views\NavigationItemText-roles.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Roles.Views.NavigationItemText-roles.Id"
|
||||||
|
msgid "Roles"
|
||||||
|
msgstr "الأدوار"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Role"])</h1></zone>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Create.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Create"
|
||||||
|
msgid "Create Role"
|
||||||
|
msgstr "إنشاء دور"
|
||||||
|
|
||||||
|
#. <label asp-for="RoleName">@T["Role name"]</label>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Create.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Create"
|
||||||
|
msgid "Role name"
|
||||||
|
msgstr "إسم الدور"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="RoleName" class="text-danger">@T["The role name is required."]</span>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Create.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Create"
|
||||||
|
msgid "The role name is required."
|
||||||
|
msgstr "أسم الدور مطلوب."
|
||||||
|
|
||||||
|
#. <label asp-for="RoleDescription">@T["Role description"]</label>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Create.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Create"
|
||||||
|
msgid "Role description"
|
||||||
|
msgstr "وصف الدور"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Create.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Create"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr "إنشاء"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Create.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Role {0}", Model.Name])</h1></zone>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Edit Role {0}"
|
||||||
|
msgstr "تحرير الدور {0}"
|
||||||
|
|
||||||
|
#. <input id="search-box" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <h2>@T["Edit Role Detail"]</h2>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Edit Role Detail"
|
||||||
|
msgstr "تعديل تفاصيل الدور"
|
||||||
|
|
||||||
|
#. <label asp-for="RoleDescription">@T["Role description"]</label>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Role description"
|
||||||
|
msgstr "وصف الدور"
|
||||||
|
|
||||||
|
#. <h2>@T["Role permissions"]</h2>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Role permissions"
|
||||||
|
msgstr "أذونات الدور"
|
||||||
|
|
||||||
|
#. @T["Allow"] <span class="hint dashed">@T["Permission is granted explicitly."]</span>
|
||||||
|
#. <th class="col-1">@T["Allow"]</th>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:28
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:50
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Allow"
|
||||||
|
msgstr "سماح"
|
||||||
|
|
||||||
|
#. @T["Allow"] <span class="hint dashed">@T["Permission is granted explicitly."]</span>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Permission is granted explicitly."
|
||||||
|
msgstr "الاذوننات يتم منحها تصريحياً."
|
||||||
|
|
||||||
|
#. @T["Effective"] <span class="hint dashed">@T["Permission is implied by a higher level permission, or explicitly granted."]</span>
|
||||||
|
#. <th class="col-1">@T["Effective"]</th>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:31
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Effective"
|
||||||
|
msgstr "فعال"
|
||||||
|
|
||||||
|
#. @T["Effective"] <span class="hint dashed">@T["Permission is implied by a higher level permission, or explicitly granted."]</span>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:31
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Permission is implied by a higher level permission, or explicitly granted."
|
||||||
|
msgstr "التصريح ضمنيا من خلال إذن أعلى أو ممنوح صراحة."
|
||||||
|
|
||||||
|
#. <th class="col-10">@T["Permission"]</th>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:49
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Permission"
|
||||||
|
msgstr "صلاحية"
|
||||||
|
|
||||||
|
#. <span class="badge bg-danger" data-bs-toggle="tooltip" data-html="true" title="@T["This permission could allow a user to elevate their other permissions. Grant it with extreme consideration."]">@T["Security Critical"]</span>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:63
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "This permission could allow a user to elevate their other permissions. Grant it with extreme consideration."
|
||||||
|
msgstr "هذه الصلاحية تسمح للمستخدم برفع صلاحياته الآخرى. امنحها مع النظر الشديد."
|
||||||
|
|
||||||
|
#. <span class="badge bg-danger" data-bs-toggle="tooltip" data-html="true" title="@T["This permission could allow a user to elevate their other permissions. Grant it with extreme consideration."]">@T["Security Critical"]</span>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:63
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Security Critical"
|
||||||
|
msgstr "الأمان الحرج"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:87
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Edit.cshtml:88
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Roles"])</h1></zone>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Index.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Index"
|
||||||
|
msgid "Roles"
|
||||||
|
msgstr "الأدوار"
|
||||||
|
|
||||||
|
#. <input id="search-box" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Index.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#. <a asp-route-action="Create" class="btn btn-secondary create" role="button">@T["Add Role"]</a>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Index.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Index"
|
||||||
|
msgid "Add Role"
|
||||||
|
msgstr "إضافة دور"
|
||||||
|
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to delete this role?"
|
||||||
|
msgstr "هل أنت متأكد من أنك تريد حذف هذه المجموعة؟"
|
||||||
|
|
||||||
|
#. <a class="edit btn btn-primary btn-sm" role="button" asp-action="Edit" asp-route-id="@Model.RoleEntries[i].Name">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Index.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. <a class="delete btn btn-danger btn-sm" asp-route-id="@Model.RoleEntries[i].Name" role="button" asp-action="Delete" data-url-af="UnsafeUrl RemoveUrl" data-title="@T["Delete Role"]" data-message="@message">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Index.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Index"
|
||||||
|
msgid "Delete Role"
|
||||||
|
msgstr "حذف الدور"
|
||||||
|
|
||||||
|
#. <a class="delete btn btn-danger btn-sm" asp-route-id="@Model.RoleEntries[i].Name" role="button" asp-action="Delete" data-url-af="UnsafeUrl RemoveUrl" data-title="@T["Delete Role"]" data-message="@message">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Index.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> Your search returned no results."]
|
||||||
|
#: OrchardCore.Roles\Views\Admin\Index.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> Your search returned no results."
|
||||||
|
msgstr "<strong>لا شىء</strong> لا توجد أي نتائج للبحث."
|
||||||
|
|
||||||
|
#. <h5>@T["All Roles"]</h5>
|
||||||
|
#: OrchardCore.Roles\Views\Items\AllRolesDeploymentStep.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Items.AllRolesDeploymentStep.Edit"
|
||||||
|
msgid "All Roles"
|
||||||
|
msgstr "كل الأدوار"
|
||||||
|
|
||||||
|
#. <h5>@T["All Roles"]</h5>
|
||||||
|
#: OrchardCore.Roles\Views\Items\AllRolesDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Items.AllRolesDeploymentStep.Summary"
|
||||||
|
msgid "All Roles"
|
||||||
|
msgstr "كل الأدوار"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds all roles to the plan."]</span>
|
||||||
|
#: OrchardCore.Roles\Views\Items\AllRolesDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Items.AllRolesDeploymentStep.Summary"
|
||||||
|
msgid "Adds all roles to the plan."
|
||||||
|
msgstr "إضافة كل الأدوار إلى الخطة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["All Roles"]</h4>
|
||||||
|
#: OrchardCore.Roles\Views\Items\AllRolesDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Items.AllRolesDeploymentStep.Thumbnail"
|
||||||
|
msgid "All Roles"
|
||||||
|
msgstr "كل الأدوار"
|
||||||
|
|
||||||
|
#. <p>@T["Exports every role."]</p>
|
||||||
|
#: OrchardCore.Roles\Views\Items\AllRolesDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Roles.Views.Items.AllRolesDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports every role."
|
||||||
|
msgstr "تصدير كل دور."
|
||||||
|
|
||||||
538
src/Twain.Web/Localization/ar/OrchardCore.Rules.po
Normal file
538
src/Twain.Web/Localization/ar/OrchardCore.Rules.po
Normal file
@@ -0,0 +1,538 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Rules.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 806\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:38\n"
|
||||||
|
|
||||||
|
#. (S) => S["Equals"],
|
||||||
|
#: OrchardCore.Rules\Services\ConditionOperatorConfigureOptions.cs:14
|
||||||
|
msgctxt "OrchardCore.Rules.Services.ConditionOperatorConfigureOptions"
|
||||||
|
msgid "Equals"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. (S) => S["Does not equal"],
|
||||||
|
#: OrchardCore.Rules\Services\ConditionOperatorConfigureOptions.cs:20
|
||||||
|
msgctxt "OrchardCore.Rules.Services.ConditionOperatorConfigureOptions"
|
||||||
|
msgid "Does not equal"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. (S) => S["Starts with"],
|
||||||
|
#: OrchardCore.Rules\Services\ConditionOperatorConfigureOptions.cs:26
|
||||||
|
msgctxt "OrchardCore.Rules.Services.ConditionOperatorConfigureOptions"
|
||||||
|
msgid "Starts with"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. (S) => S["Does not start with"],
|
||||||
|
#: OrchardCore.Rules\Services\ConditionOperatorConfigureOptions.cs:32
|
||||||
|
msgctxt "OrchardCore.Rules.Services.ConditionOperatorConfigureOptions"
|
||||||
|
msgid "Does not start with"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. (S) => S["Ends with"],
|
||||||
|
#: OrchardCore.Rules\Services\ConditionOperatorConfigureOptions.cs:38
|
||||||
|
msgctxt "OrchardCore.Rules.Services.ConditionOperatorConfigureOptions"
|
||||||
|
msgid "Ends with"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. (S) => S["Does not end with"],
|
||||||
|
#: OrchardCore.Rules\Services\ConditionOperatorConfigureOptions.cs:44
|
||||||
|
msgctxt "OrchardCore.Rules.Services.ConditionOperatorConfigureOptions"
|
||||||
|
msgid "Does not end with"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. (S) => S["Contains"],
|
||||||
|
#: OrchardCore.Rules\Services\ConditionOperatorConfigureOptions.cs:50
|
||||||
|
msgctxt "OrchardCore.Rules.Services.ConditionOperatorConfigureOptions"
|
||||||
|
msgid "Contains"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. (S) => S["Does not contain"],
|
||||||
|
#: OrchardCore.Rules\Services\ConditionOperatorConfigureOptions.cs:56
|
||||||
|
msgctxt "OrchardCore.Rules.Services.ConditionOperatorConfigureOptions"
|
||||||
|
msgid "Does not contain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Add"]
|
||||||
|
#: OrchardCore.Rules\Views\Condition.Summary.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Condition.Summary"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Rules\Views\Condition.Summary.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Condition.Summary"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Rules\Views\Condition.Summary.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Condition.Summary"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-primary btn-sm condition-thumbnail" data-target-url="@Model.TargetUrl">@T["Add"]</a>
|
||||||
|
#: OrchardCore.Rules\Views\Condition.Thumbnail.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Condition.Thumbnail"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5 class="modal-title" id="available-rules-title">@T["Available Rules"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\ConditionsModal.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Rules.Views.ConditionsModal"
|
||||||
|
msgid "Available Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="form-control" id="search-box" type="search" placeholder="@T["Filter"]" aria-label="@T["Filter"]" autofocus />
|
||||||
|
#. <input class="form-control" id="search-box" type="search" placeholder="@T["Filter"]" aria-label="@T["Filter"]" autofocus />
|
||||||
|
#: OrchardCore.Rules\Views\ConditionsModal.cshtml:15
|
||||||
|
#: OrchardCore.Rules\Views\ConditionsModal.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Rules.Views.ConditionsModal"
|
||||||
|
msgid "Filter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.Rules\Views\ConditionsModal.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Rules.Views.ConditionsModal"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Add"]
|
||||||
|
#: OrchardCore.Rules\Views\Rule.Summary.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Rule.Summary"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["All"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\Items\AllCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.AllCondition.Fields.Edit"
|
||||||
|
msgid "All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayText">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\AllCondition.Fields.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.AllCondition.Fields.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["All conditions"]</span><span class="ms-2 hint dashed">@Model.Value.DisplayText</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\AllCondition.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.AllCondition.Fields.Summary"
|
||||||
|
msgid "All conditions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["All condition group"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\AllCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.AllCondition.Fields.Thumbnail"
|
||||||
|
msgid "All condition group"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["An all condition group contains other conditions which are all required to be true."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\AllCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.AllCondition.Fields.Thumbnail"
|
||||||
|
msgid "An all condition group contains other conditions which are all required to be true."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Any"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\Items\AnyCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.AnyCondition.Fields.Edit"
|
||||||
|
msgid "Any"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayText">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\AnyCondition.Fields.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.AnyCondition.Fields.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Any conditions"]</span><span class="ms-2 hint dashed">@Model.Value.DisplayText</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\AnyCondition.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.AnyCondition.Fields.Summary"
|
||||||
|
msgid "Any conditions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Any condition"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\AnyCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.AnyCondition.Fields.Thumbnail"
|
||||||
|
msgid "Any condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["An any condition group contains other conditions but only requires any condition to be true."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\AnyCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.AnyCondition.Fields.Thumbnail"
|
||||||
|
msgid "An any condition group contains other conditions but only requires any condition to be true."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Boolean"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\Items\BooleanCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.BooleanCondition.Fields.Edit"
|
||||||
|
msgid "Boolean"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["True"]
|
||||||
|
#: OrchardCore.Rules\Views\Items\BooleanCondition.Fields.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.BooleanCondition.Fields.Edit"
|
||||||
|
msgid "True"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["False"]
|
||||||
|
#: OrchardCore.Rules\Views\Items\BooleanCondition.Fields.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.BooleanCondition.Fields.Edit"
|
||||||
|
msgid "False"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Boolean condition"]</span><span class="ms-2 hint dashed">@Model.Value.Value.ToString()</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\BooleanCondition.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.BooleanCondition.Fields.Summary"
|
||||||
|
msgid "Boolean condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Boolean condition"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\BooleanCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.BooleanCondition.Fields.Thumbnail"
|
||||||
|
msgid "Boolean condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["A boolean condition can be either true or false."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\BooleanCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.BooleanCondition.Fields.Thumbnail"
|
||||||
|
msgid "A boolean condition can be either true or false."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="alert message-warning mb-0 ms-0 mt-3 me-3">@T["No conditions found. Please add at least one condition."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\ConditionGroup.Fields.Summary.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.ConditionGroup.Fields.Summary"
|
||||||
|
msgid "No conditions found. Please add at least one condition."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Content type"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\Items\ContentTypeCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.ContentTypeCondition.Fields.Edit"
|
||||||
|
msgid "Content type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SelectedOperation">@T["Operation"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\ContentTypeCondition.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.ContentTypeCondition.Fields.Edit"
|
||||||
|
msgid "Operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Select the rule operator."]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\ContentTypeCondition.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.ContentTypeCondition.Fields.Edit"
|
||||||
|
msgid "Select the rule operator."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Value">@T["Value"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\ContentTypeCondition.Fields.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.ContentTypeCondition.Fields.Edit"
|
||||||
|
msgid "Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The value for the operation."]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\ContentTypeCondition.Fields.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.ContentTypeCondition.Fields.Edit"
|
||||||
|
msgid "The value for the operation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Content type"]</span><span class="ms-2 hint dashed">@displayText @Model.Value.Value</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\ContentTypeCondition.Fields.Summary.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.ContentTypeCondition.Fields.Summary"
|
||||||
|
msgid "Content type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Content type condition"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\ContentTypeCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.ContentTypeCondition.Fields.Thumbnail"
|
||||||
|
msgid "Content type condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["A content type condition evaluates the currently displayed content types against a value."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\ContentTypeCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.ContentTypeCondition.Fields.Thumbnail"
|
||||||
|
msgid "A content type condition evaluates the currently displayed content types against a value."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Culture"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\Items\CultureCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.CultureCondition.Fields.Edit"
|
||||||
|
msgid "Culture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SelectedOperation">@T["Operation"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\CultureCondition.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.CultureCondition.Fields.Edit"
|
||||||
|
msgid "Operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Select the condition operator."]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\CultureCondition.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.CultureCondition.Fields.Edit"
|
||||||
|
msgid "Select the condition operator."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Value">@T["Value"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\CultureCondition.Fields.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.CultureCondition.Fields.Edit"
|
||||||
|
msgid "Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The value for the operation."]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\CultureCondition.Fields.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.CultureCondition.Fields.Edit"
|
||||||
|
msgid "The value for the operation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Culture"]</span><span class="ms-2 hint dashed">@displayText @Model.Value.Value</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\CultureCondition.Fields.Summary.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.CultureCondition.Fields.Summary"
|
||||||
|
msgid "Culture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Culture condition"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\CultureCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.CultureCondition.Fields.Thumbnail"
|
||||||
|
msgid "Culture condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["A culture condition evaluates the current ui culture against a value."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\CultureCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.CultureCondition.Fields.Thumbnail"
|
||||||
|
msgid "A culture condition evaluates the current ui culture against a value."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Homepage"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\Items\HomepageCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.HomepageCondition.Fields.Edit"
|
||||||
|
msgid "Homepage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Is homepage"]
|
||||||
|
#: OrchardCore.Rules\Views\Items\HomepageCondition.Fields.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.HomepageCondition.Fields.Edit"
|
||||||
|
msgid "Is homepage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Is not homepage"]
|
||||||
|
#: OrchardCore.Rules\Views\Items\HomepageCondition.Fields.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.HomepageCondition.Fields.Edit"
|
||||||
|
msgid "Is not homepage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Is homepage"]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\HomepageCondition.Fields.Summary.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.HomepageCondition.Fields.Summary"
|
||||||
|
msgid "Is homepage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Is not homepage"]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\HomepageCondition.Fields.Summary.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.HomepageCondition.Fields.Summary"
|
||||||
|
msgid "Is not homepage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Homepage condition"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\HomepageCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.HomepageCondition.Fields.Thumbnail"
|
||||||
|
msgid "Homepage condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["Whether the current page is the site homepage."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\HomepageCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.HomepageCondition.Fields.Thumbnail"
|
||||||
|
msgid "Whether the current page is the site homepage."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Is anonymous condition"]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\IsAnonymousCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.IsAnonymousCondition.Fields.Edit"
|
||||||
|
msgid "Is anonymous condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Is anonymous"]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\IsAnonymousCondition.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.IsAnonymousCondition.Fields.Summary"
|
||||||
|
msgid "Is anonymous"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Is anonymous condition"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\IsAnonymousCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.IsAnonymousCondition.Fields.Thumbnail"
|
||||||
|
msgid "Is anonymous condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["Whether the current user is anonymous, i.e. not authenticated."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\IsAnonymousCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.IsAnonymousCondition.Fields.Thumbnail"
|
||||||
|
msgid "Whether the current user is anonymous, i.e. not authenticated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Is authenticated condition"]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\IsAuthenticatedCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.IsAuthenticatedCondition.Fields.Edit"
|
||||||
|
msgid "Is authenticated condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Is authenticated"]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\IsAuthenticatedCondition.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.IsAuthenticatedCondition.Fields.Summary"
|
||||||
|
msgid "Is authenticated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Is authenticated condition"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\IsAuthenticatedCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.IsAuthenticatedCondition.Fields.Thumbnail"
|
||||||
|
msgid "Is authenticated condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["Whether the current user is authenticated."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\IsAuthenticatedCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.IsAuthenticatedCondition.Fields.Thumbnail"
|
||||||
|
msgid "Whether the current user is authenticated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Javascript"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\Items\JavascriptCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.JavascriptCondition.Fields.Edit"
|
||||||
|
msgid "Javascript"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Script">@T["Script"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\JavascriptCondition.Fields.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.JavascriptCondition.Fields.Edit"
|
||||||
|
msgid "Script"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The script must return true or false."]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\JavascriptCondition.Fields.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.JavascriptCondition.Fields.Edit"
|
||||||
|
msgid "The script must return true or false."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Javascript condition"]</span><span class="ms-2 hint dashed">@Model.Value.Script.Ellipsize(50)</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\JavascriptCondition.Fields.Summary.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.JavascriptCondition.Fields.Summary"
|
||||||
|
msgid "Javascript condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Javascript condition"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\JavascriptCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.JavascriptCondition.Fields.Thumbnail"
|
||||||
|
msgid "Javascript condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["A script condition written in javascript."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\JavascriptCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.JavascriptCondition.Fields.Thumbnail"
|
||||||
|
msgid "A script condition written in javascript."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Role"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\Items\RoleCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.RoleCondition.Fields.Edit"
|
||||||
|
msgid "Role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SelectedOperation">@T["Operation"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\RoleCondition.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.RoleCondition.Fields.Edit"
|
||||||
|
msgid "Operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Select the condition operator."]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\RoleCondition.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.RoleCondition.Fields.Edit"
|
||||||
|
msgid "Select the condition operator."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Value">@T["Value"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\RoleCondition.Fields.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.RoleCondition.Fields.Edit"
|
||||||
|
msgid "Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The value for the operation."]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\RoleCondition.Fields.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.RoleCondition.Fields.Edit"
|
||||||
|
msgid "The value for the operation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Role"]</span><span class="ms-2 hint dashed">@displayText @Model.Value.Value</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\RoleCondition.Fields.Summary.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.RoleCondition.Fields.Summary"
|
||||||
|
msgid "Role"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Role condition"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\RoleCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.RoleCondition.Fields.Thumbnail"
|
||||||
|
msgid "Role condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["A role condition evaluates the current users roles against a value."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\RoleCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.RoleCondition.Fields.Thumbnail"
|
||||||
|
msgid "A role condition evaluates the current users roles against a value."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Rules"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\Items\Rule.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.Rule.Fields.Summary"
|
||||||
|
msgid "Rules"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Url"]</h5>
|
||||||
|
#: OrchardCore.Rules\Views\Items\UrlCondition.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.UrlCondition.Fields.Edit"
|
||||||
|
msgid "Url"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SelectedOperation">@T["Operation"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\UrlCondition.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.UrlCondition.Fields.Edit"
|
||||||
|
msgid "Operation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Select the condition operator."]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\UrlCondition.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.UrlCondition.Fields.Edit"
|
||||||
|
msgid "Select the condition operator."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Value">@T["Value"]</label>
|
||||||
|
#: OrchardCore.Rules\Views\Items\UrlCondition.Fields.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.UrlCondition.Fields.Edit"
|
||||||
|
msgid "Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The value for the operation."]</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\UrlCondition.Fields.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.UrlCondition.Fields.Edit"
|
||||||
|
msgid "The value for the operation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span>@T["Url"]</span><span class="ms-2 hint dashed">@displayText @Model.Value.Value</span>
|
||||||
|
#: OrchardCore.Rules\Views\Items\UrlCondition.Fields.Summary.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.UrlCondition.Fields.Summary"
|
||||||
|
msgid "Url"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Url condition"]</h4>
|
||||||
|
#: OrchardCore.Rules\Views\Items\UrlCondition.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.UrlCondition.Fields.Thumbnail"
|
||||||
|
msgid "Url condition"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["A url condition evaluates the current url against a value."]</p>
|
||||||
|
#: OrchardCore.Rules\Views\Items\UrlCondition.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Rules.Views.Items.UrlCondition.Fields.Thumbnail"
|
||||||
|
msgid "A url condition evaluates the current url against a value."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Search.Elasticsearch.Core.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 868\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:40\n"
|
||||||
|
|
||||||
|
#. return new HtmlString($"<option value=\"Elasticsearch\" selected=\"selected\">{S["Elasticsearch"]}</option>");
|
||||||
|
#. return new HtmlString($"<option value=\"Elasticsearch\">{S["Elasticsearch"]}</option>");
|
||||||
|
#: OrchardCore.Search.Elasticsearch.Core\Shapes\ElasticContentPickerShapeProvider.cs:26
|
||||||
|
#: OrchardCore.Search.Elasticsearch.Core\Shapes\ElasticContentPickerShapeProvider.cs:28
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.ElasticContentPickerShapeProvider"
|
||||||
|
msgid "Elasticsearch"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
@@ -0,0 +1,936 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Search.Elasticsearch.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 870\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:40\n"
|
||||||
|
|
||||||
|
#. .Add(S["Search"], "7", search => search
|
||||||
|
#: OrchardCore.Search.Elasticsearch\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminMenu"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Indexing"], S["Indexing"].PrefixPosition(), import => import
|
||||||
|
#. .Add(S["Indexing"], S["Indexing"].PrefixPosition(), import => import
|
||||||
|
#: OrchardCore.Search.Elasticsearch\AdminMenu.cs:28
|
||||||
|
#: OrchardCore.Search.Elasticsearch\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminMenu"
|
||||||
|
msgid "Indexing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Elasticsearch Indices"], S["Elasticsearch Indices"].PrefixPosition(), indexes => indexes
|
||||||
|
#. .Add(S["Elasticsearch Indices"], S["Elasticsearch Indices"].PrefixPosition(), indexes => indexes
|
||||||
|
#: OrchardCore.Search.Elasticsearch\AdminMenu.cs:29
|
||||||
|
#: OrchardCore.Search.Elasticsearch\AdminMenu.cs:29
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminMenu"
|
||||||
|
msgid "Elasticsearch Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Run Elasticsearch Query"], S["Run Elasticsearch Query"].PrefixPosition(), queries => queries
|
||||||
|
#. .Add(S["Run Elasticsearch Query"], S["Run Elasticsearch Query"].PrefixPosition(), queries => queries
|
||||||
|
#: OrchardCore.Search.Elasticsearch\AdminMenu.cs:33
|
||||||
|
#: OrchardCore.Search.Elasticsearch\AdminMenu.cs:33
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminMenu"
|
||||||
|
msgid "Run Elasticsearch Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Search.Elasticsearch\AdminMenu.cs:37
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Elasticsearch"], S["Elasticsearch"].PrefixPosition(), entry => entry
|
||||||
|
#. .Add(S["Elasticsearch"], S["Elasticsearch"].PrefixPosition(), entry => entry
|
||||||
|
#: OrchardCore.Search.Elasticsearch\AdminMenu.cs:38
|
||||||
|
#: OrchardCore.Search.Elasticsearch\AdminMenu.cs:38
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminMenu"
|
||||||
|
msgid "Elasticsearch"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Reset"], Value = nameof(ContentsBulkAction.Reset) },
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:132
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Rebuild"], Value = nameof(ContentsBulkAction.Rebuild) },
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:133
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Rebuild"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Remove) }
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:134
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Select(x => new SelectListItem { Text = x.Name + " (" + x.DisplayName + ")", Value = x.Name }).Prepend(new SelectListItem { Text = S["Any culture"], Value = "any" }),
|
||||||
|
#. .Select(x => new SelectListItem { Text = x.Name + " (" + x.DisplayName + ")", Value = x.Name }).Prepend(new SelectListItem { Text = S["Any culture"], Value = "any" });
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:177
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:216
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Any culture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(ElasticIndexSettingsViewModel.IndexName), S["An index named {0} already exists.", _indexPrefix + model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:202
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "An index named {0} already exists."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(ElasticIndexSettingsViewModel.IndexName), S["An index named {0} doesn't exist.", _indexPrefix + model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:209
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "An index named {0} doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while creating the index."]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:234
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "An error occurred while creating the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> created successfully.", _indexPrefix + model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:239
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> created successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while editing the index."]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:251
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "An error occurred while editing the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> modified successfully, <strong>please consider doing a rebuild on the index.</strong>", _indexPrefix + model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:256
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> modified successfully, <strong>please consider doing a rebuild on the index.</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> reset successfully.", id]);
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> reset successfully.", _indexPrefix + item.IndexName]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:278
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:481
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> reset successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> rebuilt successfully.", id]);
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> rebuilt successfully.", _indexPrefix + item.IndexName]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:299
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:494
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> rebuilt successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index not found on Elasticsearch server.", _indexPrefix + model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:314
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Index not found on Elasticsearch server."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> deleted successfully.", _indexPrefix + model.IndexName]);
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> deleted successfully.", _indexPrefix + model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:322
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:345
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> deleted successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while deleting the index."]);
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while deleting the index."]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:326
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:349
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "An error occurred while deleting the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(model.DecodedQuery), S["Invalid query : {0}", e.Message]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:437
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Invalid query : {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Indices successfully removed."]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:468
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "Indices successfully removed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(ElasticIndexSettingsViewModel.IndexedContentTypes), S["At least one content type selection is required."]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:509
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "At least one content type selection is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(ElasticIndexSettingsViewModel.IndexName), S["The index name is required."]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:514
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "The index name is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(ElasticIndexSettingsViewModel.IndexName), S["The index name contains unallowed chars."]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\AdminController.cs:518
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.AdminController"
|
||||||
|
msgid "The index name contains unallowed chars."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError("Terms", S["Incorrect query syntax."]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Controllers\SearchController.cs:170
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.SearchController"
|
||||||
|
msgid "Incorrect query syntax."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Template), S["The query field is required"]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Drivers\ElasticQueryDisplayDriver.cs:65
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Drivers.ElasticQueryDisplayDriver"
|
||||||
|
msgid "The query field is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Index), S["The index field is required"]);
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Drivers\ElasticQueryDisplayDriver.cs:70
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Drivers.ElasticQueryDisplayDriver"
|
||||||
|
msgid "The index field is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Index">@T["Index"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ContentPickerFieldElasticEditorSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ContentPickerFieldElasticEditorSettings.Edit"
|
||||||
|
msgid "Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Elasticsearch index to query for content items"]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ContentPickerFieldElasticEditorSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ContentPickerFieldElasticEditorSettings.Edit"
|
||||||
|
msgid "The Elasticsearch index to query for content items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4>Elasticsearch @T["Index settings"]</h4>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticContentIndexSettings.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticContentIndexSettings.Edit"
|
||||||
|
msgid "Index settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ElasticContentIndexSettings.Included">@T["Include this element in the index"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticContentIndexSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticContentIndexSettings.Edit"
|
||||||
|
msgid "Include this element in the index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to include the value of this element in the index."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticContentIndexSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticContentIndexSettings.Edit"
|
||||||
|
msgid "Check to include the value of this element in the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. class="btn btn-success btn-sm">@T["Run"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticQuery.Buttons.SummaryAdmin.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticQuery.Buttons.SummaryAdmin"
|
||||||
|
msgid "Run"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Index">@T["Index"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticQuery.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticQuery.Edit"
|
||||||
|
msgid "Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Elasticsearch index to search on"]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticQuery.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticQuery.Edit"
|
||||||
|
msgid "The Elasticsearch index to search on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ReturnContentItems">@T["Return Content Items"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticQuery.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticQuery.Edit"
|
||||||
|
msgid "Return Content Items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to return the corresponding content items."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticQuery.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticQuery.Edit"
|
||||||
|
msgid "Check to return the corresponding content items."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Query">@T["Query"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticQuery.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticQuery.Edit"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticQuery.Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticQuery.Edit"
|
||||||
|
msgid "The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Elasticsearch query"]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticQuery.SummaryAdmin.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticQuery.SummaryAdmin"
|
||||||
|
msgid "Elasticsearch query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SearchIndex">@T["Default search index"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticSettings.Edit"
|
||||||
|
msgid "Default search index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default index to use for the search page."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticSettings.Edit"
|
||||||
|
msgid "The default index to use for the search page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="alert alert-warning">@T["You need to create at least an index to set as the Search index."]</div>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticSettings.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticSettings.Edit"
|
||||||
|
msgid "You need to create at least an index to set as the Search index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SearchFields">@T["Default searched fields"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticSettings.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticSettings.Edit"
|
||||||
|
msgid "Default searched fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["A comma separated list of fields to use for search pages. The default value is <code>Content.ContentItem.FullText</code>."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticSettings.Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticSettings.Edit"
|
||||||
|
msgid "A comma separated list of fields to use for search pages. The default value is <code>Content.ContentItem.FullText</code>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="AllowElasticQueryStringQueryInSearch">@T["Allow Elasticsearch \"query string query\" in search forms"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticSettings.Edit.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticSettings.Edit"
|
||||||
|
msgid "Allow Elasticsearch \"query string query\" in search forms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether search queries should be allowed to use <a href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#query-dsl-query-string-query\">Elasticsearch \"query string query\" syntax</a>."] <a class="seedoc" href="https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#query-dsl-query-string-query" target="_blank">@T["See documentation"]</a></span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticSettings.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticSettings.Edit"
|
||||||
|
msgid "Whether search queries should be allowed to use <a href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#query-dsl-query-string-query\">Elasticsearch \"query string query\" syntax</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether search queries should be allowed to use <a href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#query-dsl-query-string-query\">Elasticsearch \"query string query\" syntax</a>."] <a class="seedoc" href="https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#query-dsl-query-string-query" target="_blank">@T["See documentation"]</a></span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\ElasticSettings.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.ElasticSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-search" aria-hidden="true"></i></span><span class="title">@T["Search"]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\NavigationItemText-Elasticsearch.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.NavigationItemText-Elasticsearch.Id"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4>@T["Elasticsearch"]</h4>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Query-Elasticsearch.Link.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Query-Elasticsearch.Link"
|
||||||
|
msgid "Elasticsearch"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["Queries an Elasticsearch index."]</p>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Query-Elasticsearch.Link.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Query-Elasticsearch.Link"
|
||||||
|
msgid "Queries an Elasticsearch index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a disabled="@disabled" class="btn btn-primary btn-sm" asp-route-action="Create" asp-route-controller="Admin" asp-route-id="@Model.Name" asp-area="OrchardCore.Queries">@T["Add"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Query-Elasticsearch.Link.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Query-Elasticsearch.Link"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Elasticsearch Index"])</h1></zone>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Create Elasticsearch Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Elasticsearch Index"])</h1></zone>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Edit Elasticsearch Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexName">@T["Index Name"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Index Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Should be all lowercase. The shell name will be automatically prepended."]<a class="ms-2 seedoc" href="https://www.elastic.co/guide/en/elasticsearch/reference/6.4/indices-create-index.html" target="_blank">@T["See documentation"].</a></span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Should be all lowercase. The shell name will be automatically prepended."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Should be all lowercase. The shell name will be automatically prepended."]<a class="ms-2 seedoc" href="https://www.elastic.co/guide/en/elasticsearch/reference/6.4/indices-create-index.html" target="_blank">@T["See documentation"].</a></span>
|
||||||
|
#. <span class="hint dashed">@T["Check to store source data in the index."] <a class="seedoc" href="https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-source-field.html#disable-source-field" target="_blank">@T["See documentation"]</a></span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:16
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:58
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="AnalyzerName">@T["Analyzer Name"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Analyzer Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Culture">@T["Culture"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Culture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The content culture that it will index."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "The content culture that it will index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexedContentTypes">@T["Content Types"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Content Types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["The content types to index. Choose at least one."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "The content types to index. Choose at least one."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexLatest">@T["Index options"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:48
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Index options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="IndexLatest">@T["Index latest version"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Index latest version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to index draft if it exists, otherwise only the published version is indexed."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Check to index draft if it exists, otherwise only the published version is indexed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="StoreSourceData">@T["Store source data"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:57
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Store source data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to store source data in the index."] <a class="seedoc" href="https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-source-field.html#disable-source-field" target="_blank">@T["See documentation"]</a></span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:58
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Check to store source data in the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:66
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:67
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Edit.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Elasticsearch Indices"])</h1></zone>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Elasticsearch Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="SyncSettings" title="@T["Synchronize Elasticsearch content index settings with Lucene."]" class="btn btn-secondary sync" role="button" data-url-af="RemoveUrl UnsafeUrl" data-title=@T["Synchronize Content Index Settings"] data-message=@T["Are you sure you want to synchronize all Elasticsearch content index settings with Lucene ones?"]>@T["Synchronize Settings"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Synchronize Elasticsearch content index settings with Lucene."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="SyncSettings" title="@T["Synchronize Elasticsearch content index settings with Lucene."]" class="btn btn-secondary sync" role="button" data-url-af="RemoveUrl UnsafeUrl" data-title=@T["Synchronize Content Index Settings"] data-message=@T["Are you sure you want to synchronize all Elasticsearch content index settings with Lucene ones?"]>@T["Synchronize Settings"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Synchronize Content Index Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="SyncSettings" title="@T["Synchronize Elasticsearch content index settings with Lucene."]" class="btn btn-secondary sync" role="button" data-url-af="RemoveUrl UnsafeUrl" data-title=@T["Synchronize Content Index Settings"] data-message=@T["Are you sure you want to synchronize all Elasticsearch content index settings with Lucene ones?"]>@T["Synchronize Settings"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to synchronize all Elasticsearch content index settings with Lucene ones?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="SyncSettings" title="@T["Synchronize Elasticsearch content index settings with Lucene."]" class="btn btn-secondary sync" role="button" data-url-af="RemoveUrl UnsafeUrl" data-title=@T["Synchronize Content Index Settings"] data-message=@T["Are you sure you want to synchronize all Elasticsearch content index settings with Lucene ones?"]>@T["Synchronize Settings"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Synchronize Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="Edit" class="btn btn-secondary create" role="button">@T["Add Index"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Add Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Indexes.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Indexes.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Indexes.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Mappings" asp-route-IndexName="@entry.Name" class="btn btn-primary btn-sm">@T["Mappings"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Mappings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Query" asp-route-IndexName="@entry.Name" class="btn btn-success btn-sm">@T["Query"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:74
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Reset Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:74
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "This will restart the indexing of all content items. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:74
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:74
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:74
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Rebuild Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Your index will be rebuilt, which might alter some services during the process. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Rebuild"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-IndexName="@entry.Name" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:76
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-danger btn-sm" type="button" asp-action="Delete" asp-route-IndexName="@entry.Name" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:78
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a title="@T["Removes the index configuration only."]" class="dropdown-item" asp-action="ForceDelete" asp-route-IndexName="@entry.Name" data-url-af="RemoveUrl UnsafeUrl">@T["Force Delete"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:83
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Removes the index configuration only."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a title="@T["Removes the index configuration only."]" class="dropdown-item" asp-action="ForceDelete" asp-route-IndexName="@entry.Name" data-url-af="RemoveUrl UnsafeUrl">@T["Force Delete"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:83
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "Force Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no indices for the moment."]
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:95
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no indices for the moment."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:148
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Index.cshtml:159
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Index"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h2>@T["Elasticsearch index mappings"]</h2>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Mappings.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Mappings"
|
||||||
|
msgid "Elasticsearch index mappings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Mappings">@T["Mappings for: "]@Model.IndexName</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Mappings.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Mappings"
|
||||||
|
msgid "Mappings for: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Elasticsearch index mapping. For reference only."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Mappings.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Mappings"
|
||||||
|
msgid "The Elasticsearch index mapping. For reference only."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Elasticsearch Query"])</h1></zone>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "Elasticsearch Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexName">@T["Index"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Elasticsearch index to search on"]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "The Elasticsearch index to search on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="DecodedQuery">@T["Template"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "Template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["You can use the <a href=\"{0}\">Match All query</a> to search all documents.", Html.Raw(Url.Action("Query", "Admin", new { area = "OrchardCore.Search.Elasticsearch", Query = matchAllQuery, IndexName = Model.IndexName }))]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "You can use the <a href=\"{0}\">Match All query</a> to search all documents."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Parameters">@T["Parameters"]</label>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "Parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["An optional Json object containing the parameter values for this query."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "An optional Json object containing the parameter values for this query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-primary">@T["Query"]</button>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p><span class="text-muted">@T["Found {0} result(s) in {1} ms", Model.Count.ToString(), Model.Elapsed.TotalMilliseconds.ToString()]</span></p>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:54
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "Found {0} result(s) in {1} ms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a href="@Url.Action("Create", "Admin", new { area = "OrchardCore.Queries", id = "Elasticsearch", query = Model.DecodedQuery })" class="btn btn-success">@T["Create"]</a>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:60
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p><span class="text-muted">@T["The results displayed in this table are coming from the _source data."]</span></p>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:68
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "The results displayed in this table are coming from the _source data."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p><span class="text-muted">@T["The results displayed in this table are coming from the field(s) data."]</span></p>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Admin\Query.cshtml:105
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Admin.Query"
|
||||||
|
msgid "The results displayed in this table are coming from the field(s) data."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Elasticsearch Search Indexes"]</h5>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Elasticsearch Search Indexes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Include all search indexes."]
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexDeploymentStep.Fields.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Include all search indexes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The search indexes to add as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexDeploymentStep.Fields.Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The search indexes to add as part of the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Elasticsearch Search Indexes"]</h5>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexDeploymentStep.Fields.Summary.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Elasticsearch Search Indexes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge badge-success">@T["All"]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexDeploymentStep.Fields.Summary.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexDeploymentStep.Fields.Summary"
|
||||||
|
msgid "All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge badge-warning">@T["No index selected."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexDeploymentStep.Fields.Summary.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexDeploymentStep.Fields.Summary"
|
||||||
|
msgid "No index selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Elasticsearch Search Indexes"]</h4>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Elasticsearch Search Indexes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports all or specified search indexes."]</p>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports all or specified search indexes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Rebuild Elasticsearch Indices"]</h5>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexRebuildDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexRebuildDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Rebuild Elasticsearch Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Include all Elasticsearch indices."]
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexRebuildDeploymentStep.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexRebuildDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Include all Elasticsearch indices."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Elasticsearch indices to rebuild as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexRebuildDeploymentStep.Fields.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexRebuildDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The Elasticsearch indices to rebuild as part of the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Rebuild Elasticsearch Indices"]</h5>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexRebuildDeploymentStep.Fields.Summary.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexRebuildDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Rebuild Elasticsearch Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge bg-success">@T["All"]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexRebuildDeploymentStep.Fields.Summary.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexRebuildDeploymentStep.Fields.Summary"
|
||||||
|
msgid "All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge bg-warning">@T["No index selected."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexRebuildDeploymentStep.Fields.Summary.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexRebuildDeploymentStep.Fields.Summary"
|
||||||
|
msgid "No index selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Rebuild Elasticsearch Indices"]</h4>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexRebuildDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexRebuildDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Rebuild Elasticsearch Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Rebuild all or specified Elasticsearch indices."]</p>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexRebuildDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexRebuildDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Rebuild all or specified Elasticsearch indices."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Reset Elasticsearch Indices"]</h5>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexResetDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexResetDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Reset Elasticsearch Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Include all Elasticsearch indices."]
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexResetDeploymentStep.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexResetDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Include all Elasticsearch indices."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Elasticsearch Indices to reset as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexResetDeploymentStep.Fields.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexResetDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The Elasticsearch Indices to reset as part of the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Reset Elasticsearch Indices"]</h5>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexResetDeploymentStep.Fields.Summary.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexResetDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Reset Elasticsearch Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge bg-success">@T["All"]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexResetDeploymentStep.Fields.Summary.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexResetDeploymentStep.Fields.Summary"
|
||||||
|
msgid "All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge bg-warning">@T["No index selected."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexResetDeploymentStep.Fields.Summary.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexResetDeploymentStep.Fields.Summary"
|
||||||
|
msgid "No index selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Reset Elasticsearch Indices"]</h4>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexResetDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexResetDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Reset Elasticsearch Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Reset all or specified Elasticsearch indices."]</p>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticIndexResetDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticIndexResetDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Reset all or specified Elasticsearch indices."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Elasticsearch Settings"]</h5>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticSettingsDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticSettingsDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Elasticsearch Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Elasticsearch Settings"]</h5>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticSettingsDeploymentStep.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Elasticsearch Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds Elasticsearch settings to the plan."]</span>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticSettingsDeploymentStep.Fields.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Adds Elasticsearch settings to the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Elasticsearch Settings"]</h4>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticSettingsDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Elasticsearch Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports Elasticsearch settings."]</p>
|
||||||
|
#: OrchardCore.Search.Elasticsearch\Views\Items\ElasticSettingsDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Elasticsearch.Views.Items.ElasticSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports Elasticsearch settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
884
src/Twain.Web/Localization/ar/OrchardCore.Search.Lucene.po
Normal file
884
src/Twain.Web/Localization/ar/OrchardCore.Search.Lucene.po
Normal file
@@ -0,0 +1,884 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Search.Lucene.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 872\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:41\n"
|
||||||
|
|
||||||
|
#. .Add(S["Search"], NavigationConstants.AdminMenuSearchPosition, search => search
|
||||||
|
#: OrchardCore.Search.Lucene\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.AdminMenu"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Indexing"], S["Indexing"].PrefixPosition(), import => import
|
||||||
|
#. .Add(S["Indexing"], S["Indexing"].PrefixPosition(), import => import
|
||||||
|
#: OrchardCore.Search.Lucene\AdminMenu.cs:28
|
||||||
|
#: OrchardCore.Search.Lucene\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.AdminMenu"
|
||||||
|
msgid "Indexing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Lucene Indices"], S["Lucene Indices"].PrefixPosition(), indexes => indexes
|
||||||
|
#. .Add(S["Lucene Indices"], S["Lucene Indices"].PrefixPosition(), indexes => indexes
|
||||||
|
#: OrchardCore.Search.Lucene\AdminMenu.cs:29
|
||||||
|
#: OrchardCore.Search.Lucene\AdminMenu.cs:29
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.AdminMenu"
|
||||||
|
msgid "Lucene Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Run Lucene Query"], S["Run Lucene Query"].PrefixPosition(), queries => queries
|
||||||
|
#. .Add(S["Run Lucene Query"], S["Run Lucene Query"].PrefixPosition(), queries => queries
|
||||||
|
#: OrchardCore.Search.Lucene\AdminMenu.cs:33
|
||||||
|
#: OrchardCore.Search.Lucene\AdminMenu.cs:33
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.AdminMenu"
|
||||||
|
msgid "Run Lucene Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Search.Lucene\AdminMenu.cs:37
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Lucene"], S["Lucene"].PrefixPosition(), entry => entry
|
||||||
|
#. .Add(S["Lucene"], S["Lucene"].PrefixPosition(), entry => entry
|
||||||
|
#: OrchardCore.Search.Lucene\AdminMenu.cs:38
|
||||||
|
#: OrchardCore.Search.Lucene\AdminMenu.cs:38
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.AdminMenu"
|
||||||
|
msgid "Lucene"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Reset"], Value = nameof(ContentsBulkAction.Reset) },
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:128
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Rebuild"], Value = nameof(ContentsBulkAction.Rebuild) },
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:129
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Rebuild"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Remove) }
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:130
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Select(x => new SelectListItem { Text = x.Name + " (" + x.DisplayName + ")", Value = x.Name }).Prepend(new SelectListItem { Text = S["Any culture"], Value = "any" }),
|
||||||
|
#. .Select(x => new SelectListItem { Text = x.Name + " (" + x.DisplayName + ")", Value = x.Name }).Prepend(new SelectListItem { Text = S["Any culture"], Value = "any" });
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:173
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:212
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Any culture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LuceneIndexSettingsViewModel.IndexName), S["An index named {0} already exists.", model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:198
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "An index named {0} already exists."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LuceneIndexSettingsViewModel.IndexName), S["An index named {0} doesn't exist.", model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:205
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "An index named {0} doesn't exist."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while creating the index."]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:230
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "An error occurred while creating the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> created successfully.", model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:235
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> created successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while editing the index."]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:247
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "An error occurred while editing the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> modified successfully, <strong>please consider doing a rebuild on the index.</strong>", model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:252
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> modified successfully, <strong>please consider doing a rebuild on the index.</strong>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> reset successfully.", id]);
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> reset successfully.", item.IndexName]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:281
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:457
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> reset successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> rebuilt successfully.", id]);
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> rebuilt successfully.", item.IndexName]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:302
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:471
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> rebuilt successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Index <em>{0}</em> deleted successfully.", model.IndexName]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:328
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Index <em>{0}</em> deleted successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.ErrorAsync(H["An error occurred while deleting the index."]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:332
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "An error occurred while deleting the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(model.DecodedQuery), S["Invalid query : {0}", e.Message]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:412
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Invalid query : {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Indices successfully removed."]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:444
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "Indices successfully removed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LuceneIndexSettingsViewModel.IndexedContentTypes), S["At least one content type selection is required."]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:486
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "At least one content type selection is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LuceneIndexSettingsViewModel.IndexName), S["The index name is required."]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:491
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "The index name is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(LuceneIndexSettingsViewModel.IndexName), S["The index name contains unallowed chars."]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\AdminController.cs:495
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.AdminController"
|
||||||
|
msgid "The index name contains unallowed chars."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError("Terms", S["Incorrect query syntax."]);
|
||||||
|
#: OrchardCore.Search.Lucene\Controllers\SearchController.cs:158
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Controllers.SearchController"
|
||||||
|
msgid "Incorrect query syntax."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Template), S["The query field is required"]);
|
||||||
|
#: OrchardCore.Search.Lucene\Drivers\LuceneQueryDisplayDriver.cs:63
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Drivers.LuceneQueryDisplayDriver"
|
||||||
|
msgid "The query field is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(nameof(model.Index), S["The index field is required"]);
|
||||||
|
#: OrchardCore.Search.Lucene\Drivers\LuceneQueryDisplayDriver.cs:68
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Drivers.LuceneQueryDisplayDriver"
|
||||||
|
msgid "The index field is required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. return new HtmlString($"<option value=\"Lucene\" selected=\"selected\">{S["Lucene"]}</option>");
|
||||||
|
#. return new HtmlString($"<option value=\"Lucene\">{S["Lucene"]}</option>");
|
||||||
|
#: OrchardCore.Search.Lucene\Shapes\LuceneContentPickerShapeProvider.cs:26
|
||||||
|
#: OrchardCore.Search.Lucene\Shapes\LuceneContentPickerShapeProvider.cs:28
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.LuceneContentPickerShapeProvider"
|
||||||
|
msgid "Lucene"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Index">@T["Index"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\ContentPickerFieldLuceneEditorSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.ContentPickerFieldLuceneEditorSettings.Edit"
|
||||||
|
msgid "Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Lucene index to query for content items"]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\ContentPickerFieldLuceneEditorSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.ContentPickerFieldLuceneEditorSettings.Edit"
|
||||||
|
msgid "The Lucene index to query for content items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4>Lucene @T["Index settings"]</h4>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneContentIndexSettings.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneContentIndexSettings.Edit"
|
||||||
|
msgid "Index settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="LuceneContentIndexSettings.Included">@T["Include this element in the index"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneContentIndexSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneContentIndexSettings.Edit"
|
||||||
|
msgid "Include this element in the index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to include the value of this element in the index."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneContentIndexSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneContentIndexSettings.Edit"
|
||||||
|
msgid "Check to include the value of this element in the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="LuceneContentIndexSettings.Keyword">@T["Keyword"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneContentIndexSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneContentIndexSettings.Edit"
|
||||||
|
msgid "Keyword"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to index as a keyword value (indexed as a single token)."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneContentIndexSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneContentIndexSettings.Edit"
|
||||||
|
msgid "Check to index as a keyword value (indexed as a single token)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="LuceneContentIndexSettings.Stored">@T["Stored"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneContentIndexSettings.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneContentIndexSettings.Edit"
|
||||||
|
msgid "Stored"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to be able to retrieve the original value from the index."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneContentIndexSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneContentIndexSettings.Edit"
|
||||||
|
msgid "Check to be able to retrieve the original value from the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. class="btn btn-success btn-sm">@T["Run"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneQuery.Buttons.SummaryAdmin.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneQuery.Buttons.SummaryAdmin"
|
||||||
|
msgid "Run"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Index">@T["Index"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneQuery.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Lucene index to search on"]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneQuery.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "The Lucene index to search on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ReturnContentItems">@T["Return Content Items"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneQuery.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "Return Content Items"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to return the corresponding content items."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneQuery.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "Check to return the corresponding content items."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Query">@T["Query"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneQuery.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneQuery.Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneQuery.Edit"
|
||||||
|
msgid "The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Lucene query"]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneQuery.SummaryAdmin.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneQuery.SummaryAdmin"
|
||||||
|
msgid "Lucene query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SearchIndex">@T["Default search index"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "Default search index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="" selected="@(Model.SearchIndex == null)">@T["Select a search index"]</option>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "Select a search index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default index to use for the search page."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "The default index to use for the search page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="alert alert-warning">@T["You need to create at least an index to set as the Search index."]</div>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "You need to create at least an index to set as the Search index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SearchFields">@T["Default searched fields"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "Default searched fields"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["A comma separated list of fields to use for search pages. The default value is <code>Content.ContentItem.FullText</code>."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneSettings.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "A comma separated list of fields to use for search pages. The default value is <code>Content.ContentItem.FullText</code>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="AllowLuceneQueriesInSearch">@T["Allow Lucene queries in search forms"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneSettings.Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "Allow Lucene queries in search forms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether search queries should be allowed to use <a href=\"https://lucene.apache.org/core/2_9_4/queryparsersyntax.html\">Lucene query parser syntax</a>."] <a class="seedoc" href="http://www.lucenetutorial.com/lucene-query-syntax.html" target="_blank">@T["See documentation"]</a></span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneSettings.Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "Whether search queries should be allowed to use <a href=\"https://lucene.apache.org/core/2_9_4/queryparsersyntax.html\">Lucene query parser syntax</a>."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether search queries should be allowed to use <a href=\"https://lucene.apache.org/core/2_9_4/queryparsersyntax.html\">Lucene query parser syntax</a>."] <a class="seedoc" href="http://www.lucenetutorial.com/lucene-query-syntax.html" target="_blank">@T["See documentation"]</a></span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\LuceneSettings.Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.LuceneSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-search" aria-hidden="true"></i></span><span class="title">@T["Search"]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\NavigationItemText-search.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.NavigationItemText-search.Id"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4>@T["Lucene"]</h4>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Query-Lucene.Link.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Query-Lucene.Link"
|
||||||
|
msgid "Lucene"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="hint">@T["Queries a Lucene index."]</p>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Query-Lucene.Link.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Query-Lucene.Link"
|
||||||
|
msgid "Queries a Lucene index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a disabled="@disabled" class="btn btn-primary btn-sm" asp-route-action="Create" asp-route-controller="Admin" asp-route-id="@Model.Name" asp-area="OrchardCore.Queries">@T["Add"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Query-Lucene.Link.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Query-Lucene.Link"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Lucene Index"])</h1></zone>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Create Lucene Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Lucene Index"])</h1></zone>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Edit Lucene Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexName">@T["Index Name"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Index Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="AnalyzerName">@T["Analyzer Name"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Analyzer Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Culture">@T["Culture"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Culture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The content culture that it will index."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "The content culture that it will index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexedContentTypes">@T["Content Types"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:33
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Content Types"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["The content types to index. Choose at least one."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "The content types to index. Choose at least one."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexLatest">@T["Index options"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Index options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="IndexLatest">@T["Index latest version"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:50
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Index latest version"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to index draft if it exists, otherwise only the published version is indexed."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Check to index draft if it exists, otherwise only the published version is indexed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="StoreSourceData">@T["Store source data"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:56
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Store source data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to store source data in the index."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:57
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Check to store source data in the index."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary create" type="submit">@T["Create"]</button>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:65
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:66
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Edit.cshtml:70
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Lucene Indices"])</h1></zone>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Lucene Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="Edit" class="btn btn-secondary create" role="button">@T["Add Index"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Add Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:38
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Indexes.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Indexes.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Indexes.Count(), "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:46
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Query" asp-route-IndexName="@entry.Name" class="btn btn-success btn-sm">@T["Query"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Reset Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "This will restart the indexing of all content items. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:72
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Yes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:72
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "No"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Reset" asp-route-id="@entry.Name" class="btn btn-primary btn-sm" data-title="@T["Reset Index"]" data-message="@T["This will restart the indexing of all content items. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-ok-class="btn-primary" data-url-af="UnsafeUrl">@T["Reset"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Reset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Rebuild Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Your index will be rebuilt, which might alter some services during the process. Continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Rebuild" asp-route-id="@entry.Name" class="btn btn-warning btn-sm" data-title="@T["Rebuild Index"]" data-message="@T["Your index will be rebuilt, which might alter some services during the process. Continue?"]" data-ok-text="@T["Yes"]" data-cancel-text="@T["No"]" data-url-af="UnsafeUrl">@T["Rebuild"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Rebuild"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-IndexName="@entry.Name" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:74
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Delete" asp-route-IndexName="@entry.Name" class="btn btn-danger btn-sm" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:75
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no indices for the moment."]
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:85
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no indices for the moment."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:138
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Index.cshtml:149
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Index"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Lucene Query"])</h1></zone>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Lucene Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="IndexName">@T["Index"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Index"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The lucene index to search on"]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "The lucene index to search on"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="DecodedQuery">@T["Template"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["You can use the <a href=\"{0}\">Match All query</a> to search all documents.", Html.Raw(Url.Action("Query", "Admin", new { area = "OrchardCore.Search.Lucene", Query = matchAllQuery, IndexName = Model.IndexName }))]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "You can use the <a href=\"{0}\">Match All query</a> to search all documents."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "The search query uses the Elasticsearch format. Some documentation can be found here <a target=\"_blank\" href=\"https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html\">https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl.html</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Parameters">@T["Parameters"]</label>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Parameters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["An optional Json object containing the parameter values for this query."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "An optional Json object containing the parameter values for this query."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-primary">@T["Query"]</button>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Query"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p><span class="text-muted">@T["Found {0} result(s) in {1} ms", Model.Count.ToString(), Model.Elapsed.TotalMilliseconds.ToString()]</span></p>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:54
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Found {0} result(s) in {1} ms"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a href="@Url.Action("Create", "Admin", new { area = "OrchardCore.Queries", id = "Lucene", query = Model.DecodedQuery })" class="btn btn-success">@T["Create"]</a>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "Create"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p><span class="text-muted">@T["The results displayed are coming from the stored fields in Lucene."]</span></p>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Admin\Query.cshtml:91
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Admin.Query"
|
||||||
|
msgid "The results displayed are coming from the stored fields in Lucene."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Lucene Search Indexes"]</h5>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Lucene Search Indexes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Include all search indexes."]
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Edit.cshtml:17
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Include all search indexes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The search indexes to add as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The search indexes to add as part of the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Lucene Search Indexes"]</h5>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Summary.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Lucene Search Indexes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge bg-success">@T["All"]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Summary.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Summary"
|
||||||
|
msgid "All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge bg-warning">@T["No index selected."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Summary.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Summary"
|
||||||
|
msgid "No index selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Lucene Search Indexes"]</h4>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Lucene Search Indexes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports all or specified search indexes."]</p>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports all or specified search indexes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Rebuild Lucene Search Indices"]</h5>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexRebuildDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexRebuildDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Rebuild Lucene Search Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Include all Lucene search indices."]
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexRebuildDeploymentStep.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexRebuildDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Include all Lucene search indices."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Lucene search indices to rebuild as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexRebuildDeploymentStep.Fields.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexRebuildDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The Lucene search indices to rebuild as part of the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Rebuild Lucene Search Indices"]</h5>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexRebuildDeploymentStep.Fields.Summary.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexRebuildDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Rebuild Lucene Search Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge bg-success">@T["All"]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexRebuildDeploymentStep.Fields.Summary.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexRebuildDeploymentStep.Fields.Summary"
|
||||||
|
msgid "All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge bg-warning">@T["No index selected."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexRebuildDeploymentStep.Fields.Summary.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexRebuildDeploymentStep.Fields.Summary"
|
||||||
|
msgid "No index selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Rebuild Lucene Search Indices"]</h4>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexRebuildDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexRebuildDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Rebuild Lucene Search Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Rebuild all or specified Lucene search indices."]</p>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexRebuildDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexRebuildDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Rebuild all or specified Lucene search indices."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Reset Lucene Search Indices"]</h5>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexResetDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexResetDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Reset Lucene Search Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Include all Lucene search indices."]
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexResetDeploymentStep.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexResetDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Include all Lucene search indices."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Lucene Search Indices to reset as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexResetDeploymentStep.Fields.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexResetDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The Lucene Search Indices to reset as part of the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Reset Lucene Search Indices"]</h5>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexResetDeploymentStep.Fields.Summary.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexResetDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Reset Lucene Search Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge bg-success">@T["All"]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexResetDeploymentStep.Fields.Summary.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexResetDeploymentStep.Fields.Summary"
|
||||||
|
msgid "All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="badge bg-warning">@T["No index selected."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexResetDeploymentStep.Fields.Summary.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexResetDeploymentStep.Fields.Summary"
|
||||||
|
msgid "No index selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Reset Lucene Search Indices"]</h4>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexResetDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexResetDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Reset Lucene Search Indices"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Reset all or specified Lucene search indices."]</p>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneIndexResetDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneIndexResetDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Reset all or specified Lucene search indices."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Lucene Settings"]</h5>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneSettingsDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneSettingsDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Lucene Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Lucene Settings"]</h5>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneSettingsDeploymentStep.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Lucene Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds Lucene settings to the plan."]</span>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneSettingsDeploymentStep.Fields.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Adds Lucene settings to the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Lucene Settings"]</h4>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneSettingsDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Lucene Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports Lucene settings."]</p>
|
||||||
|
#: OrchardCore.Search.Lucene\Views\Items\LuceneSettingsDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Lucene.Views.Items.LuceneSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports Lucene settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
102
src/Twain.Web/Localization/ar/OrchardCore.Search.po
Normal file
102
src/Twain.Web/Localization/ar/OrchardCore.Search.po
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Search.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 874\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:42\n"
|
||||||
|
|
||||||
|
#. .Add(S["Search"], NavigationConstants.AdminMenuSearchPosition, search => search
|
||||||
|
#. .Add(S["Search"], S["Search"].PrefixPosition(), entry => entry
|
||||||
|
#. .Add(S["Search"], S["Search"].PrefixPosition(), entry => entry
|
||||||
|
#: OrchardCore.Search\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Search\AdminMenu.cs:29
|
||||||
|
#: OrchardCore.Search\AdminMenu.cs:29
|
||||||
|
msgctxt "OrchardCore.Search.AdminMenu"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Search\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.Search.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h3>@T["Search Module"]</h3>
|
||||||
|
#: OrchardCore.Search\Views\Search-Form.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Views.Search-Form"
|
||||||
|
msgid "Search Module"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input name="Terms" type="text" value="@Model.Terms" class="form-control form-control-lg" placeholder="@T["Enter your search term(s)"]" autofocus />
|
||||||
|
#: OrchardCore.Search\Views\Search-Form.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Search.Views.Search-Form"
|
||||||
|
msgid "Enter your search term(s)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-primary btn-sm">@T["Search"]</button>
|
||||||
|
#: OrchardCore.Search\Views\Search-Form.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Search.Views.Search-Form"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["There are no such results."]</p>
|
||||||
|
#: OrchardCore.Search\Views\Search-Results.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Search.Views.Search-Results"
|
||||||
|
msgid "There are no such results."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SearchProviderAreaName">@T["Default search provider"]</label>
|
||||||
|
#: OrchardCore.Search\Views\SearchSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Search.Views.SearchSettings.Edit"
|
||||||
|
msgid "Default search provider"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default search provider to use for the search page."]</span>
|
||||||
|
#: OrchardCore.Search\Views\SearchSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Search.Views.SearchSettings.Edit"
|
||||||
|
msgid "The default search provider to use for the search page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div class="alert alert-warning">@T["You need to enable at least one search provider (Lucene, Elasticsearch)."]</div>
|
||||||
|
#: OrchardCore.Search\Views\SearchSettings.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Search.Views.SearchSettings.Edit"
|
||||||
|
msgid "You need to enable at least one search provider (Lucene, Elasticsearch)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Search Settings"]</h5>
|
||||||
|
#: OrchardCore.Search\Views\Items\SearchSettingsDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Views.Items.SearchSettingsDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Search Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["Search Settings"]</h5>
|
||||||
|
#: OrchardCore.Search\Views\Items\SearchSettingsDeploymentStep.Fields.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Views.Items.SearchSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Search Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds search settings to the plan."]</span>
|
||||||
|
#: OrchardCore.Search\Views\Items\SearchSettingsDeploymentStep.Fields.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Search.Views.Items.SearchSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Adds search settings to the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Search Settings"]</h4>
|
||||||
|
#: OrchardCore.Search\Views\Items\SearchSettingsDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Search.Views.Items.SearchSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Search Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports search settings."]</p>
|
||||||
|
#: OrchardCore.Search\Views\Items\SearchSettingsDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Search.Views.Items.SearchSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports search settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
399
src/Twain.Web/Localization/ar/OrchardCore.Security.po
Normal file
399
src/Twain.Web/Localization/ar/OrchardCore.Security.po
Normal file
@@ -0,0 +1,399 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Security.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 856\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-06-01 18:41\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Security"], NavigationConstants.AdminMenuSecurityPosition, security => security
|
||||||
|
#: OrchardCore.Security\AdminMenu.cs:22
|
||||||
|
msgctxt "OrchardCore.Security.AdminMenu"
|
||||||
|
msgid "Security"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Security\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.Security.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Security Headers"], S["Security Headers"].PrefixPosition(), headers => headers
|
||||||
|
#. .Add(S["Security Headers"], S["Security Headers"].PrefixPosition(), headers => headers
|
||||||
|
#: OrchardCore.Security\AdminMenu.cs:25
|
||||||
|
#: OrchardCore.Security\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Security.AdminMenu"
|
||||||
|
msgid "Security Headers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["The current tenant will be reloaded when the settings are saved."]
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:165
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["The current settings are coming from configuration sources, saving the settings will affect the AdminSettings not the configuration."]
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:171
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "The current settings are coming from configuration sources, saving the settings will affect the AdminSettings not the configuration."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="ContentSecurityPolicy">@T["Content Security Policy"]</label>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:176
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Content Security Policy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="EnableSandbox">@T["Enable Sandbox"]</label>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:180
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Enable Sandbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Enables a sandbox for the requested resource similar to the iframe sandbox attribute."]</span>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:181
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Enables a sandbox for the requested resource similar to the iframe sandbox attribute."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="UpgradeInsecureRequests">@T["Upgrade Insecure Requests"]</label>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:187
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Upgrade Insecure Requests"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th>@T["Name"]</th>
|
||||||
|
#. <th>@T["Name"]</th>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:193
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:220
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Allows administrators to control resources the user agent is allowed to load for a given page."]</span>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:213
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Allows administrators to control resources the user agent is allowed to load for a given page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="PermissionsPolicy">@T["Permissions Policy"]</label>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:216
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Permissions Policy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th>@T["None"]</th>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:221
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "None"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th>@T["Any"]</th>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:222
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Any"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th>@T["Self"]</th>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:223
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Self"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Allows a site to control which features and APIs can be used in the browser."]</span>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:271
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Allows a site to control which features and APIs can be used in the browser."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="ReferrerPolicy">@T["Referrer Policy"]</label>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:274
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Referrer Policy"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["No referrer"]
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:277
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "No referrer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["No referrer when downgrade"]
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:280
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "No referrer when downgrade"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Origin"]
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:283
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Origin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Origin when cross origin"]
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:286
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Origin when cross origin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Same origin"]
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:289
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Same origin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Strict origin"]
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:292
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Strict origin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Strict origin when cross origin"]
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:295
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Strict origin when cross origin"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Unsafe URL"]
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:298
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Unsafe URL"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Allows a site to control how much information the browser includes when navigating away from a page."]</span>
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:302
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Allows a site to control how much information the browser includes when navigating away from a page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Base URI"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Child Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Connect Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Default Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Font Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Form Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Frame Ancestors"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Frame Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Image Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Manifest Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Media Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Object Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Sandbox"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Script Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Style Source"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Accelerometer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Ambient Light Sensor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Autoplay"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Battery"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Camera"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Display Capture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Document Domain"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Encrypted Media"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Full Screen"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Game Pad"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Geolocation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Gyroscope"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Layout Animations"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Legacy ImageFormat"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Magnetometer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Microphone"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Midi"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Oversized Images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Payment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Picture In Picture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Public Key Retrieval"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Push"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Speaker Selection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Screen Wake Lock"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Synchronous XML Http Request"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Unoptimized Images"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Unsized Media"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "USB"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Web Share"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Security\Views\SecurityHeadersSettings.Edit.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Security.Views.SecurityHeadersSettings.Edit"
|
||||||
|
msgid "Web XR"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
348
src/Twain.Web/Localization/ar/OrchardCore.Seo.po
Normal file
348
src/Twain.Web/Localization/ar/OrchardCore.Seo.po
Normal file
@@ -0,0 +1,348 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Seo.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 808\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:26\n"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, S["The canonical entry contains invalid characters."]);
|
||||||
|
#: OrchardCore.Seo\Drivers\SeoMetaPartDisplayDriver.cs:121
|
||||||
|
msgctxt "OrchardCore.Seo.Drivers.SeoMetaPartDisplayDriver"
|
||||||
|
msgid "The canonical entry contains invalid characters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, S["The meta entries are written in an incorrect format."]);
|
||||||
|
#: OrchardCore.Seo\Drivers\SeoMetaPartDisplayDriver.cs:126
|
||||||
|
msgctxt "OrchardCore.Seo.Drivers.SeoMetaPartDisplayDriver"
|
||||||
|
msgid "The meta entries are written in an incorrect format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, S["The google schema is written in an incorrect format."]);
|
||||||
|
#: OrchardCore.Seo\Drivers\SeoMetaPartDisplayDriver.cs:154
|
||||||
|
msgctxt "OrchardCore.Seo.Drivers.SeoMetaPartDisplayDriver"
|
||||||
|
msgid "The google schema is written in an incorrect format."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="Render">@T["Render"]</label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Render"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether to render metadata for this page."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Whether to render metadata for this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="PageTitle">@T["Page Title"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Page Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Override the default generated web browser page title (recommended to keep under 70 characters)."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Override the default generated web browser page title (recommended to keep under 70 characters)."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="MetaDescription">@T["Meta Description"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Meta Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The meta description to render for this page."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "The meta description to render for this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="MetaKeywords">@T["Meta Keywords"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Meta Keywords"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The meta keywords to render for this page, comma separated."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "The meta keywords to render for this page, comma separated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Canonical">@T["Canonical"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Canonical"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Override the default canonical url."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Override the default canonical url."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="MetaRobots">@T["Meta Robots"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Meta Robots"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The robots meta to render for this page."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "The robots meta to render for this page."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th scope="col">@T["Content"]</th>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:59
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th scope="col">@T["Name"]</th>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:60
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th scope="col">@T["Property"]</th>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:61
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Property"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th scope="col">@T["Http Equiv"]</th>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Http Equiv"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <th scope="col">@T["Charset"]</th>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:63
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Charset"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a v-on:click="remove(index)" href="javascript:void(0)" title="@T["Remove element from list"]" class="btn">
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:84
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Remove element from list"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a v-on:click="add()" class="btn btn-light w-100 btn-sm"><i class="fas fa-plus small" aria-hidden="true"></i> @T["Add a custom meta tag"]</a>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:94
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Add a custom meta tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5 class="modal-title">@T["Edit Data"]</h5>
|
||||||
|
#. <a href="javascript:void(0)" v-on:click="showModal" class="float-end" title="@T["Edit Data"]"><i class="fas fa-edit" aria-hidden="true"></i></a>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:107
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:128
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Edit Data"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label for="meta-tags-textarea">@T["Custom Meta Tags"]</label>
|
||||||
|
#. <label asp-for="CustomMetaTags">@T["Custom Meta Tags"]</label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:112
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:127
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Custom Meta Tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["A JSON representation of the allowed values, e.g. {0}", "[ { content: 'First content', name: 'name1', property: 'prop1', httpEquiv: 'http-equiv1', charset: 'charset1' }, { content: 'Second content', name: 'name2', property: 'prop2', httpEquiv: 'http-equiv2', charset: 'charset2' } ]"]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:114
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "A JSON representation of the allowed values, e.g. {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-primary btn-submit" v-on:click="closeModal()">@T["OK"]</button>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:118
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPart.Edit.cshtml:119
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPart.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="GoogleSchema">@T["Google Schema"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartGoogleSchema.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartGoogleSchema.Edit"
|
||||||
|
msgid "Google Schema"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Social Meta Settings Google Schema is used by default, or can be overridden here."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartGoogleSchema.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartGoogleSchema.Edit"
|
||||||
|
msgid "The Social Meta Settings Google Schema is used by default, or can be overridden here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="OpenGraphType">@T["Open Graph Type"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartOpenGraph.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartOpenGraph.Edit"
|
||||||
|
msgid "Open Graph Type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Social Meta Settings Open Graph Type is used by default, or can be overridden here."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartOpenGraph.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartOpenGraph.Edit"
|
||||||
|
msgid "The Social Meta Settings Open Graph Type is used by default, or can be overridden here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="OpenGraphTitle">@T["Open Graph Title"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartOpenGraph.Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartOpenGraph.Edit"
|
||||||
|
msgid "Open Graph Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Title is used by default, then the Page Title, or can be overridden here."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartOpenGraph.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartOpenGraph.Edit"
|
||||||
|
msgid "The Title is used by default, then the Page Title, or can be overridden here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="OpenGraphDescription">@T["Open Graph Description"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartOpenGraph.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartOpenGraph.Edit"
|
||||||
|
msgid "Open Graph Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Meta Description is used by default, or can be overridden here."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartOpenGraph.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartOpenGraph.Edit"
|
||||||
|
msgid "The Meta Description is used by default, or can be overridden here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="DisplayKeywords">@T["Display Keywords"]</label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartSettings.Edit"
|
||||||
|
msgid "Display Keywords"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to display the Keywords panel."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartSettings.Edit"
|
||||||
|
msgid "Check to display the Keywords panel."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="DisplayCustomMetaTags">@T["Display Custom Meta Tags"]</label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartSettings.Edit"
|
||||||
|
msgid "Display Custom Meta Tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to display the Custom Meta Tags."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartSettings.Edit"
|
||||||
|
msgid "Check to display the Custom Meta Tags."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="DisplayOpenGraph">@T["Display Open Graph"]</label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartSettings.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartSettings.Edit"
|
||||||
|
msgid "Display Open Graph"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to display the Open Graph panel."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartSettings.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartSettings.Edit"
|
||||||
|
msgid "Check to display the Open Graph panel."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="DisplayTwitter">@T["Display Twitter"]</label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartSettings.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartSettings.Edit"
|
||||||
|
msgid "Display Twitter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to display the Twitter panel."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartSettings.Edit.cshtml:31
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartSettings.Edit"
|
||||||
|
msgid "Check to display the Twitter panel."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="DisplayGoogleSchema">@T["Display Google Schema"]</label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartSettings.Edit.cshtml:38
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartSettings.Edit"
|
||||||
|
msgid "Display Google Schema"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to display the Google Schema panel."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartSettings.Edit.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartSettings.Edit"
|
||||||
|
msgid "Check to display the Google Schema panel."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="TwitterTitle">@T["Twitter Title"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartTwitter.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartTwitter.Edit"
|
||||||
|
msgid "Twitter Title"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Title is used by default, then the Page Title, or can be overridden here."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartTwitter.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartTwitter.Edit"
|
||||||
|
msgid "The Title is used by default, then the Page Title, or can be overridden here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="TwitterDescription">@T["Twitter Description"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartTwitter.Edit.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartTwitter.Edit"
|
||||||
|
msgid "Twitter Description"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Meta Description is used by default, or can be overridden here."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartTwitter.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartTwitter.Edit"
|
||||||
|
msgid "The Meta Description is used by default, or can be overridden here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="TwitterCard">@T["Twitter Card"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartTwitter.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartTwitter.Edit"
|
||||||
|
msgid "Twitter Card"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Social Meta Settings Twitter Card is used by default, or can be overridden here."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartTwitter.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartTwitter.Edit"
|
||||||
|
msgid "The Social Meta Settings Twitter Card is used by default, or can be overridden here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="TwitterCreator">@T["Twitter Creator"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartTwitter.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartTwitter.Edit"
|
||||||
|
msgid "Twitter Creator"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Social Meta Settings Twitter Creator is used by default, or can be overridden here."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartTwitter.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartTwitter.Edit"
|
||||||
|
msgid "The Social Meta Settings Twitter Creator is used by default, or can be overridden here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="TwitterSite">@T["Twitter Site"] </label>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartTwitter.Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartTwitter.Edit"
|
||||||
|
msgid "Twitter Site"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Social Meta Settings Twitter Site is used by default, or can be overridden here."]</span>
|
||||||
|
#: OrchardCore.Seo\Views\SeoMetaPartTwitter.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Seo.Views.SeoMetaPartTwitter.Edit"
|
||||||
|
msgid "The Social Meta Settings Twitter Site is used by default, or can be overridden here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
326
src/Twain.Web/Localization/ar/OrchardCore.Settings.po
Normal file
326
src/Twain.Web/Localization/ar/OrchardCore.Settings.po
Normal file
@@ -0,0 +1,326 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Settings.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 810\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:25\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Settings\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.Settings.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "الضبط"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], "1", settings => settings
|
||||||
|
#: OrchardCore.Settings\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Settings.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. .Add(S["General"], "1", entry => entry
|
||||||
|
#: OrchardCore.Settings\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Settings.AdminMenu"
|
||||||
|
msgid "General"
|
||||||
|
msgstr "عام"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Site settings updated successfully."]);
|
||||||
|
#: OrchardCore.Settings\Controllers\AdminController.cs:89
|
||||||
|
msgctxt "OrchardCore.Settings.Controllers.AdminController"
|
||||||
|
msgid "Site settings updated successfully."
|
||||||
|
msgstr "تم تحديث إعدادات الموقع بنجاح."
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(Prefix, nameof(model.PageSize), S["The page size must be greater than zero."]);
|
||||||
|
#: OrchardCore.Settings\Drivers\DefaultSiteSettingsDisplayDriver.cs:67
|
||||||
|
msgctxt "OrchardCore.Settings.Drivers.DefaultSiteSettingsDisplayDriver"
|
||||||
|
msgid "The page size must be greater than zero."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(Prefix, nameof(model.PageSize), S["The page size must be less than or equal to {0}.", site.MaxPageSize]);
|
||||||
|
#: OrchardCore.Settings\Drivers\DefaultSiteSettingsDisplayDriver.cs:72
|
||||||
|
msgctxt "OrchardCore.Settings.Drivers.DefaultSiteSettingsDisplayDriver"
|
||||||
|
msgid "The page size must be less than or equal to {0}."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(Prefix, nameof(model.BaseUrl), S["The Base url must be a fully qualified URL."]);
|
||||||
|
#: OrchardCore.Settings\Drivers\DefaultSiteSettingsDisplayDriver.cs:78
|
||||||
|
msgctxt "OrchardCore.Settings.Drivers.DefaultSiteSettingsDisplayDriver"
|
||||||
|
msgid "The Base url must be a fully qualified URL."
|
||||||
|
msgstr "الرابط الأساسي يجب أن يكون عنوان URL مؤهل تماما."
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-cogs" aria-hidden="true"></i></span><span class="title">@T["General"]</span>
|
||||||
|
#: OrchardCore.Settings\Views\NavigationItemText-general.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Settings.Views.NavigationItemText-general.Id"
|
||||||
|
msgid "General"
|
||||||
|
msgstr "عام"
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The current tenant will be reloaded when the settings are saved."]</p>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "ستتم إعادة تحميل الـ tenant الحالية عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <a class="nav-link active" id="site-tab" data-bs-toggle="tab" href="#site" role="tab" aria-controls="site" aria-selected="true">@T["Site"]</a>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Site"
|
||||||
|
msgstr "الموقع"
|
||||||
|
|
||||||
|
#. <a class="nav-link" id="resources-tab" data-bs-toggle="tab" href="#resources" role="tab" aria-controls="resources">@T["Resources"]</a>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Resources"
|
||||||
|
msgstr "الموارد"
|
||||||
|
|
||||||
|
#. <a class="nav-link" id="cache-tab" data-bs-toggle="tab" href="#cache" role="tab" aria-controls="cache">@T["Cache"]</a>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Cache"
|
||||||
|
msgstr "ذاكرة التخزين المؤقت"
|
||||||
|
|
||||||
|
#. <label asp-for="SiteName">@T["Site name"]</label>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Site name"
|
||||||
|
msgstr "اسم الموقع"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The site name."]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "The site name."
|
||||||
|
msgstr "اسم الموقع."
|
||||||
|
|
||||||
|
#. <label asp-for="PageTitleFormat">@T["Page title format"]</label>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Page title format"
|
||||||
|
msgstr "تنسيق عنوان الصفحة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default format of page titles."]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "The default format of page titles."
|
||||||
|
msgstr "التنسيق الإفتراضي لعنوان الصفحات."
|
||||||
|
|
||||||
|
#. <label asp-for="BaseUrl">@T["Base url"]</label>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Base url"
|
||||||
|
msgstr "رابط عنوان الموقع الأساسي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Enter the fully qualified base URL of the web site."]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Enter the fully qualified base URL of the web site."
|
||||||
|
msgstr "أدخل رابط عنوان الموقع الأساسي كاملاً."
|
||||||
|
|
||||||
|
#. <label asp-for="TimeZone">@T["Default Time Zone"]</label>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:42
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Default Time Zone"
|
||||||
|
msgstr "المنطقة الزمنية الافتراضية"
|
||||||
|
|
||||||
|
#. <option value="">@T["Local to server"]</option>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:44
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Local to server"
|
||||||
|
msgstr "الخادم المحلي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Determines the default time zone used when displaying and editing dates and times. DST (daylight saving time) will be applied automatically per time zone if available."]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:53
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Determines the default time zone used when displaying and editing dates and times. DST (daylight saving time) will be applied automatically per time zone if available."
|
||||||
|
msgstr "تحديد الزمن الإفتراضي للمنطقة يستخدم لعرض وتعديل التواريخ والأوقات. DTS (التوقيت الصيفي) سيتم تطبيقه تلقائياً لزمن المنطقة إذا كان متوفر."
|
||||||
|
|
||||||
|
#. <label asp-for="PageSize">@T["Page size"]</label>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:59
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Page size"
|
||||||
|
msgstr "حجم الصفحة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default page size."]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "The default page size."
|
||||||
|
msgstr "حجم الصفحة الافتراضي."
|
||||||
|
|
||||||
|
#. <h5>@T["Settings for scripts and stylesheets"]</h5>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:67
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Settings for scripts and stylesheets"
|
||||||
|
msgstr "إعدادات السكربتات والأنماط"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="@Model.AppendVersion">@T["Use resources cache busting"]</label>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Use resources cache busting"
|
||||||
|
msgstr "إستخدام موارد خرق التخزين المؤقت"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether cache busting (append a version) is used for scripts and stylesheets"]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Whether cache busting (append a version) is used for scripts and stylesheets"
|
||||||
|
msgstr "ما إذا كان خرق التخزين المؤقت (إلحاق إصدار) سيستخدم في السكربتات و الإستايلات"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="@Model.UseCdn">@T["Use framework CDN (Content Delivery Network)"]</label>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:79
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Use framework CDN (Content Delivery Network)"
|
||||||
|
msgstr "إستخدام إطار العمل CDN (شبكة توصيل المحتوى)"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether a framework CDN is used for registered scripts and stylesheets, such as jQuery, or their local version"]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:80
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Whether a framework CDN is used for registered scripts and stylesheets, such as jQuery, or their local version"
|
||||||
|
msgstr "ما إذا كان إطار العمل CDN سيستخدم لتسجيل السكربتات والإستايلات, مثل الـ jQuery أو إصداراتها المحلية"
|
||||||
|
|
||||||
|
#. <label asp-for="CdnBaseUrl">@T["Site CDN (Content Delivery Network) base url"]</label>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:85
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Site CDN (Content Delivery Network) base url"
|
||||||
|
msgstr "الرابط الأساسي لـ CDN الموقع"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["A base CDN URL prefixed to the local scripts and stylesheets. It is disabled if the value is empty or if the Resource Debug Mode is enabled, e.g. <em>https://cdn.mysite.com</em>"]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:88
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "A base CDN URL prefixed to the local scripts and stylesheets. It is disabled if the value is empty or if the Resource Debug Mode is enabled, e.g. <em>https://cdn.mysite.com</em>"
|
||||||
|
msgstr "عنوان رابط الـ CDN الأساسي مسبوقًا للسكربتات والإستايلات المحلية. سيتم تعطيله إذا كانت القيمة فارغة أو إذا تم تفعيل وضع تصحيح الموارد, مثل <em>https://cdn.mysite.com</em>"
|
||||||
|
|
||||||
|
#. <label asp-for="ResourceDebugMode">@T["Resource Debug Mode"]</label>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:93
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Resource Debug Mode"
|
||||||
|
msgstr "وضع التصحيح الموارد"
|
||||||
|
|
||||||
|
#. <option value="@ResourceDebugMode.FromConfiguration.ToString()">@T["From environment — disabled in <em>Production</em>, enabled otherwise"]</option>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:95
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "From environment — disabled in <em>Production</em>, enabled otherwise"
|
||||||
|
msgstr "من البيئة – مفعلة في بيئة <em>Production</em> و معطلة في غيرها"
|
||||||
|
|
||||||
|
#. <option value="@ResourceDebugMode.Enabled.ToString()">@T["Enabled — use debuggable version of resources"]</option>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:96
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Enabled — use debuggable version of resources"
|
||||||
|
msgstr "ممكّن ـ إستغدام نسخة الموارد القابلة للتصحيح"
|
||||||
|
|
||||||
|
#. <option value="@ResourceDebugMode.Disabled.ToString()">@T["Disabled — use minified version of resources"]</option>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:97
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Disabled — use minified version of resources"
|
||||||
|
msgstr "معطّل ـ إستغدام نسخة الموارد المصغّرة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Determines whether scripts and stylesheets load in their debuggable or minified form."]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:99
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Determines whether scripts and stylesheets load in their debuggable or minified form."
|
||||||
|
msgstr "يحدد طريقة تحميل البرامج النصية وصفحات الأنماط، إمّا في نسختها القابلة للتصحيح أو في نسختها المصغرة."
|
||||||
|
|
||||||
|
#. <h5>@T["Settings for dynamic caches"]</h5>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:104
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Settings for dynamic caches"
|
||||||
|
msgstr "إعدادات الذاكرة المخبآة الديناميكية"
|
||||||
|
|
||||||
|
#. <label asp-for="CacheMode">@T["Cache Mode"]</label>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:107
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Cache Mode"
|
||||||
|
msgstr "وضع ذاكرة التخزين المؤقت"
|
||||||
|
|
||||||
|
#. <option value="@CacheMode.FromConfiguration.ToString()">@T["From environment — enabled in <em>Production</em>, disabled otherwise"]</option>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:109
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "From environment — enabled in <em>Production</em>, disabled otherwise"
|
||||||
|
msgstr "من البيئة – مفعلة في بيئة <em>Production</em> و معطلة في غيرها"
|
||||||
|
|
||||||
|
#. <option value="@CacheMode.Enabled.ToString()">@T["Enabled"]</option>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:110
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Enabled"
|
||||||
|
msgstr "مفعل"
|
||||||
|
|
||||||
|
#. <option value="@CacheMode.DebugEnabled.ToString()">@T["Enabled with cache debug mode"]</option>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:111
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Enabled with cache debug mode"
|
||||||
|
msgstr "تمكين مع وضع تصحيح أخطاء الذاكرة المؤقتة"
|
||||||
|
|
||||||
|
#. <option value="@CacheMode.Disabled.ToString()">@T["Disabled"]</option>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:112
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Disabled"
|
||||||
|
msgstr "معطل"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Determines whether caches are enabled or disabled."]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Settings.Edit.cshtml:114
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Settings.Edit"
|
||||||
|
msgid "Determines whether caches are enabled or disabled."
|
||||||
|
msgstr "يحدد ما إذا كانت الذاكرة المخبآة مفعلة أو معطلة."
|
||||||
|
|
||||||
|
#. <button class="primaryAction btn btn-primary save" type="submit">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Settings\Views\SiteSettings.SaveButton.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Settings.Views.SiteSettings.SaveButton"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <a href="@returnUrl" class="btn btn-secondary cancel" role="button">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Settings\Views\SiteSettings.SaveButton.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Settings.Views.SiteSettings.SaveButton"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Settings"])</h1></zone>
|
||||||
|
#: OrchardCore.Settings\Views\Admin\Index.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Admin.Index"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "الإعدادات"
|
||||||
|
|
||||||
|
#. <h5>@T["Site Settings"]</h5>
|
||||||
|
#: OrchardCore.Settings\Views\Items\SiteSettingsDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Items.SiteSettingsDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Site Settings"
|
||||||
|
msgstr "إعدادت الموقع"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The site settings to add as part of the plan."]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Items\SiteSettingsDeploymentStep.Fields.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Items.SiteSettingsDeploymentStep.Fields.Edit"
|
||||||
|
msgid "The site settings to add as part of the plan."
|
||||||
|
msgstr "إعدادات الموقع المراد إضافتها كجزء من الخطة."
|
||||||
|
|
||||||
|
#. <h5>@T["Site Settings"]</h5>
|
||||||
|
#: OrchardCore.Settings\Views\Items\SiteSettingsDeploymentStep.Fields.Summary.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Items.SiteSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "Site Settings"
|
||||||
|
msgstr "إعدادت الموقع"
|
||||||
|
|
||||||
|
#. <span class="badge bg-warning">@T["No settings selected."]</span>
|
||||||
|
#: OrchardCore.Settings\Views\Items\SiteSettingsDeploymentStep.Fields.Summary.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Items.SiteSettingsDeploymentStep.Fields.Summary"
|
||||||
|
msgid "No settings selected."
|
||||||
|
msgstr "لا توجد إعدادات محددة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Site Settings"]</h4>
|
||||||
|
#: OrchardCore.Settings\Views\Items\SiteSettingsDeploymentStep.Fields.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Items.SiteSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Site Settings"
|
||||||
|
msgstr "إعدادت الموقع"
|
||||||
|
|
||||||
|
#. <p>@T["Exports the current site settings."]</p>
|
||||||
|
#: OrchardCore.Settings\Views\Items\SiteSettingsDeploymentStep.Fields.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Items.SiteSettingsDeploymentStep.Fields.Thumbnail"
|
||||||
|
msgid "Exports the current site settings."
|
||||||
|
msgstr "تصدير الإعدادات الموقع الحالية."
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-link" title="@T["Delete"]">
|
||||||
|
#: OrchardCore.Settings\Views\Shared\DisplayTemplates\RemovableCulture.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Settings.Views.Shared.DisplayTemplates.RemovableCulture"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
44
src/Twain.Web/Localization/ar/OrchardCore.Setup.Core.po
Normal file
44
src/Twain.Web/Localization/ar/OrchardCore.Setup.Core.po
Normal file
@@ -0,0 +1,44 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Setup.Core.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 812\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:26\n"
|
||||||
|
|
||||||
|
#. context.Errors.Add(String.Empty, S["DatabaseProvider setting is required."]);
|
||||||
|
#: OrchardCore.Setup.Core\SetupService.cs:177
|
||||||
|
msgctxt "OrchardCore.Setup.Services.SetupService"
|
||||||
|
msgid "DatabaseProvider setting is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Errors.Add(String.Empty, S["The provided database provider is not supported."]);
|
||||||
|
#: OrchardCore.Setup.Core\SetupService.cs:180
|
||||||
|
msgctxt "OrchardCore.Setup.Services.SetupService"
|
||||||
|
msgid "The provided database provider is not supported."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Errors.Add(String.Empty, S["The provided connection string is invalid or server is unreachable."]);
|
||||||
|
#: OrchardCore.Setup.Core\SetupService.cs:183
|
||||||
|
msgctxt "OrchardCore.Setup.Services.SetupService"
|
||||||
|
msgid "The provided connection string is invalid or server is unreachable."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Errors.Add(String.Empty, S["The provided database and table prefix are already in use."]);
|
||||||
|
#: OrchardCore.Setup.Core\SetupService.cs:186
|
||||||
|
msgctxt "OrchardCore.Setup.Services.SetupService"
|
||||||
|
msgid "The provided database and table prefix are already in use."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Errors.Add(String.Empty, S["An error occurred while initializing the datastore: {0}", e.Message]);
|
||||||
|
#: OrchardCore.Setup.Core\SetupService.cs:225
|
||||||
|
msgctxt "OrchardCore.Setup.Services.SetupService"
|
||||||
|
msgid "An error occurred while initializing the datastore: {0}"
|
||||||
|
msgstr "حدث خطأ اثناء تهئية مصدر البيانات: {0}"
|
||||||
|
|
||||||
273
src/Twain.Web/Localization/ar/OrchardCore.Setup.po
Normal file
273
src/Twain.Web/Localization/ar/OrchardCore.Setup.po
Normal file
@@ -0,0 +1,273 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Setup.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 814\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:27\n"
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(model.Password), S["The password is required."]);
|
||||||
|
#: OrchardCore.Setup\Controllers\SetupController.cs:99
|
||||||
|
msgctxt "OrchardCore.Setup.Controllers.SetupController"
|
||||||
|
msgid "The password is required."
|
||||||
|
msgstr "كلمة المرور مطلوبه."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(model.PasswordConfirmation), S["The password confirmation doesn't match the password."]);
|
||||||
|
#: OrchardCore.Setup\Controllers\SetupController.cs:104
|
||||||
|
msgctxt "OrchardCore.Setup.Controllers.SetupController"
|
||||||
|
msgid "The password confirmation doesn't match the password."
|
||||||
|
msgstr "تأكيد كلمة المرور لا تطابق كلمة المرور."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(model.RecipeName), S["Invalid recipe."]);
|
||||||
|
#. ModelState.AddModelError(nameof(model.RecipeName), S["Invalid recipe."]);
|
||||||
|
#: OrchardCore.Setup\Controllers\SetupController.cs:113
|
||||||
|
#: OrchardCore.Setup\Controllers\SetupController.cs:118
|
||||||
|
msgctxt "OrchardCore.Setup.Controllers.SetupController"
|
||||||
|
msgid "Invalid recipe."
|
||||||
|
msgstr "وصفات غير صحيحة."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(model.Email), S["The email is invalid."]);
|
||||||
|
#: OrchardCore.Setup\Controllers\SetupController.cs:124
|
||||||
|
msgctxt "OrchardCore.Setup.Controllers.SetupController"
|
||||||
|
msgid "The email is invalid."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(model.UserName), S["User name '{0}' is invalid, can only contain letters or digits.", model.UserName]);
|
||||||
|
#: OrchardCore.Setup\Controllers\SetupController.cs:129
|
||||||
|
msgctxt "OrchardCore.Setup.Controllers.SetupController"
|
||||||
|
msgid "User name '{0}' is invalid, can only contain letters or digits."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <title>@T["Setup"]</title>
|
||||||
|
#: OrchardCore.Setup\Views\_Layout.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Setup.Views._Layout"
|
||||||
|
msgid "Setup"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "one non-alphanumeric"
|
||||||
|
msgstr "حرف غير الأبجدية الرقمية"
|
||||||
|
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "one uppercase"
|
||||||
|
msgstr "حرف كبير"
|
||||||
|
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "one lowercase"
|
||||||
|
msgstr "حرف صغير"
|
||||||
|
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid ", "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "one digit"
|
||||||
|
msgstr "رقم واحد"
|
||||||
|
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid " and "
|
||||||
|
msgstr " و "
|
||||||
|
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "{0} characters in total"
|
||||||
|
msgstr "{0} حروف"
|
||||||
|
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid ", with {0} unique characters"
|
||||||
|
msgstr ", مع {0} حروف فريده"
|
||||||
|
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Password must have at least {0}."
|
||||||
|
msgstr "كلمة المرور يجب أن تحتوي على الأقل {0}."
|
||||||
|
|
||||||
|
#. <label for="culturesList" class="mt-2">@T["Change language"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:79
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Change language"
|
||||||
|
msgstr "تغيير اللغة"
|
||||||
|
|
||||||
|
#. <h1>@T["Setup"]</h1>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:93
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Setup"
|
||||||
|
msgstr "تثبيت"
|
||||||
|
|
||||||
|
#. <p class="lead">@T["Please answer a few questions to configure your site."]</p>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:94
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Please answer a few questions to configure your site."
|
||||||
|
msgstr "الرجاء الإجابة على بعض الأسئلة لإعداد موقعك."
|
||||||
|
|
||||||
|
#. <strong>@T["No recipes available."]</strong> @T["It is not possible to set up a site without a recipe."]
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:102
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "No recipes available."
|
||||||
|
msgstr "لا توجد وصفات متاحة."
|
||||||
|
|
||||||
|
#. <strong>@T["No recipes available."]</strong> @T["It is not possible to set up a site without a recipe."]
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:102
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "It is not possible to set up a site without a recipe."
|
||||||
|
msgstr "ليس من الممكن تنصيب الموقع دون وصفة."
|
||||||
|
|
||||||
|
#. <label asp-for="SiteName">@T["What is the name of your site?"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:109
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "What is the name of your site?"
|
||||||
|
msgstr "ما هو إسم موقعك؟"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="SiteName" class="text-danger">@T["The site name is required."]</span>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:111
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "The site name is required."
|
||||||
|
msgstr "إسم الموقع مطلوب."
|
||||||
|
|
||||||
|
#. <span class="text-muted form-text small">@T["This is used as the default title of your pages."]</span>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:112
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "This is used as the default title of your pages."
|
||||||
|
msgstr "هذا سيستخدم كعنوان إفتراضي لصفحاتك."
|
||||||
|
|
||||||
|
#. <label asp-for="RecipeName">@T["Recipe"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:121
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Recipe"
|
||||||
|
msgstr "الوصفه"
|
||||||
|
|
||||||
|
#. <button id="noRecipeButton" title="@T["No Recipes Available"]" class="btn btn-secondary dropdown-toggle disabled" type="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
#. @T["No Recipes Available"]
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:125
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:126
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "No Recipes Available"
|
||||||
|
msgstr "لا توجد وصفات متاحة"
|
||||||
|
|
||||||
|
#. <span class="text-muted form-text small">@T["Recipes allow you to setup your site with additional pre-configured options, features and settings out of the box."]</span>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:146
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Recipes allow you to setup your site with additional pre-configured options, features and settings out of the box."
|
||||||
|
msgstr "الوصفات تسمح لك بتثبيت موقعك بخيارات إضافية تم تكوينها مسبقاً."
|
||||||
|
|
||||||
|
#. <label asp-for="SiteTimeZone">@T["Default Time Zone"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:150
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Default Time Zone"
|
||||||
|
msgstr "المنطقة الزمنية الافتراضية"
|
||||||
|
|
||||||
|
#. <span class="text-muted form-text small">@T["Determines the default time zone used when displaying and editing dates and times."]</span>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:160
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Determines the default time zone used when displaying and editing dates and times."
|
||||||
|
msgstr "حدد المنطقة الزمنية الإفتراضية التي سيتم إستخدامها لعرض وتعديل التواريخ والأوقات."
|
||||||
|
|
||||||
|
#. <label asp-for="DatabaseProvider">@T["What type of database to use?"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:167
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "What type of database to use?"
|
||||||
|
msgstr "ما هو نوع قاعدة البيانات المستخدمة؟"
|
||||||
|
|
||||||
|
#. <option value="@provider.Value" data-connection-string="@provider.HasConnectionString" data-table-prefix="@provider.HasTablePrefix" data-connection-string-sample="@T["The connection string to your database instance. e.g., {0}", provider.SampleConnectionString]">@provider.Name</option>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:171
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "The connection string to your database instance. e.g., {0}"
|
||||||
|
msgstr "نص الربط إلى قاعدة البيانات, مثال, {0}"
|
||||||
|
|
||||||
|
#. <span class="text-muted form-text small">@T["The database is used to store the site's configuration and its contents."]</span>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:175
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "The database is used to store the site's configuration and its contents."
|
||||||
|
msgstr "قاعدة البيانات تستخدم لتخزين إعدادات الموقع ومحتوياته."
|
||||||
|
|
||||||
|
#. <label asp-for="TablePrefix">@T["Table Prefix"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:179
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Table Prefix"
|
||||||
|
msgstr "بادئة الجدول"
|
||||||
|
|
||||||
|
#. <span class="text-muted form-text small">@T["You can specify a table prefix if you intend to reuse the same database for multiple sites."]</span>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:182
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "You can specify a table prefix if you intend to reuse the same database for multiple sites."
|
||||||
|
msgstr "يمكنك تحديد بادئة الجدول إذا كنت تنوي إعادة استخدام نفس قاعدة البيانات لمواقع متعددة."
|
||||||
|
|
||||||
|
#. <label asp-for="ConnectionString">@T["Connection string"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:188
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Connection string"
|
||||||
|
msgstr "نص الإتصال"
|
||||||
|
|
||||||
|
#. <button type="button" id="toggleConnectionString" class="btn btn-secondary" tabindex="-1" aria-hidden="true" title="@T["Show/hide connection string"]"><i class="icon fa fa-eye"></i></button>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:191
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Show/hide connection string"
|
||||||
|
msgstr "إظهار/إخفاء نص الإتصال"
|
||||||
|
|
||||||
|
#. <legend>@T["Super User"]</legend>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:199
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Super User"
|
||||||
|
msgstr "المستخدم المتميز"
|
||||||
|
|
||||||
|
#. <span class="text-muted form-text small">@T["The super user has all the rights. It should be used only during Setup and for disaster recovery."]</span>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:200
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "The super user has all the rights. It should be used only during Setup and for disaster recovery."
|
||||||
|
msgstr "المستخدم المتميز يمتلك كل الصلاحيات. ينبغي إستخدامه اثناء التثبيت و التعافي من الكوارث."
|
||||||
|
|
||||||
|
#. <label asp-for="UserName">@T["User name"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:203
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "User name"
|
||||||
|
msgstr "إسم المستخدم"
|
||||||
|
|
||||||
|
#. <label for="Email">@T["Email"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:208
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Email"
|
||||||
|
msgstr "البريد الإلكتروني"
|
||||||
|
|
||||||
|
#. <span asp-validation-for="Email" class="text-danger">@T["The email is invalid."]</span>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:210
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "The email is invalid."
|
||||||
|
msgstr "البريد الإلكتروني غير صحيح."
|
||||||
|
|
||||||
|
#. <label asp-for="Password">@T["Password"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:215
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Password"
|
||||||
|
msgstr "كلمة المرور"
|
||||||
|
|
||||||
|
#. <input asp-for="Password" class="form-control" data-bs-toggle="popover" data-bs-placement="top" data-trigger="focus" data-title="@T["Password strength"]" data-bs-content="@passwordTooltip" required pattern="@passwordRegex" />
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:217
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Password strength"
|
||||||
|
msgstr "قوة كلمة المرور"
|
||||||
|
|
||||||
|
#. <label asp-for="PasswordConfirmation">@T["Password Confirmation"]</label>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:225
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Password Confirmation"
|
||||||
|
msgstr "تأكيد كلمة المرور"
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary" type="submit" id="SubmitButton">@T["Finish Setup"]</button>
|
||||||
|
#: OrchardCore.Setup\Views\Setup\Index.cshtml:237
|
||||||
|
msgctxt "OrchardCore.Setup.Views.Setup.Index"
|
||||||
|
msgid "Finish Setup"
|
||||||
|
msgstr "إنهاء التثبيت"
|
||||||
|
|
||||||
514
src/Twain.Web/Localization/ar/OrchardCore.Shortcodes.po
Normal file
514
src/Twain.Web/Localization/ar/OrchardCore.Shortcodes.po
Normal file
@@ -0,0 +1,514 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Shortcodes.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 816\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:28\n"
|
||||||
|
|
||||||
|
#. .Add(S["Design"], design => design
|
||||||
|
#: OrchardCore.Shortcodes\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Shortcodes.AdminMenu"
|
||||||
|
msgid "Design"
|
||||||
|
msgstr "تصميم"
|
||||||
|
|
||||||
|
#. .Add(S["Shortcodes"], S["Shortcodes"].PrefixPosition(), import => import
|
||||||
|
#. .Add(S["Shortcodes"], S["Shortcodes"].PrefixPosition(), import => import
|
||||||
|
#: OrchardCore.Shortcodes\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Shortcodes\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Shortcodes.AdminMenu"
|
||||||
|
msgid "Shortcodes"
|
||||||
|
msgstr "الرموز المختصرة"
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Remove) }
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:96
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Controllers.AdminController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(ShortcodeTemplateViewModel.Name), S["The name is mandatory."]);
|
||||||
|
#. ModelState.AddModelError(nameof(ShortcodeTemplateViewModel.Name), S["The name is mandatory."]);
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:133
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:234
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Controllers.AdminController"
|
||||||
|
msgid "The name is mandatory."
|
||||||
|
msgstr "الإسم مطلوب."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(ShortcodeTemplateViewModel.Name), S["The name contains invalid characters."]);
|
||||||
|
#. ModelState.AddModelError(nameof(ShortcodeTemplateViewModel.Name), S["The name contains invalid characters."]);
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:137
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:238
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Controllers.AdminController"
|
||||||
|
msgid "The name contains invalid characters."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(ShortcodeTemplateViewModel.Name), S["A template with the same name already exists."]);
|
||||||
|
#. ModelState.AddModelError(nameof(ShortcodeTemplateViewModel.Name), S["A template with the same name already exists."]);
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:145
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:243
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Controllers.AdminController"
|
||||||
|
msgid "A template with the same name already exists."
|
||||||
|
msgstr "القالب بنفس الإسم موجود مسبقاً."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(ShortcodeTemplateViewModel.Content), S["The template content is mandatory."]);
|
||||||
|
#. ModelState.AddModelError(nameof(ShortcodeTemplateViewModel.Content), S["The template content is mandatory."]);
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:151
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:248
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Controllers.AdminController"
|
||||||
|
msgid "The template content is mandatory."
|
||||||
|
msgstr "المحتوى إلزامي."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(ShortcodeTemplateViewModel.Content), S["The template doesn't contain a valid Liquid expression. Details: {0}", String.Join(" ", errors)]);
|
||||||
|
#. ModelState.AddModelError(nameof(ShortcodeTemplateViewModel.Content), S["The template doesn't contain a valid Liquid expression. Details: {0}", String.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:155
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:252
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Controllers.AdminController"
|
||||||
|
msgid "The template doesn't contain a valid Liquid expression. Details: {0}"
|
||||||
|
msgstr "المحتوى لا يحتوي على عبارة Liquid صحيحة. للتفاصيل: {0}"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Shortcode template deleted successfully."]);
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:302
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Controllers.AdminController"
|
||||||
|
msgid "Shortcode template deleted successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Shortcode templates successfully removed."]);
|
||||||
|
#: OrchardCore.Shortcodes\Controllers\AdminController.cs:329
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Controllers.AdminController"
|
||||||
|
msgid "Shortcode templates successfully removed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="btn btn-primary btn-sm" data-default-value="@Model.Value.DefaultValue" v-on:click="insertShortcode">@T["Add"]</button>
|
||||||
|
#: OrchardCore.Shortcodes\Views\ShortcodeDescriptor-Button-Actions.SummaryAdmin.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.ShortcodeDescriptor-Button-Actions.SummaryAdmin"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5 class="modal-title" id="shortcodeModalLabel">@T["Available Shortcodes"]</h5>
|
||||||
|
#: OrchardCore.Shortcodes\Views\ShortcodeModal.cshtml:42
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.ShortcodeModal"
|
||||||
|
msgid "Available Shortcodes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input class="form-control" type="search" placeholder="@T["Filter"]" aria-label="@T["Filter"]" v-model="filter" ref="filter" />
|
||||||
|
#. <input class="form-control" type="search" placeholder="@T["Filter"]" aria-label="@T["Filter"]" v-model="filter" ref="filter" />
|
||||||
|
#: OrchardCore.Shortcodes\Views\ShortcodeModal.cshtml:49
|
||||||
|
#: OrchardCore.Shortcodes\Views\ShortcodeModal.cshtml:49
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.ShortcodeModal"
|
||||||
|
msgid "Filter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">@T["Cancel"]</button>
|
||||||
|
#: OrchardCore.Shortcodes\Views\ShortcodeModal.cshtml:77
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.ShortcodeModal"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Shortcode"])</h1></zone>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Create Shortcode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:44
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The name of the shortcode."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "The name of the shortcode."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Hint">@T["Hint"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Hint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The hint for the shortcode."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:53
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "The hint for the shortcode."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Usage">@T["Usage"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:57
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Usage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Example usage of the shortcode."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:59
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Example usage of the shortcode."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SelectedCategories">@T["Categories"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:64
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Categories"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. placeholder="@T["Type to search"]"
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:67
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Type to search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. select-label="@T["Select"]"
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:68
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Select"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. deselect-label="@T["Remove"]"
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:69
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Remove"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. tag-placeholder="@T["Press enter to add a category"]"
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:77
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Press enter to add a category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["No categories found"]
|
||||||
|
#. @T["No categories found"]
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:80
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:83
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "No categories found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The categories for this shortcode."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:86
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "The categories for this shortcode."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="DefaultValue">@T["Default Shortcode Value"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:90
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Default Shortcode Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default value of the shortcode when selected. Defaults to [name]."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:92
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "The default value of the shortcode when selected. Defaults to [name]."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Content">@T["Content"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:107
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Shortcode Liquid template."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:110
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "The Shortcode Liquid template."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="submit" name="submit" class="btn btn-primary save">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:117
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="visually-hidden">@T["Toggle Dropdown"]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:119
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Toggle Dropdown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="dropdown-item save-continue" name="submit" type="submit" value="SaveAndContinue">@T["and continue"]</button>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:122
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "and continue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Create.cshtml:126
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Shortcode"])</h1></zone>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:38
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Edit Shortcode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:48
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The name of the shortcode."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "The name of the shortcode."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Hint">@T["Hint"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:54
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Hint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The hint for the shortcode."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:56
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "The hint for the shortcode."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Usage">@T["Usage"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:60
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Usage"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Example usage of the shortcode."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:62
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Example usage of the shortcode."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="SelectedCategories">@T["Categories"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:67
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Categories"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. placeholder="@T["Type to search"]"
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:70
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Type to search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. select-label="@T["Select"]"
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Select"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. deselect-label="@T["Remove"]"
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:72
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Remove"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. tag-placeholder="@T["Press enter to add a category"]"
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:80
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Press enter to add a category"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["No categories found"]
|
||||||
|
#. @T["No categories found"]
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:83
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:86
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "No categories found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The categories for this shortcode."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:89
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "The categories for this shortcode."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="DefaultValue">@T["Default Shortcode Value"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:93
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Default Shortcode Value"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The default value of the shortcode when selected. Defaults to [name]."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:95
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "The default value of the shortcode when selected. Defaults to [name]."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Content">@T["Content"]</label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:116
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Content"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Liquid template."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:119
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "The Liquid template."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button type="submit" name="submit" class="btn btn-primary save">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:125
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="visually-hidden">@T["Toggle Dropdown"]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:127
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Toggle Dropdown"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <button class="dropdown-item save-continue" name="submit" type="submit" value="SaveAndContinue">@T["and continue"]</button>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:130
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "and continue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="btn btn-secondary cancel" role="button" asp-route-action="Index">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Edit.cshtml:134
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Shortcodes"])</h1></zone>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "Shortcodes"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <input asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="Create" class="btn btn-secondary create" role="button">@T["Add Shortcode"]</a>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:26
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "Add Shortcode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.ShortcodeTemplates.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.ShortcodeTemplates.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.ShortcodeTemplates.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-name="@entry.Name" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:68
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Delete" asp-route-name="@entry.Name" class="btn btn-danger btn-sm" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:69
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no shortcodes for the moment."]
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:84
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no shortcodes for the moment."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Shortcodes/#example-shortcode-templates" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:85
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:133
|
||||||
|
#: OrchardCore.Shortcodes\Views\Admin\Index.cshtml:141
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Admin.Index"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["All Shortcode Templates"]</h5>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Items\AllShortcodeTemplatesDeploymentStep.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Items.AllShortcodeTemplatesDeploymentStep.Edit"
|
||||||
|
msgid "All Shortcode Templates"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["All Shortcode Templates"]</h5>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Items\AllShortcodeTemplatesDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Items.AllShortcodeTemplatesDeploymentStep.Summary"
|
||||||
|
msgid "All Shortcode Templates"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds all shortcode templates to the plan."]</span>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Items\AllShortcodeTemplatesDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Items.AllShortcodeTemplatesDeploymentStep.Summary"
|
||||||
|
msgid "Adds all shortcode templates to the plan."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["All Shortcode Templates"]</h4>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Items\AllShortcodeTemplatesDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Items.AllShortcodeTemplatesDeploymentStep.Thumbnail"
|
||||||
|
msgid "All Shortcode Templates"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p>@T["Exports all shortcode templates."]</p>
|
||||||
|
#: OrchardCore.Shortcodes\Views\Items\AllShortcodeTemplatesDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Shortcodes.Views.Items.AllShortcodeTemplatesDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports all shortcode templates."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
1164
src/Twain.Web/Localization/ar/OrchardCore.Sitemaps.po
Normal file
1164
src/Twain.Web/Localization/ar/OrchardCore.Sitemaps.po
Normal file
File diff suppressed because it is too large
Load Diff
90
src/Twain.Web/Localization/ar/OrchardCore.Spatial.po
Normal file
90
src/Twain.Web/Localization/ar/OrchardCore.Spatial.po
Normal file
@@ -0,0 +1,90 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Spatial.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 820\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:29\n"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(field.Latitude), S["The {0} field is required.", context.PartFieldDefinition.DisplayName()]);
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(field.Longitude), S["The {0} field is required.", context.PartFieldDefinition.DisplayName()]);
|
||||||
|
#: OrchardCore.Spatial\Drivers\GeoPointFieldDisplayDriver.cs:68
|
||||||
|
#: OrchardCore.Spatial\Drivers\GeoPointFieldDisplayDriver.cs:88
|
||||||
|
msgctxt "OrchardCore.Spatial.Drivers.GeoPointFieldDisplayDriver"
|
||||||
|
msgid "The {0} field is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(viewModel.Latitude), S["{0} is an invalid number.", context.PartFieldDefinition.DisplayName()]);
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(viewModel.Longitude), S["{0} is an invalid number.", context.PartFieldDefinition.DisplayName()]);
|
||||||
|
#: OrchardCore.Spatial\Drivers\GeoPointFieldDisplayDriver.cs:77
|
||||||
|
#: OrchardCore.Spatial\Drivers\GeoPointFieldDisplayDriver.cs:97
|
||||||
|
msgctxt "OrchardCore.Spatial.Drivers.GeoPointFieldDisplayDriver"
|
||||||
|
msgid "{0} is an invalid number."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Latitude">@T["Latitude"]</label>
|
||||||
|
#: OrchardCore.Spatial\Views\GeoPointField-Leaflet.Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Spatial.Views.GeoPointField-Leaflet.Edit"
|
||||||
|
msgid "Latitude"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Longitude">@T["Longitude"]</label>
|
||||||
|
#: OrchardCore.Spatial\Views\GeoPointField-Leaflet.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Spatial.Views.GeoPointField-Leaflet.Edit"
|
||||||
|
msgid "Longitude"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="Leaflet" selected="@(currentEditor == "Leaflet")">@T["Leaflet editor"]</option>
|
||||||
|
#: OrchardCore.Spatial\Views\GeoPointField-Leaflet.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Spatial.Views.GeoPointField-Leaflet.Option"
|
||||||
|
msgid "Leaflet editor"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Latitude">@T["Latitude"]</label>
|
||||||
|
#: OrchardCore.Spatial\Views\GeoPointField.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Spatial.Views.GeoPointField.Edit"
|
||||||
|
msgid "Latitude"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Longitude">@T["Longitude"]</label>
|
||||||
|
#: OrchardCore.Spatial\Views\GeoPointField.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Spatial.Views.GeoPointField.Edit"
|
||||||
|
msgid "Longitude"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="" selected="@string.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Spatial\Views\GeoPointField.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Spatial.Views.GeoPointField.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="Required">@T["Required"]</label>
|
||||||
|
#: OrchardCore.Spatial\Views\GeoPointFieldSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Spatial.Views.GeoPointFieldSettings.Edit"
|
||||||
|
msgid "Required"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether a value is required."]</span>
|
||||||
|
#: OrchardCore.Spatial\Views\GeoPointFieldSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Spatial.Views.GeoPointFieldSettings.Edit"
|
||||||
|
msgid "Whether a value is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Hint">@T["Hint"]</label>
|
||||||
|
#: OrchardCore.Spatial\Views\GeoPointFieldSettings.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Spatial.Views.GeoPointFieldSettings.Edit"
|
||||||
|
msgid "Hint"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The hint text to display for this field on the editor."]</span>
|
||||||
|
#: OrchardCore.Spatial\Views\GeoPointFieldSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Spatial.Views.GeoPointFieldSettings.Edit"
|
||||||
|
msgid "The hint text to display for this field on the editor."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
306
src/Twain.Web/Localization/ar/OrchardCore.Taxonomies.po
Normal file
306
src/Twain.Web/Localization/ar/OrchardCore.Taxonomies.po
Normal file
@@ -0,0 +1,306 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Taxonomies.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 822\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:30\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Taxonomies\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Taxonomies.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], "1", settings => settings
|
||||||
|
#: OrchardCore.Taxonomies\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Taxonomies.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Taxonomy Filters"], S["Taxonomy Filters"].PrefixPosition(), admt => admt
|
||||||
|
#. .Add(S["Taxonomy Filters"], S["Taxonomy Filters"].PrefixPosition(), admt => admt
|
||||||
|
#: OrchardCore.Taxonomies\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.Taxonomies\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Taxonomies.AdminMenu"
|
||||||
|
msgid "Taxonomy Filters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<TaxonomyContentsAdminListSettings, ContentsAdminListDeploymentStartup>(S => S["Taxonomy Filters settings"], S => S["Exports the Taxonomy filters settings."]);
|
||||||
|
#: OrchardCore.Taxonomies\Startup.cs:139
|
||||||
|
msgctxt "OrchardCore.Taxonomies.ContentsAdminListDeploymentStartup"
|
||||||
|
msgid "Taxonomy Filters settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<TaxonomyContentsAdminListSettings, ContentsAdminListDeploymentStartup>(S => S["Taxonomy Filters settings"], S => S["Exports the Taxonomy filters settings."]);
|
||||||
|
#: OrchardCore.Taxonomies\Startup.cs:139
|
||||||
|
msgctxt "OrchardCore.Taxonomies.ContentsAdminListDeploymentStartup"
|
||||||
|
msgid "Exports the Taxonomy filters settings."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Taxonomy item deleted successfully."]);
|
||||||
|
#: OrchardCore.Taxonomies\Controllers\AdminController.cs:318
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Controllers.AdminController"
|
||||||
|
msgid "Taxonomy item deleted successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem { Text = S["Clear filter"], Value = "" },
|
||||||
|
#: OrchardCore.Taxonomies\Drivers\TaxonomyContentsAdminListDisplayDriver.cs:83
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Drivers.TaxonomyContentsAdminListDisplayDriver"
|
||||||
|
msgid "Clear filter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. new SelectListItem { Text = S["Show all"], Value = "Taxonomy:" + taxonomy.ContentItemId }
|
||||||
|
#: OrchardCore.Taxonomies\Drivers\TaxonomyContentsAdminListDisplayDriver.cs:84
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Drivers.TaxonomyContentsAdminListDisplayDriver"
|
||||||
|
msgid "Show all"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. S["A value is required for '{0}'", context.PartFieldDefinition.DisplayName()]);
|
||||||
|
#: OrchardCore.Taxonomies\Drivers\TaxonomyFieldDisplayDriver.cs:86
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Drivers.TaxonomyFieldDisplayDriver"
|
||||||
|
msgid "A value is required for '{0}'"
|
||||||
|
msgstr "القيمة مطلوبة لـ '{0}'"
|
||||||
|
|
||||||
|
#. S["A value is required for '{0}'", context.PartFieldDefinition.DisplayName()]);
|
||||||
|
#: OrchardCore.Taxonomies\Drivers\TaxonomyFieldTagsDisplayDriver.cs:97
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Drivers.TaxonomyFieldTagsDisplayDriver"
|
||||||
|
msgid "A value is required for '{0}'"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["Edit"]
|
||||||
|
#: OrchardCore.Taxonomies\Views\Content.TermAdmin.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.Content.TermAdmin"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. @T["Add"]
|
||||||
|
#: OrchardCore.Taxonomies\Views\Content.TermAdmin.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.Content.TermAdmin"
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "إضافة"
|
||||||
|
|
||||||
|
#. @T["Delete"]
|
||||||
|
#: OrchardCore.Taxonomies\Views\Content.TermAdmin.cshtml:45
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.Content.TermAdmin"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. <select asp-for="SelectedContentItemId" asp-items="Model.Taxonomies" class="selectpicker taxonomy-selectpicker show-tick me-2" data-header="@T["Filter by {0}", Model.DisplayText]" data-live-search="true" data-selected-text-format="static" data-width="fit" title="@T["{0}", Model.DisplayText]" data-style="btn-sm" data-dropdown-align-right="auto">
|
||||||
|
#: OrchardCore.Taxonomies\Views\ContentsAdminListTaxonomyFilter.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.ContentsAdminListTaxonomyFilter"
|
||||||
|
msgid "Filter by {0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <select asp-for="SelectedContentItemId" asp-items="Model.Taxonomies" class="selectpicker taxonomy-selectpicker show-tick me-2" data-header="@T["Filter by {0}", Model.DisplayText]" data-live-search="true" data-selected-text-format="static" data-width="fit" title="@T["{0}", Model.DisplayText]" data-style="btn-sm" data-dropdown-align-right="auto">
|
||||||
|
#: OrchardCore.Taxonomies\Views\ContentsAdminListTaxonomyFilter.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.ContentsAdminListTaxonomyFilter"
|
||||||
|
msgid "{0}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-tags" aria-hidden="true"></i></span><span class="title">@T["Taxonomy Filters"]</span>
|
||||||
|
#: OrchardCore.Taxonomies\Views\NavigationItemText-taxonomyfilters.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.NavigationItemText-taxonomyfilters.Id"
|
||||||
|
msgid "Taxonomy Filters"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="TaxonomyEntries">@T["Taxonomies"]</label>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyContentsAdminListSettings.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyContentsAdminListSettings.Edit"
|
||||||
|
msgid "Taxonomies"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["The taxonomies to filters in the contents list."]</span>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyContentsAdminListSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyContentsAdminListSettings.Edit"
|
||||||
|
msgid "The taxonomies to filters in the contents list."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="Tags" selected="@(currentDisplayMode == "Tags")">@T["Tags"]</option>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField-Tags.DisplayOption.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField-Tags.DisplayOption"
|
||||||
|
msgid "Tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["The taxonomy could not be found. Please check the settings for this field."]
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField-Tags.Edit.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField-Tags.Edit"
|
||||||
|
msgid "The taxonomy could not be found. Please check the settings for this field."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <div id="@vueElementId" class="tags" data-taxonomy-content-item-id="@Model.Taxonomy.ContentItemId" data-open="@open.ToString().ToLower()" data-leaves-only="@taxonomySettings.LeavesOnly.ToString().ToLower()" data-create-tag-error-message="@T["Error creating tag"]" data-all-tag-terms="@Model.TagTermEntries" data-create-tag-url="@createTagUrl">
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField-Tags.Edit.cshtml:46
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField-Tags.Edit"
|
||||||
|
msgid "Error creating tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. placeholder="@T["Type to search"]"
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField-Tags.Edit.cshtml:53
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField-Tags.Edit"
|
||||||
|
msgid "Type to search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. select-label="@T["Select"]"
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField-Tags.Edit.cshtml:54
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField-Tags.Edit"
|
||||||
|
msgid "Select"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. deselect-label="@T["Remove"]"
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField-Tags.Edit.cshtml:55
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField-Tags.Edit"
|
||||||
|
msgid "Remove"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. tag-placeholder="@T["Press enter to create a tag"]"
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField-Tags.Edit.cshtml:67
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField-Tags.Edit"
|
||||||
|
msgid "Press enter to create a tag"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["No tags found"]
|
||||||
|
#. @T["No tags found"]
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField-Tags.Edit.cshtml:70
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField-Tags.Edit.cshtml:73
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField-Tags.Edit"
|
||||||
|
msgid "No tags found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="Tags" selected="@(currentEditor == "Tags")">@T["Tags"]</option>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField-Tags.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField-Tags.Option"
|
||||||
|
msgid "Tags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentDisplayMode)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField.DisplayOption.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField.DisplayOption"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. @T["The taxonomy could not be found. Please check the settings for this field."]
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField.Edit"
|
||||||
|
msgid "The taxonomy could not be found. Please check the settings for this field."
|
||||||
|
msgstr "التصنيف غير موجود. الرجاء التحقق من الإعدادات لهذا الحقل."
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyField.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyField.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="Hint">@T["Hint"]</label>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldSettings.Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldSettings.Edit"
|
||||||
|
msgid "Hint"
|
||||||
|
msgstr "تلميح"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The hint text to display for this field on the editor."]</span>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldSettings.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldSettings.Edit"
|
||||||
|
msgid "The hint text to display for this field on the editor."
|
||||||
|
msgstr "تلميح نصي يظهر لهذا الحقل في المحرر."
|
||||||
|
|
||||||
|
#. <label asp-for="TaxonomyContentItemId">@T["Taxonomy"]</label>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldSettings.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldSettings.Edit"
|
||||||
|
msgid "Taxonomy"
|
||||||
|
msgstr "تصنيف"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="Required">@T["Required"]</label>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldSettings.Edit.cshtml:36
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldSettings.Edit"
|
||||||
|
msgid "Required"
|
||||||
|
msgstr "مطلوب"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether at least one element is selected."]</span>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldSettings.Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldSettings.Edit"
|
||||||
|
msgid "Whether at least one element is selected."
|
||||||
|
msgstr "ما إذا كان هناك حقل واحد على الأقل تم اختياره."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="Unique">@T["Unique"]</label>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldSettings.Edit.cshtml:44
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldSettings.Edit"
|
||||||
|
msgid "Unique"
|
||||||
|
msgstr "فريد"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether only one element can be selected."]</span>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldSettings.Edit.cshtml:45
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldSettings.Edit"
|
||||||
|
msgid "Whether only one element can be selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="LeavesOnly">@T["Leaves only"]</label>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldSettings.Edit.cshtml:52
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldSettings.Edit"
|
||||||
|
msgid "Leaves only"
|
||||||
|
msgstr "الأطراف فقط"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether leaves are the only items that can be selected."]</span>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldSettings.Edit.cshtml:53
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldSettings.Edit"
|
||||||
|
msgid "Whether leaves are the only items that can be selected."
|
||||||
|
msgstr "- ما إذا كانت الأطراف هي العناصر التي يمكن اختيارها."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="Open">@T["Open"]</label>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldTagsEditorSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldTagsEditorSettings.Edit"
|
||||||
|
msgid "Open"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Whether new tags can be created inline. Note: When creating tags inline only the display text term property will be set."]</span>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyFieldTagsEditorSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyFieldTagsEditorSettings.Edit"
|
||||||
|
msgid "Whether new tags can be created inline. Note: When creating tags inline only the display text term property will be set."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label asp-for="TermContentType">@T["Term Content Type"]</label>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyPart.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyPart.Edit"
|
||||||
|
msgid "Term Content Type"
|
||||||
|
msgstr "مصطلح نوع المحتوى"
|
||||||
|
|
||||||
|
#. @T["Add {0}", termContentType.DisplayName]
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyPart.Edit.cshtml:41
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyPart.Edit"
|
||||||
|
msgid "Add {0}"
|
||||||
|
msgstr "إضافة {0}"
|
||||||
|
|
||||||
|
#. <div id="msg-leave" style="display:none" data>@T["You have reordered the taxonomy."]</div>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TaxonomyPart.Edit.cshtml:57
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TaxonomyPart.Edit"
|
||||||
|
msgid "You have reordered the taxonomy."
|
||||||
|
msgstr "قمت بترتيب القوائم."
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The list is empty"]</p>
|
||||||
|
#: OrchardCore.Taxonomies\Views\Term.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.Term"
|
||||||
|
msgid "The list is empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The list is empty"]</p>
|
||||||
|
#: OrchardCore.Taxonomies\Views\TermPart.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.TermPart"
|
||||||
|
msgid "The list is empty"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["New {0}", typeDisplayName])</h1></zone>
|
||||||
|
#: OrchardCore.Taxonomies\Views\Admin\Create.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.Admin.Create"
|
||||||
|
msgid "New {0}"
|
||||||
|
msgstr "جديد {0}"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit {0}", typeDisplayName])</h1></zone>
|
||||||
|
#: OrchardCore.Taxonomies\Views\Admin\Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Taxonomies.Views.Admin.Edit"
|
||||||
|
msgid "Edit {0}"
|
||||||
|
msgstr "تحرير {0}"
|
||||||
|
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Templates.Cms.Module.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 824\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:39\n"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="Show">@T["Show"]</label>
|
||||||
|
#: OrchardCore.Templates.Cms.Module\Views\MyTestPart.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Templates.Cms.Module.Views.MyTestPart.Edit"
|
||||||
|
msgid "Show"
|
||||||
|
msgstr "عرض"
|
||||||
|
|
||||||
|
#. <label asp-for="MySetting">@T["Setting"]</label>
|
||||||
|
#: OrchardCore.Templates.Cms.Module\Views\MyTestPartSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Templates.Cms.Module.Views.MyTestPartSettings.Edit"
|
||||||
|
msgid "Setting"
|
||||||
|
msgstr "إعدادت"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The setting."]</span>
|
||||||
|
#: OrchardCore.Templates.Cms.Module\Views\MyTestPartSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Templates.Cms.Module.Views.MyTestPartSettings.Edit"
|
||||||
|
msgid "The setting."
|
||||||
|
msgstr "الإعدادات."
|
||||||
|
|
||||||
493
src/Twain.Web/Localization/ar/OrchardCore.Templates.po
Normal file
493
src/Twain.Web/Localization/ar/OrchardCore.Templates.po
Normal file
@@ -0,0 +1,493 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Templates.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 826\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:30\n"
|
||||||
|
|
||||||
|
#. .Add(S["Design"], design => design
|
||||||
|
#: OrchardCore.Templates\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Templates.AdminMenu"
|
||||||
|
msgid "Design"
|
||||||
|
msgstr "تصميم"
|
||||||
|
|
||||||
|
#. .Add(S["Templates"], S["Templates"].PrefixPosition(), import => import
|
||||||
|
#. .Add(S["Templates"], S["Templates"].PrefixPosition(), import => import
|
||||||
|
#: OrchardCore.Templates\AdminMenu.cs:26
|
||||||
|
#: OrchardCore.Templates\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Templates.AdminMenu"
|
||||||
|
msgid "Templates"
|
||||||
|
msgstr "قوالب"
|
||||||
|
|
||||||
|
#. .Add(S["Design"], design => design
|
||||||
|
#: OrchardCore.Templates\AdminTemplatesAdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Templates.AdminTemplatesAdminMenu"
|
||||||
|
msgid "Design"
|
||||||
|
msgstr "تصميم"
|
||||||
|
|
||||||
|
#. .Add(S["Admin Templates"], S["Admin Templates"].PrefixPosition(), import => import
|
||||||
|
#. .Add(S["Admin Templates"], S["Admin Templates"].PrefixPosition(), import => import
|
||||||
|
#: OrchardCore.Templates\AdminTemplatesAdminMenu.cs:26
|
||||||
|
#: OrchardCore.Templates\AdminTemplatesAdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Templates.AdminTemplatesAdminMenu"
|
||||||
|
msgid "Admin Templates"
|
||||||
|
msgstr "قوالب المدير"
|
||||||
|
|
||||||
|
#. new SelectListItem() { Text = S["Delete"], Value = nameof(ContentsBulkAction.Remove) }
|
||||||
|
#: OrchardCore.Templates\Controllers\TemplateController.cs:104
|
||||||
|
msgctxt "OrchardCore.Templates.Controllers.TemplateController"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(TemplateViewModel.Name), S["The name is mandatory."]);
|
||||||
|
#. ModelState.AddModelError(nameof(TemplateViewModel.Name), S["The name is mandatory."]);
|
||||||
|
#: OrchardCore.Templates\Controllers\TemplateController.cs:154
|
||||||
|
#: OrchardCore.Templates\Controllers\TemplateController.cs:257
|
||||||
|
msgctxt "OrchardCore.Templates.Controllers.TemplateController"
|
||||||
|
msgid "The name is mandatory."
|
||||||
|
msgstr "الإسم إلزامي."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(TemplateViewModel.Content), S["The content is mandatory."]);
|
||||||
|
#. ModelState.AddModelError(nameof(TemplateViewModel.Content), S["The content is mandatory."]);
|
||||||
|
#: OrchardCore.Templates\Controllers\TemplateController.cs:158
|
||||||
|
#: OrchardCore.Templates\Controllers\TemplateController.cs:265
|
||||||
|
msgctxt "OrchardCore.Templates.Controllers.TemplateController"
|
||||||
|
msgid "The content is mandatory."
|
||||||
|
msgstr "المحتوى إلزامي."
|
||||||
|
|
||||||
|
#. ModelState.AddModelError(nameof(TemplateViewModel.Name), S["A template with the same name already exists."]);
|
||||||
|
#. ModelState.AddModelError(nameof(TemplateViewModel.Name), S["A template with the same name already exists."]);
|
||||||
|
#: OrchardCore.Templates\Controllers\TemplateController.cs:169
|
||||||
|
#: OrchardCore.Templates\Controllers\TemplateController.cs:261
|
||||||
|
msgctxt "OrchardCore.Templates.Controllers.TemplateController"
|
||||||
|
msgid "A template with the same name already exists."
|
||||||
|
msgstr "القالب بنفس الإسم موجود مسبقاً."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["The \"{0}\" template has been created.", model.Name]);
|
||||||
|
#: OrchardCore.Templates\Controllers\TemplateController.cs:183
|
||||||
|
msgctxt "OrchardCore.Templates.Controllers.TemplateController"
|
||||||
|
msgid "The \"{0}\" template has been created."
|
||||||
|
msgstr "تم إنشاء القالب \"{0}\"."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Template deleted successfully."]);
|
||||||
|
#: OrchardCore.Templates\Controllers\TemplateController.cs:325
|
||||||
|
msgctxt "OrchardCore.Templates.Controllers.TemplateController"
|
||||||
|
msgid "Template deleted successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["Templates successfully removed."]);
|
||||||
|
#: OrchardCore.Templates\Controllers\TemplateController.cs:357
|
||||||
|
msgctxt "OrchardCore.Templates.Controllers.TemplateController"
|
||||||
|
msgid "Templates successfully removed."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. Description = S["Template for a {0} part in detail views", contentPartDefinition.DisplayName()]
|
||||||
|
#: OrchardCore.Templates\Settings\TemplateContentPartDefinitionDriver.cs:27
|
||||||
|
msgctxt "OrchardCore.Templates.Settings.TemplateContentPartDefinitionDriver"
|
||||||
|
msgid "Template for a {0} part in detail views"
|
||||||
|
msgstr "القالب للجزء {0} في عرض التفاصيل"
|
||||||
|
|
||||||
|
#. Description = S["Template for a {0} part in summary views", contentPartDefinition.DisplayName()]
|
||||||
|
#: OrchardCore.Templates\Settings\TemplateContentPartDefinitionDriver.cs:34
|
||||||
|
msgctxt "OrchardCore.Templates.Settings.TemplateContentPartDefinitionDriver"
|
||||||
|
msgid "Template for a {0} part in summary views"
|
||||||
|
msgstr "القالب للجزء {0} في الواجهات الموجزة"
|
||||||
|
|
||||||
|
#. Description = S["Template for a {0} content item in detail views", contentTypeDefinition.DisplayName]
|
||||||
|
#: OrchardCore.Templates\Settings\TemplateContentTypeDefinitionDriver.cs:31
|
||||||
|
msgctxt "OrchardCore.Templates.Settings.TemplateContentTypeDefinitionDriver"
|
||||||
|
msgid "Template for a {0} content item in detail views"
|
||||||
|
msgstr "القالب لعنصر المحتوى {0} في واجهات التفصيل"
|
||||||
|
|
||||||
|
#. Description = S["Template for a {0} content item in summary views", contentTypeDefinition.DisplayName]
|
||||||
|
#: OrchardCore.Templates\Settings\TemplateContentTypeDefinitionDriver.cs:38
|
||||||
|
msgctxt "OrchardCore.Templates.Settings.TemplateContentTypeDefinitionDriver"
|
||||||
|
msgid "Template for a {0} content item in summary views"
|
||||||
|
msgstr "القالب لعنصر المحتوى {0} في الواجهات الموجزة"
|
||||||
|
|
||||||
|
#. Description = S["Template for the {0} part in a {1} type in detail views", partName, contentTypePartDefinition.ContentTypeDefinition.DisplayName]
|
||||||
|
#: OrchardCore.Templates\Settings\TemplateContentTypePartDefinitionDriver.cs:29
|
||||||
|
msgctxt "OrchardCore.Templates.Settings.TemplateContentTypePartDefinitionDriver"
|
||||||
|
msgid "Template for the {0} part in a {1} type in detail views"
|
||||||
|
msgstr "قالب للجزء {0} في النوع {1} في واجهات التفصيل"
|
||||||
|
|
||||||
|
#. Description = S["Template for the {0} part in a {1} type in summary views", partName, contentTypePartDefinition.ContentTypeDefinition.DisplayName]
|
||||||
|
#: OrchardCore.Templates\Settings\TemplateContentTypePartDefinitionDriver.cs:36
|
||||||
|
msgctxt "OrchardCore.Templates.Settings.TemplateContentTypePartDefinitionDriver"
|
||||||
|
msgid "Template for the {0} part in a {1} type in summary views"
|
||||||
|
msgstr "قالب للجزء {0} في النوع {1} في الواجهات الموجزة"
|
||||||
|
|
||||||
|
#. @T["Edit templates"]
|
||||||
|
#: OrchardCore.Templates\Views\TemplateSettings.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Templates.Views.TemplateSettings"
|
||||||
|
msgid "Edit templates"
|
||||||
|
msgstr "تحرير القوالب"
|
||||||
|
|
||||||
|
#. <h5>@T["All Admin Templates"]</h5>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllAdminTemplatesDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllAdminTemplatesDeploymentStep.Fields.Edit"
|
||||||
|
msgid "All Admin Templates"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="ExportAsFiles">@T["Export templates as files"]</label>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllAdminTemplatesDeploymentStep.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllAdminTemplatesDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Export templates as files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check if the templates should be exported as files instead of inline."]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllAdminTemplatesDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllAdminTemplatesDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Check if the templates should be exported as files instead of inline."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["All Admin Templates"]</h5>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllAdminTemplatesDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllAdminTemplatesDeploymentStep.Summary"
|
||||||
|
msgid "All Admin Templates"
|
||||||
|
msgstr "جميع قوالب المدير"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds all admin templates to the plan."]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllAdminTemplatesDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllAdminTemplatesDeploymentStep.Summary"
|
||||||
|
msgid "Adds all admin templates to the plan."
|
||||||
|
msgstr "اضف كل قوالب المدير للخطة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["All Admin Templates"]</h4>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllAdminTemplatesDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllAdminTemplatesDeploymentStep.Thumbnail"
|
||||||
|
msgid "All Admin Templates"
|
||||||
|
msgstr "جميع قوالب المدير"
|
||||||
|
|
||||||
|
#. <p>@T["Exports admin templates."]</p>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllAdminTemplatesDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllAdminTemplatesDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports admin templates."
|
||||||
|
msgstr "تصدير قوالب المدير."
|
||||||
|
|
||||||
|
#. <h5>@T["All Templates"]</h5>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllTemplatesDeploymentStep.Fields.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllTemplatesDeploymentStep.Fields.Edit"
|
||||||
|
msgid "All Templates"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label class="form-checkl-label" asp-for="ExportAsFiles">@T["Export templates as files"]</label>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllTemplatesDeploymentStep.Fields.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllTemplatesDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Export templates as files"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check if the templates should be exported as files instead of inline."]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllTemplatesDeploymentStep.Fields.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllTemplatesDeploymentStep.Fields.Edit"
|
||||||
|
msgid "Check if the templates should be exported as files instead of inline."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h5>@T["All Templates"]</h5>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllTemplatesDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllTemplatesDeploymentStep.Summary"
|
||||||
|
msgid "All Templates"
|
||||||
|
msgstr "كل القوالب"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds all templates to the plan."]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllTemplatesDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllTemplatesDeploymentStep.Summary"
|
||||||
|
msgid "Adds all templates to the plan."
|
||||||
|
msgstr "اضف كل القوالب للخطة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["All Templates"]</h4>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllTemplatesDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllTemplatesDeploymentStep.Thumbnail"
|
||||||
|
msgid "All Templates"
|
||||||
|
msgstr "كل القوالب"
|
||||||
|
|
||||||
|
#. <p>@T["Exports templates."]</p>
|
||||||
|
#: OrchardCore.Templates\Views\Items\AllTemplatesDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Items.AllTemplatesDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports templates."
|
||||||
|
msgstr "تصدير القوالب."
|
||||||
|
|
||||||
|
#: OrchardCore.Templates\Views\Preview\Index.cshtml:0
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Preview.Index"
|
||||||
|
msgid "Template Preview"
|
||||||
|
msgstr "معاينة القالب"
|
||||||
|
|
||||||
|
#. <span>@T["Preview Disconnected"] </span>
|
||||||
|
#: OrchardCore.Templates\Views\Preview\Index.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Preview.Index"
|
||||||
|
msgid "Preview Disconnected"
|
||||||
|
msgstr "المعاينة مقطوعة"
|
||||||
|
|
||||||
|
#. <p>@T["Preview Error"] </p>
|
||||||
|
#: OrchardCore.Templates\Views\Preview\Index.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Preview.Index"
|
||||||
|
msgid "Preview Error"
|
||||||
|
msgstr "خطأ المعاينة"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Create Template"])</h1></zone>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "Create Template"
|
||||||
|
msgstr "إنشاء قالب"
|
||||||
|
|
||||||
|
#. <button type="submit" name="submit" class="btn btn-sm btn-primary save">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <span class="visually-hidden">@T["Toggle Dropdown"]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "Toggle Dropdown"
|
||||||
|
msgstr "قائمة التبديل"
|
||||||
|
|
||||||
|
#. <button class="dropdown-item save-continue" name="submit" type="submit" value="SaveAndContinue">@T["and continue"]</button>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "and continue"
|
||||||
|
msgstr "و متابعة"
|
||||||
|
|
||||||
|
#. <a class="btn btn-sm btn-secondary cancel" role="button" href="@returnUrl">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:27
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <a class="btn btn-sm btn-info" role="button" href="@Url.Action("Index", "Preview", new { area = "OrchardCore.Templates" })" target="_blank">@T["Preview"]</a>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "Preview"
|
||||||
|
msgstr "معاينة"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:40
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The name of the template."]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "The name of the template."
|
||||||
|
msgstr "إسم القالب."
|
||||||
|
|
||||||
|
#. <label asp-for="Description">@T["Description"]</label>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "الوصف"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The description of the template."]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:49
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "The description of the template."
|
||||||
|
msgstr "وصف القالب."
|
||||||
|
|
||||||
|
#. <label asp-for="Content">@T["Content"]</label>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:53
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "Content"
|
||||||
|
msgstr "المحتوى"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Liquid template."]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Create.cshtml:56
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Create"
|
||||||
|
msgid "The Liquid template."
|
||||||
|
msgstr "قالب Liquid."
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Admin Template"])</h1></zone>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:11
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "Edit Admin Template"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Edit Template"])</h1></zone>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:15
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "Edit Template"
|
||||||
|
msgstr "تحرير قالب"
|
||||||
|
|
||||||
|
#. <button type="submit" name="submit" class="btn btn-sm btn-primary save">@T["Save"]</button>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "Save"
|
||||||
|
msgstr "حفظ"
|
||||||
|
|
||||||
|
#. <span class="visually-hidden">@T["Toggle Dropdown"]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "Toggle Dropdown"
|
||||||
|
msgstr "قائمة التبديل"
|
||||||
|
|
||||||
|
#. <button class="dropdown-item save-continue" name="submit" type="submit" value="SaveAndContinue">@T["and continue"]</button>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "and continue"
|
||||||
|
msgstr "و متابعة"
|
||||||
|
|
||||||
|
#. <a class="btn btn-sm btn-secondary cancel" role="button" href="@returnUrl">@T["Cancel"]</a>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <a class="btn btn-sm btn-info" role="button" href="@Url.Action("Index", "Preview", new { area = "OrchardCore.Templates" })" target="_blank">@T["Preview"]</a>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:39
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "Preview"
|
||||||
|
msgstr "معاينة"
|
||||||
|
|
||||||
|
#. <label asp-for="Name">@T["Name"]</label>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:48
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "Name"
|
||||||
|
msgstr "الإسم"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The name of the template."]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "The name of the template."
|
||||||
|
msgstr "إسم القالب."
|
||||||
|
|
||||||
|
#. <label asp-for="Description">@T["Description"]</label>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:55
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "Description"
|
||||||
|
msgstr "الوصف"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The description of the template."]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:57
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "The description of the template."
|
||||||
|
msgstr "وصف القالب."
|
||||||
|
|
||||||
|
#. <label asp-for="Content">@T["Content"]</label>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:61
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "Content"
|
||||||
|
msgstr "المحتوى"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Liquid template."]</span>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Edit.cshtml:65
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Edit"
|
||||||
|
msgid "The Liquid template."
|
||||||
|
msgstr "قالب Liquid."
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Admin Templates"])</h1></zone>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:10
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Admin Templates"
|
||||||
|
msgstr "قوالب المدير"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Templates"])</h1></zone>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Templates"
|
||||||
|
msgstr "القوالب"
|
||||||
|
|
||||||
|
#. <input asp-for="Options.Search" class="form-control" placeholder="@T["Search"]" type="search" autofocus />
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-route-action="Create" asp-route-admintemplates="@Model.Options.AdminTemplates" asp-route-returnUrl="@FullRequestPath" class="btn btn-secondary create" role="button">@T["Add Template"]</a>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Add Template"
|
||||||
|
msgstr "إضافة قالب"
|
||||||
|
|
||||||
|
#. <label class="form-check-label" for="select-all" id="select-all-label" title="@T["Select All"]"></label>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:47
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Select All"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Templates.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:48
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "1 item"
|
||||||
|
msgid_plural "{0} items"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] ""
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] "{0} عناصر"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Templates.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:48
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Items {0} to {1}"
|
||||||
|
msgstr "العناصر {0} إلى {1}"
|
||||||
|
|
||||||
|
#. <label id="items" for="select-all">@T.Plural(Model.Templates.Count, "1 item", "{0} items")<span class="text-muted" title="@T["Items {0} to {1}", startIndex, endIndex]">@T.Plural((int)Model.Pager.TotalItemCount, " / {0} item in total", " / {0} items in total")</span></label>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:48
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid " / {0} item in total"
|
||||||
|
msgid_plural " / {0} items in total"
|
||||||
|
msgstr[0] ""
|
||||||
|
msgstr[1] ""
|
||||||
|
msgstr[2] ""
|
||||||
|
msgstr[3] " / {0} عناصر من الكل"
|
||||||
|
msgstr[4] ""
|
||||||
|
msgstr[5] ""
|
||||||
|
|
||||||
|
#. @T["Actions"]
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:55
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:60
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Bulk Action"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <li><a class="dropdown-item" href="javascript:void(0)" data-action="@item.Value" data-title="@T["Bulk Action"]" data-message="@T["Are you sure you want to {0} these items?", @item.Text.ToLower()]">@item.Text</a></li>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:60
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Are you sure you want to {0} these items?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <a asp-action="Edit" asp-route-name="@entry.Name" asp-route-admintemplates="@Model.Options.AdminTemplates" asp-route-returnUrl="@FullRequestPath" class="btn btn-primary btn-sm">@T["Edit"]</a>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:76
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "تحرير"
|
||||||
|
|
||||||
|
#. <a asp-action="Delete" asp-route-name="@entry.Name" asp-route-admintemplates="@Model.Options.AdminTemplates" asp-route-returnUrl="@FullRequestPath" class="btn btn-danger btn-sm" data-url-af="RemoveUrl UnsafeUrl">@T["Delete"]</a>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:77
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. @T["<strong>Nothing here!</strong> There are no templates for the moment."]
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:92
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "<strong>Nothing here!</strong> There are no templates for the moment."
|
||||||
|
msgstr "<strong>لا شي هنا!</strong> لاتوجد قوالب في الوقت الحالي."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Templates" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:93
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. selectedItems.text($(":checkbox[name='itemIds']:checked").length + ' @T["selected"]');
|
||||||
|
#. selectedItems.text(selectedItemsCount + ' @T["selected"]');
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:144
|
||||||
|
#: OrchardCore.Templates\Views\Template\Index.cshtml:155
|
||||||
|
msgctxt "OrchardCore.Templates.Views.Template.Index"
|
||||||
|
msgid "selected"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
1410
src/Twain.Web/Localization/ar/OrchardCore.Tenants.po
Normal file
1410
src/Twain.Web/Localization/ar/OrchardCore.Tenants.po
Normal file
File diff suppressed because it is too large
Load Diff
206
src/Twain.Web/Localization/ar/OrchardCore.Themes.po
Normal file
206
src/Twain.Web/Localization/ar/OrchardCore.Themes.po
Normal file
@@ -0,0 +1,206 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Themes.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 830\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:39\n"
|
||||||
|
|
||||||
|
#. .Add(S["Design"], NavigationConstants.AdminMenuDesignPosition, design => design
|
||||||
|
#: OrchardCore.Themes\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Themes.AdminMenu"
|
||||||
|
msgid "Design"
|
||||||
|
msgstr "تصميم"
|
||||||
|
|
||||||
|
#. .Add(S["Themes"], S["Themes"].PrefixPosition(), installed => installed
|
||||||
|
#. .Add(S["Themes"], S["Themes"].PrefixPosition(), installed => installed
|
||||||
|
#: OrchardCore.Themes\AdminMenu.cs:27
|
||||||
|
#: OrchardCore.Themes\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Themes.AdminMenu"
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "السمات"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["{0} was enabled", feature.Name ?? feature.Id]);
|
||||||
|
#: OrchardCore.Themes\Controllers\AdminController.cs:146
|
||||||
|
msgctxt "OrchardCore.Themes.Controllers.AdminController"
|
||||||
|
msgid "{0} was enabled"
|
||||||
|
msgstr "{0} مفعل"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["{0} was set as the default {1} theme", feature.Name ?? feature.Id, isAdmin ? "Admin" : "Site"]);
|
||||||
|
#: OrchardCore.Themes\Controllers\AdminController.cs:149
|
||||||
|
msgctxt "OrchardCore.Themes.Controllers.AdminController"
|
||||||
|
msgid "{0} was set as the default {1} theme"
|
||||||
|
msgstr "{0} تم تعيينة كسمة إفتراضية لـ {1}"
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["The Site theme was reset."]);
|
||||||
|
#: OrchardCore.Themes\Controllers\AdminController.cs:166
|
||||||
|
msgctxt "OrchardCore.Themes.Controllers.AdminController"
|
||||||
|
msgid "The Site theme was reset."
|
||||||
|
msgstr "تم إعادة تعيين سمة الموقع."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["The Admin theme was reset."]);
|
||||||
|
#: OrchardCore.Themes\Controllers\AdminController.cs:181
|
||||||
|
msgctxt "OrchardCore.Themes.Controllers.AdminController"
|
||||||
|
msgid "The Admin theme was reset."
|
||||||
|
msgstr "تم إعادة تعيين سمة لوحة التحكم."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["{0} was disabled.", feature.Name ?? feature.Id]);
|
||||||
|
#: OrchardCore.Themes\Controllers\AdminController.cs:204
|
||||||
|
msgctxt "OrchardCore.Themes.Controllers.AdminController"
|
||||||
|
msgid "{0} was disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["{0} was enabled.", feature.Name ?? feature.Id]);
|
||||||
|
#: OrchardCore.Themes\Controllers\AdminController.cs:227
|
||||||
|
msgctxt "OrchardCore.Themes.Controllers.AdminController"
|
||||||
|
msgid "{0} was enabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. throw new InvalidOperationException(H["The theme \"{0}\" is already in the stack of themes that need features disabled.", themeName].ToString());
|
||||||
|
#: OrchardCore.Themes\Services\ThemeService.cs:42
|
||||||
|
msgctxt "OrchardCore.Themes.Services.ThemeService"
|
||||||
|
msgid "The theme \"{0}\" is already in the stack of themes that need features disabled."
|
||||||
|
msgstr "السمة \"{0}\" موجودة مسبقاً على مجموعة السمات اللاتي تحتاج إلى تعطيل الميزات."
|
||||||
|
|
||||||
|
#. throw new InvalidOperationException(H["The theme \"{0}\" is already in the stack of themes that need features enabled.", themeName].ToString());
|
||||||
|
#: OrchardCore.Themes\Services\ThemeService.cs:73
|
||||||
|
msgctxt "OrchardCore.Themes.Services.ThemeService"
|
||||||
|
msgid "The theme \"{0}\" is already in the stack of themes that need features enabled."
|
||||||
|
msgstr "السمة \"{0}\" موجودة مسبقاً على مجموعة السمات اللاتي تحتاج إلى تمكين الميزات."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["{0} was enabled.", enabledFeature.Name]);
|
||||||
|
#: OrchardCore.Themes\Services\ThemeService.cs:114
|
||||||
|
msgctxt "OrchardCore.Themes.Services.ThemeService"
|
||||||
|
msgid "{0} was enabled."
|
||||||
|
msgstr "{0} مفعل."
|
||||||
|
|
||||||
|
#. await _notifier.SuccessAsync(H["{0} was disabled.", feature.Name]);
|
||||||
|
#: OrchardCore.Themes\Services\ThemeService.cs:141
|
||||||
|
msgctxt "OrchardCore.Themes.Services.ThemeService"
|
||||||
|
msgid "{0} was disabled."
|
||||||
|
msgstr "{0} معطل."
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fas fa-desktop" aria-hidden="true"></i></span><span class="title">@T["Design"]</span>
|
||||||
|
#: OrchardCore.Themes\Views\NavigationItemText-themes.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Themes.Views.NavigationItemText-themes.Id"
|
||||||
|
msgid "Design"
|
||||||
|
msgstr "تصميم"
|
||||||
|
|
||||||
|
#. <zone Name="Title"><h1>@RenderTitleSegments(T["Themes"])</h1></zone>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "السمات"
|
||||||
|
|
||||||
|
#. <p>@T["There are no themes installed."]</p>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "There are no themes installed."
|
||||||
|
msgstr "لا توجد سمات متاحة للتنصيب."
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-sm btn-primary">@T["Make Current"]</button>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:44
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "Make Current"
|
||||||
|
msgstr "جعله الحالي"
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-sm btn-secondary">@T["Disable"]</button>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:51
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "Disable"
|
||||||
|
msgstr "تعطيل"
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-sm btn-secondary">@T["Enable"]</button>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:57
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "Enable"
|
||||||
|
msgstr "تمكين"
|
||||||
|
|
||||||
|
#. <span class="text-muted">@T["This is the current Admin theme"]</span>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:67
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "This is the current Admin theme"
|
||||||
|
msgstr "هذه هي السمة الحالية للمدير"
|
||||||
|
|
||||||
|
#. <span class="text-muted">@T["This is the current Site theme"]</span>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:71
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "This is the current Site theme"
|
||||||
|
msgstr "هذه هي السمة الحالية للموقع"
|
||||||
|
|
||||||
|
#. <h4>@T["Reset current themes"]</h4>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:81
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "Reset current themes"
|
||||||
|
msgstr "إعادة ضبط السمات"
|
||||||
|
|
||||||
|
#. <p>@T["The following actions reset the themes. It is used for sites that can't use theming."]</p>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:82
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "The following actions reset the themes. It is used for sites that can't use theming."
|
||||||
|
msgstr "الإجراءات التالية تعيد ضبط السمات. يتم إستخدامها للمواقع التي لا تستخم السمات."
|
||||||
|
|
||||||
|
#. <a asp-action="ResetSiteTheme" data-url-af="UnsafeUrl RemoveUrl" data-title="@T["Reset Site Theme"]" data-message="@T["Are you sure you want to reset the Site theme?"]" class="btn btn-danger">@T["Reset Site Theme"]</a>
|
||||||
|
#. <a asp-action="ResetSiteTheme" data-url-af="UnsafeUrl RemoveUrl" data-title="@T["Reset Site Theme"]" data-message="@T["Are you sure you want to reset the Site theme?"]" class="btn btn-danger">@T["Reset Site Theme"]</a>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:83
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:83
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "Reset Site Theme"
|
||||||
|
msgstr "إعادة تعيين سمة الموقع"
|
||||||
|
|
||||||
|
#. <a asp-action="ResetSiteTheme" data-url-af="UnsafeUrl RemoveUrl" data-title="@T["Reset Site Theme"]" data-message="@T["Are you sure you want to reset the Site theme?"]" class="btn btn-danger">@T["Reset Site Theme"]</a>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:83
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to reset the Site theme?"
|
||||||
|
msgstr "هل أنت متأكد من أنك تريد إعادة ضبط سمة الموقع؟"
|
||||||
|
|
||||||
|
#. <a asp-action="ResetAdminTheme" data-url-af="UnsafeUrl RemoveUrl" data-title="@T["Reset Admin Theme"]" data-message="@T["Are you sure you want to reset the Admin theme?"]" class="btn btn-danger">@T["Reset Admin Theme"]</a>
|
||||||
|
#. <a asp-action="ResetAdminTheme" data-url-af="UnsafeUrl RemoveUrl" data-title="@T["Reset Admin Theme"]" data-message="@T["Are you sure you want to reset the Admin theme?"]" class="btn btn-danger">@T["Reset Admin Theme"]</a>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:84
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:84
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "Reset Admin Theme"
|
||||||
|
msgstr "إعادة تعيين سمة لوحة التحكم"
|
||||||
|
|
||||||
|
#. <a asp-action="ResetAdminTheme" data-url-af="UnsafeUrl RemoveUrl" data-title="@T["Reset Admin Theme"]" data-message="@T["Are you sure you want to reset the Admin theme?"]" class="btn btn-danger">@T["Reset Admin Theme"]</a>
|
||||||
|
#: OrchardCore.Themes\Views\Admin\Index.cshtml:84
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Admin.Index"
|
||||||
|
msgid "Are you sure you want to reset the Admin theme?"
|
||||||
|
msgstr "هل أنت متأكد من أنك تريد إعادة ضبط سمة لوحة التحكم؟"
|
||||||
|
|
||||||
|
#. <h5>@T["Themes"]</h5>
|
||||||
|
#: OrchardCore.Themes\Views\Items\ThemesDeploymentStep.Edit.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Items.ThemesDeploymentStep.Edit"
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "السمات"
|
||||||
|
|
||||||
|
#. <h5>@T["Themes"]</h5>
|
||||||
|
#: OrchardCore.Themes\Views\Items\ThemesDeploymentStep.Summary.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Items.ThemesDeploymentStep.Summary"
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "السمات"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Adds the currently selected site theme and admin theme to the plan."]</span>
|
||||||
|
#: OrchardCore.Themes\Views\Items\ThemesDeploymentStep.Summary.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Items.ThemesDeploymentStep.Summary"
|
||||||
|
msgid "Adds the currently selected site theme and admin theme to the plan."
|
||||||
|
msgstr "اضف السمات المحددة حالياً للخطة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title">@T["Themes"]</h4>
|
||||||
|
#: OrchardCore.Themes\Views\Items\ThemesDeploymentStep.Thumbnail.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Items.ThemesDeploymentStep.Thumbnail"
|
||||||
|
msgid "Themes"
|
||||||
|
msgstr "السمات"
|
||||||
|
|
||||||
|
#. <p>@T["Exports the currently selected site theme and admin theme."]</p>
|
||||||
|
#: OrchardCore.Themes\Views\Items\ThemesDeploymentStep.Thumbnail.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Themes.Views.Items.ThemesDeploymentStep.Thumbnail"
|
||||||
|
msgid "Exports the currently selected site theme and admin theme."
|
||||||
|
msgstr "صدر السمات المحدة حالياً."
|
||||||
|
|
||||||
110
src/Twain.Web/Localization/ar/OrchardCore.Title.po
Normal file
110
src/Twain.Web/Localization/ar/OrchardCore.Title.po
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Title.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 832\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:39\n"
|
||||||
|
|
||||||
|
#. updater.ModelState.AddModelError(Prefix, nameof(model.Title), S["A value is required for Title."]);
|
||||||
|
#: OrchardCore.Title\Drivers\TitlePartDisplayDriver.cs:60
|
||||||
|
msgctxt "OrchardCore.Title.Drivers.TitlePartDisplayDriver"
|
||||||
|
msgid "A value is required for Title."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. context.Updater.ModelState.AddModelError(nameof(model.Pattern), S["Pattern doesn't contain a valid Liquid expression. Details: {0}", string.Join(" ", errors)]);
|
||||||
|
#: OrchardCore.Title\Settings\TitlePartSettingsDisplayDriver.cs:48
|
||||||
|
msgctxt "OrchardCore.Title.Settings.TitlePartSettingsDisplayDriver"
|
||||||
|
msgid "Pattern doesn't contain a valid Liquid expression. Details: {0}"
|
||||||
|
msgstr "النمط لا يحتوي على عبارة Liquid صحيحة. للتفاصيل: {0}"
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentDisplayMode)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Title\Views\TitlePart.DisplayOption.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePart.DisplayOption"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <label asp-for="Title">@T["Title"]</label>
|
||||||
|
#: OrchardCore.Title\Views\TitlePart.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePart.Edit"
|
||||||
|
msgid "Title"
|
||||||
|
msgstr "العنوان"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Leave empty to auto-generate the title using the pattern."]</span>
|
||||||
|
#: OrchardCore.Title\Views\TitlePart.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePart.Edit"
|
||||||
|
msgid "Leave empty to auto-generate the title using the pattern."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The title will be auto-generated using the pattern."]</span>
|
||||||
|
#: OrchardCore.Title\Views\TitlePart.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePart.Edit"
|
||||||
|
msgid "The title will be auto-generated using the pattern."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Title\Views\TitlePart.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePart.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <label asp-for="Options">@T["Options"]</label>
|
||||||
|
#: OrchardCore.Title\Views\TitlePartSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePartSettings.Edit"
|
||||||
|
msgid "Options"
|
||||||
|
msgstr "خيارات"
|
||||||
|
|
||||||
|
#. <option value="@TitlePartOptions.Editable" selected="@(Model.Options == TitlePartOptions.Editable)">@T["Title is editable"]</option>
|
||||||
|
#: OrchardCore.Title\Views\TitlePartSettings.Edit.cshtml:18
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePartSettings.Edit"
|
||||||
|
msgid "Title is editable"
|
||||||
|
msgstr "العنوان قابل للتعديل"
|
||||||
|
|
||||||
|
#. <option value="@TitlePartOptions.EditableRequired" selected="@(Model.Options == TitlePartOptions.EditableRequired)">@T["Title is editable and required"]</option>
|
||||||
|
#: OrchardCore.Title\Views\TitlePartSettings.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePartSettings.Edit"
|
||||||
|
msgid "Title is editable and required"
|
||||||
|
msgstr "العنوان قابل للتحرير ومطلوب"
|
||||||
|
|
||||||
|
#. <option value="@TitlePartOptions.GeneratedDisabled" selected="@(Model.Options == TitlePartOptions.GeneratedDisabled)">@T["Title is generated and input is disabled"]</option>
|
||||||
|
#: OrchardCore.Title\Views\TitlePartSettings.Edit.cshtml:20
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePartSettings.Edit"
|
||||||
|
msgid "Title is generated and input is disabled"
|
||||||
|
msgstr "العنوان تم توليده والمدخل معطل"
|
||||||
|
|
||||||
|
#. <option value="@TitlePartOptions.GeneratedHidden" selected="@(Model.Options == TitlePartOptions.GeneratedHidden)">@T["Title is generated and input is hidden"]</option>
|
||||||
|
#: OrchardCore.Title\Views\TitlePartSettings.Edit.cshtml:21
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePartSettings.Edit"
|
||||||
|
msgid "Title is generated and input is hidden"
|
||||||
|
msgstr "العنوان تم توليده والمدخل مخفي"
|
||||||
|
|
||||||
|
#. <label asp-for="RenderTitle" class="form-check-label">@T["Render Title"]</label>
|
||||||
|
#: OrchardCore.Title\Views\TitlePartSettings.Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePartSettings.Edit"
|
||||||
|
msgid "Render Title"
|
||||||
|
msgstr "عرض العنوان"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Check to render the title in display views."]</span>
|
||||||
|
#: OrchardCore.Title\Views\TitlePartSettings.Edit.cshtml:29
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePartSettings.Edit"
|
||||||
|
msgid "Check to render the title in display views."
|
||||||
|
msgstr "تحقق من عرض العنوان في واجهات العرض."
|
||||||
|
|
||||||
|
#. <label asp-for="Pattern">@T["Pattern"]</label>
|
||||||
|
#: OrchardCore.Title\Views\TitlePartSettings.Edit.cshtml:35
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePartSettings.Edit"
|
||||||
|
msgid "Pattern"
|
||||||
|
msgstr "نمط"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The pattern used to render the title of this content type. With Liquid support."]</span>
|
||||||
|
#: OrchardCore.Title\Views\TitlePartSettings.Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Title.Views.TitlePartSettings.Edit"
|
||||||
|
msgid "The pattern used to render the title of this content type. With Liquid support."
|
||||||
|
msgstr "النمط المستخدم لعرض عنوان نوع المحتوى. يدعم الـ Liquid."
|
||||||
|
|
||||||
282
src/Twain.Web/Localization/ar/OrchardCore.Twitter.po
Normal file
282
src/Twain.Web/Localization/ar/OrchardCore.Twitter.po
Normal file
@@ -0,0 +1,282 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Twitter.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 834\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:39\n"
|
||||||
|
|
||||||
|
#. builder.Add(S["Security"], security => security
|
||||||
|
#: OrchardCore.Twitter\AdminMenu.cs:23
|
||||||
|
msgctxt "OrchardCore.Twitter.AdminMenuSignin"
|
||||||
|
msgid "Security"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Authentication"], authentication => authentication
|
||||||
|
#: OrchardCore.Twitter\AdminMenu.cs:24
|
||||||
|
msgctxt "OrchardCore.Twitter.AdminMenuSignin"
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Sign in with Twitter"], S["Sign in with Twitter"].PrefixPosition(), settings => settings
|
||||||
|
#. .Add(S["Sign in with Twitter"], S["Sign in with Twitter"].PrefixPosition(), settings => settings
|
||||||
|
#: OrchardCore.Twitter\AdminMenu.cs:25
|
||||||
|
#: OrchardCore.Twitter\AdminMenu.cs:25
|
||||||
|
msgctxt "OrchardCore.Twitter.AdminMenuSignin"
|
||||||
|
msgid "Sign in with Twitter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. builder.Add(S["Configuration"], configuration => configuration
|
||||||
|
#: OrchardCore.Twitter\AdminMenu.cs:50
|
||||||
|
msgctxt "OrchardCore.Twitter.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Twitter\AdminMenu.cs:51
|
||||||
|
msgctxt "OrchardCore.Twitter.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. .Add(S["Twitter"], S["Twitter"].PrefixPosition(), settings => settings
|
||||||
|
#. .Add(S["Twitter"], S["Twitter"].PrefixPosition(), settings => settings
|
||||||
|
#: OrchardCore.Twitter\AdminMenu.cs:52
|
||||||
|
#: OrchardCore.Twitter\AdminMenu.cs:52
|
||||||
|
msgctxt "OrchardCore.Twitter.AdminMenu"
|
||||||
|
msgid "Twitter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["ConsumerKey is required"], new string[] { nameof(settings.ConsumerKey) });
|
||||||
|
#: OrchardCore.Twitter\Services\TwitterSettingsService.cs:65
|
||||||
|
msgctxt "OrchardCore.Twitter.Services.TwitterSettingsService"
|
||||||
|
msgid "ConsumerKey is required"
|
||||||
|
msgstr "مفتاح المستهلك مطلوب"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["ConsumerSecret is required"], new string[] { nameof(settings.ConsumerSecret) });
|
||||||
|
#: OrchardCore.Twitter\Services\TwitterSettingsService.cs:70
|
||||||
|
msgctxt "OrchardCore.Twitter.Services.TwitterSettingsService"
|
||||||
|
msgid "ConsumerSecret is required"
|
||||||
|
msgstr "شفرة أمان المستهلك مطلوبة"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["Access Token is required"], new string[] { nameof(settings.AccessToken) });
|
||||||
|
#: OrchardCore.Twitter\Services\TwitterSettingsService.cs:75
|
||||||
|
msgctxt "OrchardCore.Twitter.Services.TwitterSettingsService"
|
||||||
|
msgid "Access Token is required"
|
||||||
|
msgstr "رمز الوصول مطلوب"
|
||||||
|
|
||||||
|
#. yield return new ValidationResult(S["Access Token Secret is required"], new string[] { nameof(settings.AccessTokenSecret) });
|
||||||
|
#: OrchardCore.Twitter\Services\TwitterSettingsService.cs:80
|
||||||
|
msgctxt "OrchardCore.Twitter.Services.TwitterSettingsService"
|
||||||
|
msgid "Access Token Secret is required"
|
||||||
|
msgstr "شفرة رمز الوصول مطلوبة"
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "API key is required")]
|
||||||
|
#: OrchardCore.Twitter\ViewModels\TwitterSettingsViewModel.cs:7
|
||||||
|
msgctxt "OrchardCore.Twitter.ViewModels.TwitterSettingsViewModel"
|
||||||
|
msgid "API key is required"
|
||||||
|
msgstr "مفتاح API مطلوب"
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "API secret key is required")]
|
||||||
|
#: OrchardCore.Twitter\ViewModels\TwitterSettingsViewModel.cs:10
|
||||||
|
msgctxt "OrchardCore.Twitter.ViewModels.TwitterSettingsViewModel"
|
||||||
|
msgid "API secret key is required"
|
||||||
|
msgstr "مفتاح API السري مطلوب"
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "Access token is required")]
|
||||||
|
#: OrchardCore.Twitter\ViewModels\TwitterSettingsViewModel.cs:13
|
||||||
|
msgctxt "OrchardCore.Twitter.ViewModels.TwitterSettingsViewModel"
|
||||||
|
msgid "Access token is required"
|
||||||
|
msgstr "رمز الوصول مطلوب"
|
||||||
|
|
||||||
|
#. [Required(AllowEmptyStrings = false, ErrorMessage = "Access token secret is required")]
|
||||||
|
#: OrchardCore.Twitter\ViewModels\TwitterSettingsViewModel.cs:16
|
||||||
|
msgctxt "OrchardCore.Twitter.ViewModels.TwitterSettingsViewModel"
|
||||||
|
msgid "Access token secret is required"
|
||||||
|
msgstr "رمز الوصول الأمن مطلوب"
|
||||||
|
|
||||||
|
#. [RegularExpression(@"\/[-A-Za-z0-9+&@#\/%?=~_|!:,.;]+[-A-Za-z0-9+&@#\/%=~_|]", ErrorMessage = "Invalid path")]
|
||||||
|
#: OrchardCore.Twitter\Signin\ViewModels\TwitterSigninSettingsViewModel.cs:7
|
||||||
|
msgctxt "OrchardCore.Twitter.Signin.ViewModels.TwitterSigninSettingsViewModel"
|
||||||
|
msgid "Invalid path"
|
||||||
|
msgstr "مسار غير صالح"
|
||||||
|
|
||||||
|
#. public override LocalizedString DisplayText => S["Update Twitter Status Task"];
|
||||||
|
#: OrchardCore.Twitter\Workflows\Activities\UpdateTwitterStatusTask.cs:32
|
||||||
|
msgctxt "OrchardCore.Twitter.Workflows.Activities.UpdateTwitterStatusTask"
|
||||||
|
msgid "Update Twitter Status Task"
|
||||||
|
msgstr "مهمة تحديث حالة تويتر"
|
||||||
|
|
||||||
|
#. public override LocalizedString Category => S["Social"];
|
||||||
|
#: OrchardCore.Twitter\Workflows\Activities\UpdateTwitterStatusTask.cs:35
|
||||||
|
msgctxt "OrchardCore.Twitter.Workflows.Activities.UpdateTwitterStatusTask"
|
||||||
|
msgid "Social"
|
||||||
|
msgstr "التواصل الاجتماعي"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Failed"]);
|
||||||
|
#: OrchardCore.Twitter\Workflows\Activities\UpdateTwitterStatusTask.cs:47
|
||||||
|
msgctxt "OrchardCore.Twitter.Workflows.Activities.UpdateTwitterStatusTask"
|
||||||
|
msgid "Done"
|
||||||
|
msgstr "تم"
|
||||||
|
|
||||||
|
#. return Outcomes(S["Done"], S["Failed"]);
|
||||||
|
#: OrchardCore.Twitter\Workflows\Activities\UpdateTwitterStatusTask.cs:47
|
||||||
|
msgctxt "OrchardCore.Twitter.Workflows.Activities.UpdateTwitterStatusTask"
|
||||||
|
msgid "Failed"
|
||||||
|
msgstr "فشل"
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fab fa-twitter" aria-hidden="true"></i></span><span class="title">@T["Twitter"]</span>
|
||||||
|
#: OrchardCore.Twitter\Views\NavigationItemText-twitter.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.NavigationItemText-twitter.Id"
|
||||||
|
msgid "Twitter"
|
||||||
|
msgstr "تويتر"
|
||||||
|
|
||||||
|
#. <p class="alert alert-warning">@T["The current tenant will be reloaded when the settings are saved."]
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "ستتم إعادة تحميل الـ tenant الحالي عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Twitter/#twitter-integration" target="_blank">@T["See documentation"]</a></p>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <p class="alert alert-danger">@T["An error occurred while decrypting a setting. Please apply and save."]</p>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "An error occurred while decrypting a setting. Please apply and save."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h3>@T["Twitter Integration Settings"]</h3>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:12
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "Twitter Integration Settings"
|
||||||
|
msgstr "إعدادات تكامل تويتر"
|
||||||
|
|
||||||
|
#. <label asp-for="APIKey">@T["API key"]</label>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "API key"
|
||||||
|
msgstr "مفتاح API"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The API key defined in the Keys and tokens tab of twitter app dashboard."]</span>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:19
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "The API key defined in the Keys and tokens tab of twitter app dashboard."
|
||||||
|
msgstr "مفتاح الـ API معرف في تبويب المفاتيح والرموز للوحة الإعدادات لتطبيق تويتر."
|
||||||
|
|
||||||
|
#. <label asp-for="APISecretKey">@T["API secret key"]</label>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:25
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "API secret key"
|
||||||
|
msgstr "المفتاح السري للـ API"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The API secret defined in the Keys and tokens tab of twitter app dashboard."]</span>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:28
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "The API secret defined in the Keys and tokens tab of twitter app dashboard."
|
||||||
|
msgstr "المفتاح السري للـ API معرف في تبويب المفاتيح والرموز للوحة الإعدادات لتطبيق تويتر."
|
||||||
|
|
||||||
|
#. <label asp-for="AccessToken">@T["Access Token"]</label>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:34
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "Access Token"
|
||||||
|
msgstr "رمز الوصول"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Access Token defined in the Keys and tokens tab of twitter app dashboard."]</span>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:37
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "The Access Token defined in the Keys and tokens tab of twitter app dashboard."
|
||||||
|
msgstr "رمز الوصول معرف في توبيب المفاتيح ورموز الوصول للوحة الإعدادات تطبيق تويتر."
|
||||||
|
|
||||||
|
#. <label asp-for="AccessTokenSecret">@T["Access Token Secret"]</label>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:43
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "Access Token Secret"
|
||||||
|
msgstr "رمز الوصول السري"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The Access Token Secret in the Keys and tokens tab of twitter app dashboard."]</span>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSettings.Edit.cshtml:46
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSettings.Edit"
|
||||||
|
msgid "The Access Token Secret in the Keys and tokens tab of twitter app dashboard."
|
||||||
|
msgstr "رمز الوصول السري معرف في توبيب المفاتيح ورموز الوصول للوحة الإعدادات تطبيق تويتر."
|
||||||
|
|
||||||
|
#. @T["The current tenant will be reloaded when the settings are saved."]
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSigninSettings.Edit.cshtml:5
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSigninSettings.Edit"
|
||||||
|
msgid "The current tenant will be reloaded when the settings are saved."
|
||||||
|
msgstr "سيتم إعادة تحميل الـ tenant عند حفظ الإعدادات."
|
||||||
|
|
||||||
|
#. <a class="seedoc" href="@(OrchardCore.Admin.Constants.DocsUrl)reference/modules/Twitter/#sign-in-with-twitter" target="_blank">@T["See documentation"]</a>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSigninSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSigninSettings.Edit"
|
||||||
|
msgid "See documentation"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. <h3>@T["Sign in with Twitter Settings"]</h3>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSigninSettings.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSigninSettings.Edit"
|
||||||
|
msgid "Sign in with Twitter Settings"
|
||||||
|
msgstr "تسجيل الدخول بإستخدام إعدادات تويتر"
|
||||||
|
|
||||||
|
#. <label asp-for="CallbackPath">@T["CallbackPath"]</label>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSigninSettings.Edit.cshtml:13
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSigninSettings.Edit"
|
||||||
|
msgid "CallbackPath"
|
||||||
|
msgstr "مسار الإستدعاء المرجعي"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."]</span>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSigninSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSigninSettings.Edit"
|
||||||
|
msgid "The request path within the application's base path where the user-agent will be returned. The middleware will process this request when it arrives."
|
||||||
|
msgstr "المسار المطلوب داخل المسار الأساسي للتطبيق حيث سيتم إرجاع وكيل المستخدم إليه. الـ middleware سوف تعالج الطلب عند وصوله."
|
||||||
|
|
||||||
|
#. <label class="form-check-label" asp-for="SaveTokens">@T["Store tokens"]</label>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSigninSettings.Edit.cshtml:23
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSigninSettings.Edit"
|
||||||
|
msgid "Store tokens"
|
||||||
|
msgstr "الرموز المحزنة"
|
||||||
|
|
||||||
|
#. <span class="hint dashed">@T["Store external authentication tokens for reuse"]</span>
|
||||||
|
#: OrchardCore.Twitter\Views\TwitterSigninSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.TwitterSigninSettings.Edit"
|
||||||
|
msgid "Store external authentication tokens for reuse"
|
||||||
|
msgstr "تخزين رمز المصادقة الخارجية لإعادة الاستخدام"
|
||||||
|
|
||||||
|
#. <h4><i class="fab fa-twitter" aria-hidden="true"></i>@Model.Activity.GetTitleOrDefault(() => T["Update Twitter Status"])</h4>
|
||||||
|
#: OrchardCore.Twitter\Views\Items\UpdateTwitterStatusTask.Fields.Design.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.Items.UpdateTwitterStatusTask.Fields.Design"
|
||||||
|
msgid "Update Twitter Status"
|
||||||
|
msgstr "تحديث حالة تويتر"
|
||||||
|
|
||||||
|
#. <label asp-for="StatusTemplate">@T["Template for updating twitter status"]</label>
|
||||||
|
#: OrchardCore.Twitter\Views\Items\UpdateTwitterStatusTask.Fields.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.Items.UpdateTwitterStatusTask.Fields.Edit"
|
||||||
|
msgid "Template for updating twitter status"
|
||||||
|
msgstr "قالب تحديث حالة تويتر"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["The status text of the tweet."]</span>
|
||||||
|
#: OrchardCore.Twitter\Views\Items\UpdateTwitterStatusTask.Fields.Edit.cshtml:9
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.Items.UpdateTwitterStatusTask.Fields.Edit"
|
||||||
|
msgid "The status text of the tweet."
|
||||||
|
msgstr "نص حالة التغريدة."
|
||||||
|
|
||||||
|
#. <h4 class="card-title"><i class="fab fa-twitter" aria-hidden="true"></i>@T["Update Twitter Status"]</h4>
|
||||||
|
#: OrchardCore.Twitter\Views\Items\UpdateTwitterStatusTask.Fields.Thumbnail.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.Items.UpdateTwitterStatusTask.Fields.Thumbnail"
|
||||||
|
msgid "Update Twitter Status"
|
||||||
|
msgstr "تحديث حالة تويتر"
|
||||||
|
|
||||||
|
#. <p>@T["Post a tweet"]</p>
|
||||||
|
#: OrchardCore.Twitter\Views\Items\UpdateTwitterStatusTask.Fields.Thumbnail.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Twitter.Views.Items.UpdateTwitterStatusTask.Fields.Thumbnail"
|
||||||
|
msgid "Post a tweet"
|
||||||
|
msgstr "نشر تغريدة"
|
||||||
|
|
||||||
140
src/Twain.Web/Localization/ar/OrchardCore.Users.Core.po
Normal file
140
src/Twain.Web/Localization/ar/OrchardCore.Users.Core.po
Normal file
@@ -0,0 +1,140 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Users.Core.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 836\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 19:13\n"
|
||||||
|
|
||||||
|
#. reportError("UserName", S["A user name is required."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:47
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "A user name is required."
|
||||||
|
msgstr "إسم المستخدم مطلوب."
|
||||||
|
|
||||||
|
#. reportError("Password", S["A password is required."]);
|
||||||
|
#. reportError("Password", S["A password is required."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:53
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:182
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "A password is required."
|
||||||
|
msgstr "كلمة المرور مطلوبه."
|
||||||
|
|
||||||
|
#. reportError(string.Empty, S["The specified username/password couple is invalid."]);
|
||||||
|
#. reportError(string.Empty, S["The specified username/password couple is invalid."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:60
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:83
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "The specified username/password couple is invalid."
|
||||||
|
msgstr "إسم المستخدم/كلمة المرور غير صحيحة."
|
||||||
|
|
||||||
|
#. reportError(string.Empty, S["The user is locked out."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:68
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "The user is locked out."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. reportError(string.Empty, S["The specified user is not allowed to sign in."]);
|
||||||
|
#. reportError(string.Empty, S["The specified user is not allowed to sign in."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:73
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:89
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "The specified user is not allowed to sign in."
|
||||||
|
msgstr "المستخدم المحدد غير مسموح له من تسجيل الدخول."
|
||||||
|
|
||||||
|
#. reportError(string.Empty, S["The specified user is not allowed to sign in using password authentication."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:78
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "The specified user is not allowed to sign in using password authentication."
|
||||||
|
msgstr "المستخدم المحدد غير مسموح له بتسجيل الدخول بإستخدام مصادقة كلمة المرور."
|
||||||
|
|
||||||
|
#. reportError("UserName", S["A email address is required."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:176
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "A email address is required."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. reportError("Token", S["A token is required."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:188
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "A token is required."
|
||||||
|
msgstr "العلامة الرمزية مطلوبه."
|
||||||
|
|
||||||
|
#. reportError("Password", S["Passwords must have at least one digit character ('0'-'9')."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:243
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "Passwords must have at least one digit character ('0'-'9')."
|
||||||
|
msgstr "كلمة المرور يجب أن تحتوي على الأقل على رقم واحد ('0'-'9')."
|
||||||
|
|
||||||
|
#. reportError("Password", S["Passwords must have at least one lowercase character ('a'-'z')."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:246
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "Passwords must have at least one lowercase character ('a'-'z')."
|
||||||
|
msgstr "كلمة المرور يجب أن تحتوي على الأقل على حرف صغير ('a'-'z')."
|
||||||
|
|
||||||
|
#. reportError("Password", S["Passwords must have at least one uppercase character ('A'-'Z')."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:249
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "Passwords must have at least one uppercase character ('A'-'Z')."
|
||||||
|
msgstr "كلمة المرور يجب أن تحتوي على الأقل على حرف كبير ('A'-'Z')."
|
||||||
|
|
||||||
|
#. reportError("Password", S["Passwords must have at least one non letter or digit character."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:252
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "Passwords must have at least one non letter or digit character."
|
||||||
|
msgstr "كلمة المرور يجب أن تحتوي على الأفل على غير حرف أو رقم."
|
||||||
|
|
||||||
|
#. reportError("Password", S["Passwords must be at least {0} characters.", _identityOptions.Value.Password.RequiredLength]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:255
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "Passwords must be at least {0} characters."
|
||||||
|
msgstr "كلمة المرور يجب أن تحتوي على الأقل {0} أحرف."
|
||||||
|
|
||||||
|
#. reportError("Password", S["Passwords must contain at least {0} unique characters.", _identityOptions.Value.Password.RequiredUniqueChars]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:258
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "Passwords must contain at least {0} unique characters."
|
||||||
|
msgstr "كلمة المرور يجب أن تحتوي على الأقل {0} أحرف فريده."
|
||||||
|
|
||||||
|
#. reportError("CurrentPassword", S["Incorrect password."]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:263
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "Incorrect password."
|
||||||
|
msgstr "كلمة المرور غير صحيحة."
|
||||||
|
|
||||||
|
#. reportError("UserName", S["User name '{0}' is invalid, can only contain letters or digits.", user.UserName]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:268
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "User name '{0}' is invalid, can only contain letters or digits."
|
||||||
|
msgstr "اسم المستخدم '{0}' غير صحيح، يمكن أن يحتوي على أحرف أو أرقام فقط."
|
||||||
|
|
||||||
|
#. reportError("UserName", S["User name '{0}' is already used.", user.UserName]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:271
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "User name '{0}' is already used."
|
||||||
|
msgstr "إسم المستخدم '{0}' قيد الاستخدام."
|
||||||
|
|
||||||
|
#. reportError("Email", S["Email '{0}' is already used.", user.Email]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:276
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "Email '{0}' is already used."
|
||||||
|
msgstr "البريد الإلكتروني '{0}' قيد الاستخدام."
|
||||||
|
|
||||||
|
#. reportError("Email", S["Email '{0}' is invalid.", user.Email]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:279
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "Email '{0}' is invalid."
|
||||||
|
msgstr "البريد الإلكتروني '{0}' غير صحيح."
|
||||||
|
|
||||||
|
#. reportError(string.Empty, S["Unexpected error: '{0}'.", error.Code]);
|
||||||
|
#: OrchardCore.Users.Core\Services\UserService.cs:283
|
||||||
|
msgctxt "OrchardCore.Users.Services.UserService"
|
||||||
|
msgid "Unexpected error: '{0}'."
|
||||||
|
msgstr "خطأ غير متوقع: '{0}'."
|
||||||
|
|
||||||
2288
src/Twain.Web/Localization/ar/OrchardCore.Users.po
Normal file
2288
src/Twain.Web/Localization/ar/OrchardCore.Users.po
Normal file
File diff suppressed because it is too large
Load Diff
68
src/Twain.Web/Localization/ar/OrchardCore.Widgets.po
Normal file
68
src/Twain.Web/Localization/ar/OrchardCore.Widgets.po
Normal file
@@ -0,0 +1,68 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Widgets.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 840\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-10-11 20:34\n"
|
||||||
|
|
||||||
|
#. <button type="button" title="@T["Insert Widget"]" class="btn btn-primary btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
#: OrchardCore.Widgets\Views\ContentCard-WidgetsListPart.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Widgets.Views.ContentCard-WidgetsListPart.Edit"
|
||||||
|
msgid "Insert Widget"
|
||||||
|
msgstr "إدراج مربع جانبي"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-danger widget-list-delete" data-title="@T["Delete"]" data-message="@T["Are you sure you want to remove this item?"]"><i class="fa fa-trash" aria-hidden="true"></i></button>
|
||||||
|
#: OrchardCore.Widgets\Views\ContentCard-WidgetsListPart.Edit.cshtml:53
|
||||||
|
msgctxt "OrchardCore.Widgets.Views.ContentCard-WidgetsListPart.Edit"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. <button type="button" class="btn btn-danger widget-list-delete" data-title="@T["Delete"]" data-message="@T["Are you sure you want to remove this item?"]"><i class="fa fa-trash" aria-hidden="true"></i></button>
|
||||||
|
#: OrchardCore.Widgets\Views\ContentCard-WidgetsListPart.Edit.cshtml:53
|
||||||
|
msgctxt "OrchardCore.Widgets.Views.ContentCard-WidgetsListPart.Edit"
|
||||||
|
msgid "Are you sure you want to remove this item?"
|
||||||
|
msgstr "هل أنت متأكد من حذف هذا العنصر؟"
|
||||||
|
|
||||||
|
#. <span data-content-type-display-text="@contentTypeDisplayText" class="widget-editor-header-text">@T["{0} {1}", contentItemDisplayText, contentTypeDisplayText]</span>
|
||||||
|
#: OrchardCore.Widgets\Views\ContentCard.Preview.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Widgets.Views.ContentCard.Preview"
|
||||||
|
msgid "{0} {1}"
|
||||||
|
msgstr "{0} {1}"
|
||||||
|
|
||||||
|
#. <span>@T["Actions"]</span>
|
||||||
|
#: OrchardCore.Widgets\Views\Widget.SummaryAdmin.cshtml:60
|
||||||
|
msgctxt "OrchardCore.Widgets.Views.Widget.SummaryAdmin"
|
||||||
|
msgid "Actions"
|
||||||
|
msgstr "الإجراءت"
|
||||||
|
|
||||||
|
#. <button type="button" title="@T["Add Widget"]" class="btn btn-primary btn-sm dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||||||
|
#: OrchardCore.Widgets\Views\WidgetsListPart.Edit.cshtml:134
|
||||||
|
msgctxt "OrchardCore.Widgets.Views.WidgetsListPart.Edit"
|
||||||
|
msgid "Add Widget"
|
||||||
|
msgstr "اضافة ودجت"
|
||||||
|
|
||||||
|
#. <option value="" selected="@String.IsNullOrEmpty(currentEditor)">@T["Standard"]</option>
|
||||||
|
#: OrchardCore.Widgets\Views\WidgetsListPart.Option.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Widgets.Views.WidgetsListPart.Option"
|
||||||
|
msgid "Standard"
|
||||||
|
msgstr "قياسي"
|
||||||
|
|
||||||
|
#. <label asp-for="Zones">@T["Available widgets zones"]</label>
|
||||||
|
#: OrchardCore.Widgets\Views\WidgetsPartSettings.Edit.cshtml:4
|
||||||
|
msgctxt "OrchardCore.Widgets.Views.WidgetsPartSettings.Edit"
|
||||||
|
msgid "Available widgets zones"
|
||||||
|
msgstr "مناطق الودجت المتاحة"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["A comma separated list of values, representing the available zones for widgets."]</span>
|
||||||
|
#: OrchardCore.Widgets\Views\WidgetsPartSettings.Edit.cshtml:7
|
||||||
|
msgctxt "OrchardCore.Widgets.Views.WidgetsPartSettings.Edit"
|
||||||
|
msgid "A comma separated list of values, representing the available zones for widgets."
|
||||||
|
msgstr "قائمة قيم مفصولة بفواصل, تعبر عن المناطق المتاحة للودجت."
|
||||||
|
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Workflows.Abstractions.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 842\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 19:11\n"
|
||||||
|
|
||||||
|
#. WorkflowStatus.Aborted => H["Aborted"],
|
||||||
|
#: OrchardCore.Workflows.Abstractions\Helpers\ActivityExtensions.cs:31
|
||||||
|
msgctxt "OrchardCore.Workflows.Helpers.ActivityExtensions"
|
||||||
|
msgid "Aborted"
|
||||||
|
msgstr "تم الإحباط"
|
||||||
|
|
||||||
|
#. WorkflowStatus.Executing => H["Executing"],
|
||||||
|
#: OrchardCore.Workflows.Abstractions\Helpers\ActivityExtensions.cs:32
|
||||||
|
msgctxt "OrchardCore.Workflows.Helpers.ActivityExtensions"
|
||||||
|
msgid "Executing"
|
||||||
|
msgstr "تنفيذ"
|
||||||
|
|
||||||
|
#. WorkflowStatus.Faulted => H["Faulted"],
|
||||||
|
#: OrchardCore.Workflows.Abstractions\Helpers\ActivityExtensions.cs:33
|
||||||
|
msgctxt "OrchardCore.Workflows.Helpers.ActivityExtensions"
|
||||||
|
msgid "Faulted"
|
||||||
|
msgstr "خطأ"
|
||||||
|
|
||||||
|
#. WorkflowStatus.Finished => H["Finished"],
|
||||||
|
#: OrchardCore.Workflows.Abstractions\Helpers\ActivityExtensions.cs:34
|
||||||
|
msgctxt "OrchardCore.Workflows.Helpers.ActivityExtensions"
|
||||||
|
msgid "Finished"
|
||||||
|
msgstr "إنتهت"
|
||||||
|
|
||||||
|
#. WorkflowStatus.Halted => H["Halted"],
|
||||||
|
#: OrchardCore.Workflows.Abstractions\Helpers\ActivityExtensions.cs:35
|
||||||
|
msgctxt "OrchardCore.Workflows.Helpers.ActivityExtensions"
|
||||||
|
msgid "Halted"
|
||||||
|
msgstr "أوقفت"
|
||||||
|
|
||||||
|
#. WorkflowStatus.Idle => H["Idle"],
|
||||||
|
#: OrchardCore.Workflows.Abstractions\Helpers\ActivityExtensions.cs:36
|
||||||
|
msgctxt "OrchardCore.Workflows.Helpers.ActivityExtensions"
|
||||||
|
msgid "Idle"
|
||||||
|
msgstr "خامل"
|
||||||
|
|
||||||
|
#. WorkflowStatus.Resuming => H["Resuming"],
|
||||||
|
#: OrchardCore.Workflows.Abstractions\Helpers\ActivityExtensions.cs:37
|
||||||
|
msgctxt "OrchardCore.Workflows.Helpers.ActivityExtensions"
|
||||||
|
msgid "Resuming"
|
||||||
|
msgstr "إستكمال"
|
||||||
|
|
||||||
|
#. WorkflowStatus.Starting => H["Starting"],
|
||||||
|
#: OrchardCore.Workflows.Abstractions\Helpers\ActivityExtensions.cs:38
|
||||||
|
msgctxt "OrchardCore.Workflows.Helpers.ActivityExtensions"
|
||||||
|
msgid "Starting"
|
||||||
|
msgstr "بداية"
|
||||||
|
|
||||||
2326
src/Twain.Web/Localization/ar/OrchardCore.Workflows.po
Normal file
2326
src/Twain.Web/Localization/ar/OrchardCore.Workflows.po
Normal file
File diff suppressed because it is too large
Load Diff
20
src/Twain.Web/Localization/ar/SafeMode.po
Normal file
20
src/Twain.Web/Localization/ar/SafeMode.po
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/SafeMode.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 846\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-07-15 19:15\n"
|
||||||
|
|
||||||
|
#. <h1>@T["SAFE MODE"]</h1>
|
||||||
|
#: SafeMode\Views\Layout.cshtml:9
|
||||||
|
msgctxt "SafeMode.Views.Layout"
|
||||||
|
msgid "SAFE MODE"
|
||||||
|
msgstr "وضع الأمان"
|
||||||
|
|
||||||
74
src/Twain.Web/Localization/ar/TheAdmin.po
Normal file
74
src/Twain.Web/Localization/ar/TheAdmin.po
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/TheAdmin.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 848\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-05-05 18:39\n"
|
||||||
|
|
||||||
|
#. <a id="btn-darkmode" class="me-3" data-bs-toggle="tooltip" data-bs-placement="bottom" title="@(darkMode ? T["Light mode"] : T["Dark mode"])" role="button">
|
||||||
|
#. <span class="d-none">@T["Light mode"]</span>
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:46
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:50
|
||||||
|
msgctxt "TheAdmin.Views.Layout"
|
||||||
|
msgid "Light mode"
|
||||||
|
msgstr "المظهر الفاتح"
|
||||||
|
|
||||||
|
#. <a id="btn-darkmode" class="me-3" data-bs-toggle="tooltip" data-bs-placement="bottom" title="@(darkMode ? T["Light mode"] : T["Dark mode"])" role="button">
|
||||||
|
#. <span class="d-none">@T["Dark mode"]</span>
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:46
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:55
|
||||||
|
msgctxt "TheAdmin.Views.Layout"
|
||||||
|
msgid "Dark mode"
|
||||||
|
msgstr "المظهر الغامق"
|
||||||
|
|
||||||
|
#. <a href="@Url.Content("~/")" class="me-3" target="_blank" data-bs-toggle="tooltip" data-bs-placement="bottom" title="@T["Visit Site"]" role="button">
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:59
|
||||||
|
msgctxt "TheAdmin.Views.Layout"
|
||||||
|
msgid "Visit Site"
|
||||||
|
msgstr "زيارة الموقع"
|
||||||
|
|
||||||
|
#. <button type="button" class="leftbar-compactor" title="@T["Collapse / expand menu"]">
|
||||||
|
#. <span class="d-none">@T["Collapse / expand menu"]</span>
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:70
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:71
|
||||||
|
msgctxt "TheAdmin.Views.Layout"
|
||||||
|
msgid "Collapse / expand menu"
|
||||||
|
msgstr "إغلاق/فتح القائمة"
|
||||||
|
|
||||||
|
#. <div id="confirmRemoveModalMetadata" data-title="@T["Delete"]" data-message="@T["Are you sure you want to remove this element?"]" data-ok-text="@T["Ok"]" data-cancel-text="@T["Cancel"]" data-ok-class="btn-danger" data-cancel-class="btn-secondary"></div>
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:90
|
||||||
|
msgctxt "TheAdmin.Views.Layout"
|
||||||
|
msgid "Delete"
|
||||||
|
msgstr "حذف"
|
||||||
|
|
||||||
|
#. <div id="confirmRemoveModalMetadata" data-title="@T["Delete"]" data-message="@T["Are you sure you want to remove this element?"]" data-ok-text="@T["Ok"]" data-cancel-text="@T["Cancel"]" data-ok-class="btn-danger" data-cancel-class="btn-secondary"></div>
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:90
|
||||||
|
msgctxt "TheAdmin.Views.Layout"
|
||||||
|
msgid "Are you sure you want to remove this element?"
|
||||||
|
msgstr "هل أنت متأكد أنك تريد حذف هذا العنصر؟"
|
||||||
|
|
||||||
|
#. <div id="confirmRemoveModalMetadata" data-title="@T["Delete"]" data-message="@T["Are you sure you want to remove this element?"]" data-ok-text="@T["Ok"]" data-cancel-text="@T["Cancel"]" data-ok-class="btn-danger" data-cancel-class="btn-secondary"></div>
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:90
|
||||||
|
msgctxt "TheAdmin.Views.Layout"
|
||||||
|
msgid "Ok"
|
||||||
|
msgstr "موافق"
|
||||||
|
|
||||||
|
#. <div id="confirmRemoveModalMetadata" data-title="@T["Delete"]" data-message="@T["Are you sure you want to remove this element?"]" data-ok-text="@T["Ok"]" data-cancel-text="@T["Cancel"]" data-ok-class="btn-danger" data-cancel-class="btn-secondary"></div>
|
||||||
|
#: TheAdmin\Views\Layout.cshtml:90
|
||||||
|
msgctxt "TheAdmin.Views.Layout"
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr "إلغاء"
|
||||||
|
|
||||||
|
#. <input id="filter" class="form-control" placeholder="@T["Filter"]" type="search" data-bs-toggle="tooltip" data-bs-placement="right" data-html="true" title="Ctrl+Shift+F" />
|
||||||
|
#: TheAdmin\Views\Navigation-admin.cshtml:16
|
||||||
|
msgctxt "TheAdmin.Views.Navigation-admin"
|
||||||
|
msgid "Filter"
|
||||||
|
msgstr "تصفية"
|
||||||
|
|
||||||
49
src/Twain.Web/Localization/ar/TheAgencyTheme.po
Normal file
49
src/Twain.Web/Localization/ar/TheAgencyTheme.po
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/TheAgencyTheme.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 850\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-09-24 21:30\n"
|
||||||
|
|
||||||
|
#: TheAgencyTheme\Views\Layout.liquid:0
|
||||||
|
msgctxt "TheAgencyTheme.Views.Layout"
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "القائمة"
|
||||||
|
|
||||||
|
#: TheAgencyTheme\Views\SearchForm.liquid:0
|
||||||
|
msgctxt "TheAgencyTheme.Views.SearchForm"
|
||||||
|
msgid "Enter your search term(s)"
|
||||||
|
msgstr "أدخل نص البحث"
|
||||||
|
|
||||||
|
#: TheAgencyTheme\Views\SearchForm.liquid:0
|
||||||
|
msgctxt "TheAgencyTheme.Views.SearchForm"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#: TheAgencyTheme\Views\SearchResults.liquid:0
|
||||||
|
msgctxt "TheAgencyTheme.Views.SearchResults"
|
||||||
|
msgid "There are no such results."
|
||||||
|
msgstr "لا توجد أي نتائج."
|
||||||
|
|
||||||
|
#: TheAgencyTheme\Views\Shared\NotFound.liquid:0
|
||||||
|
msgctxt "TheAgencyTheme.Views.Shared.NotFound"
|
||||||
|
msgid "Page Not Found"
|
||||||
|
msgstr "لم يتم العثور على الصفحة"
|
||||||
|
|
||||||
|
#: TheAgencyTheme\Views\Shared\NotFound.liquid:0
|
||||||
|
msgctxt "TheAgencyTheme.Views.Shared.NotFound"
|
||||||
|
msgid "The page you requested could not be found."
|
||||||
|
msgstr "لا يمكن العقور على الصفحة التي طلبتها."
|
||||||
|
|
||||||
|
#: TheAgencyTheme\Views\Shared\Search.liquid:0
|
||||||
|
msgctxt "TheAgencyTheme.Views.Shared.Search"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
139
src/Twain.Web/Localization/ar/TheBlogTheme.po
Normal file
139
src/Twain.Web/Localization/ar/TheBlogTheme.po
Normal file
@@ -0,0 +1,139 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/TheBlogTheme.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 852\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2021-09-24 21:30\n"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Blog-ListPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Blog-ListPart"
|
||||||
|
msgid "← Newer Posts"
|
||||||
|
msgstr "← أحدث المقالات"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Blog-ListPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Blog-ListPart"
|
||||||
|
msgid "Older Posts →"
|
||||||
|
msgstr "أقدم المقالات →"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Blog-ListPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Blog-ListPart"
|
||||||
|
msgid "previous"
|
||||||
|
msgstr "السابق"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Blog-ListPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Blog-ListPart"
|
||||||
|
msgid "next"
|
||||||
|
msgstr "التالي"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Category-TermPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Category-TermPart"
|
||||||
|
msgid "← Newer Posts"
|
||||||
|
msgstr "← أحدث المقالات"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Category-TermPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Category-TermPart"
|
||||||
|
msgid "Older Posts →"
|
||||||
|
msgstr "أقدم المقالات →"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Category-TermPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Category-TermPart"
|
||||||
|
msgid "previous"
|
||||||
|
msgstr "السابق"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Category-TermPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Category-TermPart"
|
||||||
|
msgid "next"
|
||||||
|
msgstr "التالي"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Content-BlogPost.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Content-BlogPost"
|
||||||
|
msgid "MMMM dd, yyyy"
|
||||||
|
msgstr "yyyy MMMM dd"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Content-BlogPost.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Content-BlogPost"
|
||||||
|
msgid "Posted by"
|
||||||
|
msgstr "كتب بواسطة"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Content-BlogPost.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Content-BlogPost"
|
||||||
|
msgid "on {0}"
|
||||||
|
msgstr "في {0}"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Content-BlogPost.Summary.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Content-BlogPost.Summary"
|
||||||
|
msgid "MMMM dd, yyyy"
|
||||||
|
msgstr "yyyy MMMM dd"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Content-BlogPost.Summary.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Content-BlogPost.Summary"
|
||||||
|
msgid "Posted by"
|
||||||
|
msgstr "كتب بواسطة"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Content-BlogPost.Summary.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Content-BlogPost.Summary"
|
||||||
|
msgid "on {0}"
|
||||||
|
msgstr "في {0}"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Layout.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Layout"
|
||||||
|
msgid "Toggle navigation"
|
||||||
|
msgstr "تفعيل التنقل"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Layout.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Layout"
|
||||||
|
msgid "Menu"
|
||||||
|
msgstr "القائمة"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Search-Form.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Search-Form"
|
||||||
|
msgid "Enter your search term(s)"
|
||||||
|
msgstr "أدخل نص البحث"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Search-Form.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Search-Form"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Search-Results.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Search-Results"
|
||||||
|
msgid "There are no such results."
|
||||||
|
msgstr "لا توجد أي نتائج."
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Tag-TermPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Tag-TermPart"
|
||||||
|
msgid "← Newer Posts"
|
||||||
|
msgstr "← أحدث المقالات"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Tag-TermPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Tag-TermPart"
|
||||||
|
msgid "Older Posts →"
|
||||||
|
msgstr "أقدم المقالات →"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Tag-TermPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Tag-TermPart"
|
||||||
|
msgid "previous"
|
||||||
|
msgstr "السابق"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Tag-TermPart.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Tag-TermPart"
|
||||||
|
msgid "next"
|
||||||
|
msgstr "التالي"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Shared\NotFound.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Shared.NotFound"
|
||||||
|
msgid "Page Not Found"
|
||||||
|
msgstr "الصفحة غير موجوده"
|
||||||
|
|
||||||
|
#: TheBlogTheme\Views\Shared\Search.liquid:0
|
||||||
|
msgctxt "TheBlogTheme.Views.Shared.Search"
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "بحث"
|
||||||
|
|
||||||
56
src/Twain.Web/Localization/ar/TheTheme.po
Normal file
56
src/Twain.Web/Localization/ar/TheTheme.po
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: ar\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/TheTheme.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 854\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Arabic\n"
|
||||||
|
"Language: ar_SA\n"
|
||||||
|
"PO-Revision-Date: 2022-03-05 10:48\n"
|
||||||
|
|
||||||
|
#. <a class="dropdown-item" asp-route-area="OrchardCore.Admin" asp-controller="Admin" asp-action="Index"><i class="fa fa-desktop fa-fw" aria-hidden="true"></i> @T["Dashboard"]</a>
|
||||||
|
#: TheTheme\Views\LoginMenu.cshtml:21
|
||||||
|
msgctxt "TheTheme.Views.LoginMenu"
|
||||||
|
msgid "Dashboard"
|
||||||
|
msgstr "لوحة المعلومات"
|
||||||
|
|
||||||
|
#. <a class="dropdown-item" asp-route-area="OrchardCore.Users" asp-controller="ChangeEmail" asp-action="Index"><i class="fa fa-envelope fa-fw" aria-hidden="true"></i> @T["Change Email"]</a>
|
||||||
|
#: TheTheme\Views\LoginMenu.cshtml:25
|
||||||
|
msgctxt "TheTheme.Views.LoginMenu"
|
||||||
|
msgid "Change Email"
|
||||||
|
msgstr "تغيير البريد الإلكتروني"
|
||||||
|
|
||||||
|
#. <a class="dropdown-item" asp-route-area="OrchardCore.Users" asp-controller="Account" asp-action="ChangePassword" asp-route-returnUrl="@FullRequestPath"><i class="fa fa-lock fa-fw" aria-hidden="true"></i> @T["Change Password"]</a>
|
||||||
|
#: TheTheme\Views\LoginMenu.cshtml:27
|
||||||
|
msgctxt "TheTheme.Views.LoginMenu"
|
||||||
|
msgid "Change Password"
|
||||||
|
msgstr "تغيير كلمة المرور"
|
||||||
|
|
||||||
|
#. <a class="dropdown-item" asp-route-area="OrchardCore.Users" asp-controller="Account" asp-action="ExternalLogins"><i class="fa fa-user-lock fa-fw" aria-hidden="true"></i> @T["External Logins"]</a>
|
||||||
|
#: TheTheme\Views\LoginMenu.cshtml:30
|
||||||
|
msgctxt "TheTheme.Views.LoginMenu"
|
||||||
|
msgid "External Logins"
|
||||||
|
msgstr "تسجيلات الدخول الخارجية"
|
||||||
|
|
||||||
|
#. <button type="submit" class="btn btn-link navbar-btn dropdown-item"><i class="fa fa-sign-out-alt fa-fw" aria-hidden="true"></i> @T["Log off"]</button>
|
||||||
|
#: TheTheme\Views\LoginMenu.cshtml:33
|
||||||
|
msgctxt "TheTheme.Views.LoginMenu"
|
||||||
|
msgid "Log off"
|
||||||
|
msgstr "تسجيل الخروج"
|
||||||
|
|
||||||
|
#. <li class="nav-item"><a class="nav-link" asp-route-area="OrchardCore.Users" asp-controller="Account" asp-action="Login"><i class="fa fa-sign-in-alt fa-fw" aria-hidden="true"></i> @T["Log in"]</a></li>
|
||||||
|
#: TheTheme\Views\LoginMenu.cshtml:40
|
||||||
|
msgctxt "TheTheme.Views.LoginMenu"
|
||||||
|
msgid "Log in"
|
||||||
|
msgstr "تسجيل الدخول"
|
||||||
|
|
||||||
|
#. <h4>@T["Welcome to Orchard Core, your site has been successfully set up."]</h4>
|
||||||
|
#: TheTheme\Views\Home\Index.cshtml:2
|
||||||
|
msgctxt "TheTheme.Views.Home.Index"
|
||||||
|
msgid "Welcome to Orchard Core, your site has been successfully set up."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
112
src/Twain.Web/Localization/cs/OrchardCore.Admin.po
Normal file
112
src/Twain.Web/Localization/cs/OrchardCore.Admin.po
Normal file
@@ -0,0 +1,112 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n"
|
||||||
|
"X-Crowdin-Project: orchard-core\n"
|
||||||
|
"X-Crowdin-Project-ID: 307044\n"
|
||||||
|
"X-Crowdin-Language: cs\n"
|
||||||
|
"X-Crowdin-File: /main/Localization/OrchardCore.Admin.pot\n"
|
||||||
|
"X-Crowdin-File-ID: 694\n"
|
||||||
|
"Project-Id-Version: orchard-core\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Language-Team: Czech\n"
|
||||||
|
"Language: cs_CZ\n"
|
||||||
|
"PO-Revision-Date: 2022-06-21 08:42\n"
|
||||||
|
|
||||||
|
#. .Add(S["Configuration"], design => design
|
||||||
|
#: OrchardCore.Admin\AdminMenu.cs:26
|
||||||
|
msgctxt "OrchardCore.Admin.AdminMenu"
|
||||||
|
msgid "Configuration"
|
||||||
|
msgstr "Konfigurace"
|
||||||
|
|
||||||
|
#. .Add(S["Settings"], settings => settings
|
||||||
|
#: OrchardCore.Admin\AdminMenu.cs:27
|
||||||
|
msgctxt "OrchardCore.Admin.AdminMenu"
|
||||||
|
msgid "Settings"
|
||||||
|
msgstr "Nastavení"
|
||||||
|
|
||||||
|
#. .Add(S["Admin"], S["Admin"].PrefixPosition(), admin => admin
|
||||||
|
#. .Add(S["Admin"], S["Admin"].PrefixPosition(), admin => admin
|
||||||
|
#: OrchardCore.Admin\AdminMenu.cs:28
|
||||||
|
#: OrchardCore.Admin\AdminMenu.cs:28
|
||||||
|
msgctxt "OrchardCore.Admin.AdminMenu"
|
||||||
|
msgid "Admin"
|
||||||
|
msgstr "Administrace"
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<AdminSettings, DeploymentStartup>(S => S["Admin settings"], S => S["Exports the admin settings."]);
|
||||||
|
#: OrchardCore.Admin\Startup.cs:92
|
||||||
|
msgctxt "OrchardCore.Admin.DeploymentStartup"
|
||||||
|
msgid "Admin settings"
|
||||||
|
msgstr "Nastavení správce"
|
||||||
|
|
||||||
|
#. services.AddSiteSettingsPropertyDeploymentStep<AdminSettings, DeploymentStartup>(S => S["Admin settings"], S => S["Exports the admin settings."]);
|
||||||
|
#: OrchardCore.Admin\Startup.cs:92
|
||||||
|
msgctxt "OrchardCore.Admin.DeploymentStartup"
|
||||||
|
msgid "Exports the admin settings."
|
||||||
|
msgstr "Exportuje nastavení správce."
|
||||||
|
|
||||||
|
#. <h4>@T["Welcome to Orchard Core"]</h4>
|
||||||
|
#: OrchardCore.Admin\Views\AdminDashboard.cshtml:2
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminDashboard"
|
||||||
|
msgid "Welcome to Orchard Core"
|
||||||
|
msgstr "Vítejte v Orchard Core"
|
||||||
|
|
||||||
|
#. <p>@T["Feel free to browse the menu and discover all its possibilities."]</p>
|
||||||
|
#: OrchardCore.Admin\Views\AdminDashboard.cshtml:3
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminDashboard"
|
||||||
|
msgid "Feel free to browse the menu and discover all its possibilities."
|
||||||
|
msgstr "Prohlédněte si menu a objevte všechny možnosti."
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayDarkMode" class="form-check-label">@T["Enable dark mode admin theme"]</label>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:6
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Enable dark mode admin theme"
|
||||||
|
msgstr "Povolit tmavý režim administrace"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Whether a dark mode admin theme can be displayed."]</span>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:8
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Whether a dark mode admin theme can be displayed."
|
||||||
|
msgstr "Zvolte, zda lze zobrazit tmavý režim administrace."
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayMenuFilter" class="form-check-label">@T["Enable Admin Menu filter"]</label>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:14
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Enable Admin Menu filter"
|
||||||
|
msgstr "Zobrazit vyhledávání v menu administrace"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Whether a quick search to filter the admin menu is displayed."]</span>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:16
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Whether a quick search to filter the admin menu is displayed."
|
||||||
|
msgstr "Zvolte, zda chcete zobrazit rychlé hledání v menu administrace."
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayNewMenu" class="form-check-label">@T["Display New menu"]</label>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:22
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Display New menu"
|
||||||
|
msgstr "Zobrazit nabídku Nový"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Whether a New menu is displayed in the admin menu."]</span>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:24
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Whether a New menu is displayed in the admin menu."
|
||||||
|
msgstr "Zda se v menu administrace má zobrazit nabídka Nový."
|
||||||
|
|
||||||
|
#. <label asp-for="DisplayTitlesInTopbar" class="form-check-label">@T["Display titles in top bar"]</label>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:30
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Display titles in top bar"
|
||||||
|
msgstr "Zobrazit názvy v horní liště"
|
||||||
|
|
||||||
|
#. <span class="hint">@T["Whether the titles are displayed in the top bar."]</span>
|
||||||
|
#: OrchardCore.Admin\Views\AdminSettings.Edit.cshtml:32
|
||||||
|
msgctxt "OrchardCore.Admin.Views.AdminSettings.Edit"
|
||||||
|
msgid "Whether the titles are displayed in the top bar."
|
||||||
|
msgstr "Zda jsou názvy zobrazeny v horním panelu."
|
||||||
|
|
||||||
|
#. <span class="icon"><i class="fa fa-tachometer" aria-hidden="true"></i></span><span class="title">@T["Admin"]</span>
|
||||||
|
#: OrchardCore.Admin\Views\NavigationItemText-admin.Id.cshtml:1
|
||||||
|
msgctxt "OrchardCore.Admin.Views.NavigationItemText-admin.Id"
|
||||||
|
msgid "Admin"
|
||||||
|
msgstr "Administrace"
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user